Skip to content

Fix: allow operational metadata to be disabled on MV's and update docs#21

Open
rederik76 wants to merge 4 commits intomainfrom
fix/disable-operational-metadata
Open

Fix: allow operational metadata to be disabled on MV's and update docs#21
rederik76 wants to merge 4 commits intomainfrom
fix/disable-operational-metadata

Conversation

@rederik76
Copy link
Collaborator

Updated docs for operational metadata and added fix to properly handling the disabling of operational metadata for MV's by either of the following methods:

Disabling the feature at Spec Level:
{
"dataFlowId": "feature_materialized_views",
"dataFlowGroup": "feature_samples",
"dataFlowType": "materialized_view",
"features": {
"operationalMetadataEnabled": false
}
}

Disable at MV level using the configFlags setting:
"targetDetails": {
"table": "customer_address",
"tableProperties": {
"delta.autoOptimize.optimizeWrite": "true",
"delta.autoOptimize.autoCompact": "true"
},
"partitionColumns": ["country_code"],
"schemaPath": "schemas/customer_address.json",
"configFlags": ["disableOperationalMetadata"]
},

@rederik76 rederik76 self-assigned this Feb 24, 2026
@rederik76 rederik76 linked an issue Feb 24, 2026 that may be closed by this pull request
1 task
@rederik76 rederik76 requested a review from haillew February 24, 2026 06:04

Disabling Operational Metadata in a Dataflow Spec
-------------------------------------------------
You can disable operational metadata for a dataflow spec or for a target table.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just to make it super clear would it be better to update this to "You can disable operational metadata at a dataflow spec level or for specific target tables" or something like that to make it clear it's two different scopes not two separate items

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[BUG]: Disabling Operational Metadata for MV's does not work

2 participants