Snowflake: Data loading file size recommendations

Viewed 272
1 Answers

It's a consideration between aggregating smaller files (thus reducing overhead) and splitting larger files into smaller ones (thus distributing the workload and increasing parallelism).

The general size recommendatation to meet the above consideration is 100-250MB. That is what's in the docs. The term "or larger" just means, your best file size in your individual scenario can also be above 250MB, e.g. 300MB, depending on your consideration-results.

Related