Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2025 07:51 AM
Hi,
Thanks for your answer. The Delta Table is not partitioned right now. Could be partitioned by the type of topic. And if I'll do the partitioning one workflow will write only to one partition, and another workflow only to another partition.
Maybe this could solved directly the problem?
The table has only those properties:
USING delta
TBLPROPERTIES (
'delta.enableChangeDataFeed' = 'true',
'delta.enableDeletionVectors' = 'true',
'delta.feature.appendOnly' = 'supported',
'delta.feature.changeDataFeed' = 'supported',
'delta.feature.deletionVectors' = 'supported',
'delta.feature.invariants' = 'supported',
'delta.minReaderVersion' = '3',
'delta.minWriterVersion' = '7',
'description' = 'Inference result for a given UP')
One workflow is working with UPSERT operations, instead the other workflow only with APPEND mode directly to that table.