Unable to configure clustering on DLT tables
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2025 12:03 PM - edited 10-10-2025 12:04 PM
Hi Team
I have a DLT pipeline with `cluster_by` property configured for all my tables. The code looks something like below:
@Dlt.table( name="flows", cluster_by=["from"] ) def flows(): <LOGIC>
It was all working fine and in couple of days, the queries were taking forever and when I checked my dlt tables. I couldn't find any cluster properties configured. I tried setting 'cluster_by_auto=True' and it was properly configured but the cluster columns are not taken into consideration.
Is this some bug with the latest release or is there a way to solve this?
Thanks in advance