admin管理员组

文章数量:1122832

I want to trigger an Azure DevOps (ADO) pipeline based off of the timestamp of data in Snowflake.

If there is new data, trigger ADO pipeline, else keep monitoring until 12pm and if there is still no new data then trigger the pipeline anyways.

I have a list of dependencies (Snowflake tables) which I want to monitor. When the updated date = today, i.e. there is new data, the condition to trigger the ADO pipeline is met.

So, how can I trigger my pipeline based off of the timestamp in dependant tables and if no new data is present by 12pm, how can I trigger my build to run anyways?

I want to trigger an Azure DevOps (ADO) pipeline based off of the timestamp of data in Snowflake.

If there is new data, trigger ADO pipeline, else keep monitoring until 12pm and if there is still no new data then trigger the pipeline anyways.

I have a list of dependencies (Snowflake tables) which I want to monitor. When the updated date = today, i.e. there is new data, the condition to trigger the ADO pipeline is met.

So, how can I trigger my pipeline based off of the timestamp in dependant tables and if no new data is present by 12pm, how can I trigger my build to run anyways?

Share Improve this question asked Nov 22, 2024 at 21:17 BShardzBShardz 33 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

I want to trigger an Azure DevOps (ADO) pipeline based off of the timestamp of data in Snowflake.

Azure DevOps pipeline can be used for CI-CD and can also be triggered by external services. However, the triggering behavior should be issued by the external service. Snowflake should provide features for monitoring data and sending "events" to the outside service. However, based on my knowledge, Snowflake currently has no such feature.

Based on the current situation, I would suggest you create a function app to periodically check your Snowflake and trigger Azure DevOps pipeline using REST API.

本文标签: Azure DevOps Snowflake AutomationStack Overflow