admin管理员组文章数量:1026989
I’m working in Azure Synapse (similar to Azure Data Factory) and have numerous ScheduleTrigger. We often experience property changes—for example, if someone updates the schedule frequency, start times, or modifies pipeline parameters.
This problem stems from poor peer reviews during deployment but as of now i can't do anything about rather than do this.
Current Idea: Using etag Each trigger in the REST API (/triggers?api-version=2020-12-01) has an etag property. When the etag changes, we know something changed in the trigger definition. We can store the old vs. new state and compare them to see what changed. But this approach still requires:
Calling the API periodically via a pipeline or script. Comparing the new etag to the last known etag. Doing a JSON diff on the old/new “properties” to see the exact changes.
Is there a more direct/built-in way to track or subscribe to changes in triggers without having to do manual comparisons?
I’m working in Azure Synapse (similar to Azure Data Factory) and have numerous ScheduleTrigger. We often experience property changes—for example, if someone updates the schedule frequency, start times, or modifies pipeline parameters.
This problem stems from poor peer reviews during deployment but as of now i can't do anything about rather than do this.
Current Idea: Using etag Each trigger in the REST API (/triggers?api-version=2020-12-01) has an etag property. When the etag changes, we know something changed in the trigger definition. We can store the old vs. new state and compare them to see what changed. But this approach still requires:
Calling the API periodically via a pipeline or script. Comparing the new etag to the last known etag. Doing a JSON diff on the old/new “properties” to see the exact changes.
Is there a more direct/built-in way to track or subscribe to changes in triggers without having to do manual comparisons?
本文标签:
版权声明:本文标题:How can I monitor changes to Azure SynapseADF triggers (property modifications, schedules, etc.)? - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1738200109a1554129.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论