Forum Discussion
Srisakthi
1 year agoSuper User
Best practice for loading data into snowflake
Hello Everyone, Can you please suggest best practice for loading data from SQL/Oracle to snowflake using Microsoft Fabric data pipeline. Case 1 : Multiple tables at a time with huge volume of da...
- Anonymous1 year ago
Hi Srisakthi
Thank you for reaching out Microsoft Fabric Community Forum.- For high-volume data loads : We should focus on parallel loading using bulk loading techniques (COPY INTO), leveraging larger compute warehouses for performance, and batch processing to minimize compute and storage costs.
- For low-volume data loads : we aim to reduce compute overhead with smaller virtual warehouses, sequential loads, and incremental loading (Streams and Tasks). Also, consider using Snowpipe for real-time or near-real-time data loading to optimize cost and compute resource usage.
If this solution helps, please consider giving us Kudos and accepting it as the solution so that it may assist other members in the community.
Thank you.
Ray_Minds
1 year agoSolution Supplier
Hi Srisakthi
1. Firstly a). you will create a config table where we will mention the start and end range of date that choose either full and incremental load based on your datasets.
b). The data format should be parquet with snappy compression that helps to optimized the data performance. data should be save into small chunk files.
c). If you are quite better in pyspark, so it would be better otherwise you will do it with the help of the copy activities in the pipleines
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.