The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I'm trying to understand the below scenario in terms on optimization, time complexity or costing wise -
Creating shortcut TABLE for Delta table
Creating shortcut TABLEfor Partitioned Delta table
Note: I'm planning to convert parquert table to delta table and another use case is for partitioned parqet table to paritioned delta table
Solved! Go to Solution.
Hello @akkibuddy7
Creating a shortcut to a Delta table allows you to reference the table without duplicating data. This approach is efficient for non-partitioned Delta tables but comes with certain considerations:
Partitioning a Delta table involves organizing data into subsets based on one or more columns (e.g., date or region). Creating a shortcut for a partitioned Delta table has distinct advantages and trade-offs:
Aspect | Non-Partitioned Delta Table | Partitioned Delta Table |
Query Performance | General-purpose; slower for large datasets | Optimized for filtered queries on partition keys |
Write Performance | Simpler; no partition overhead | Slower due to partition management |
Maintenance | Requires compaction for small files | Requires both compaction and partition management |
Cost Efficiency | Lower maintenance cost; higher query cost for large datasets | Higher storage cost; lower query cost when optimized |
Best Use Case | Small/medium datasets or no filtering needs | Large datasets with frequent filtering on partition keys |
Please accept the answer if this is helpful
Helloi @akkibuddy7,
Thanks for reaching out to the Microsoft Fabric Community forum.
Thank you, Nilendra, for your prompt response to the query.
I wanted to check if you had the opportunity to review the information provided by @nilendraFabric. Please feel free to reachout to us if you have any further questions.
If the response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Regards,
Sahasra.
Hello @akkibuddy7
Creating a shortcut to a Delta table allows you to reference the table without duplicating data. This approach is efficient for non-partitioned Delta tables but comes with certain considerations:
Partitioning a Delta table involves organizing data into subsets based on one or more columns (e.g., date or region). Creating a shortcut for a partitioned Delta table has distinct advantages and trade-offs:
Aspect | Non-Partitioned Delta Table | Partitioned Delta Table |
Query Performance | General-purpose; slower for large datasets | Optimized for filtered queries on partition keys |
Write Performance | Simpler; no partition overhead | Slower due to partition management |
Maintenance | Requires compaction for small files | Requires both compaction and partition management |
Cost Efficiency | Lower maintenance cost; higher query cost for large datasets | Higher storage cost; lower query cost when optimized |
Best Use Case | Small/medium datasets or no filtering needs | Large datasets with frequent filtering on partition keys |
Please accept the answer if this is helpful
Can we create Shortcut table based on Paritioned Delta tables from s3?
Yes, you can create a shortcut table in Microsoft Fabric from partitioned Delta tables stored in an Amazon S3 bucket..the data in your S3 bucket must be in Delta format.
User | Count |
---|---|
6 | |
2 | |
2 | |
2 | |
2 |
User | Count |
---|---|
19 | |
18 | |
6 | |
5 | |
4 |