最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

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

matteradmin16PV0评论

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?

Post a comment

comment list (0)

  1. No comments so far