最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How can I monitor changes to Azure SynapseADF triggers (property modifications, schedules, etc.)? - Stack Overflow

programmeradmin9浏览0评论

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?

发布评论

评论列表(0)

  1. 暂无评论