https://prefect.io logo
Title
r

Ryan Sattler

08/16/2021, 6:07 AM
Is there a standard idiom for triggering a flow from something like a message arriving on a Kafka queue? I guess this could be done by polling with a high-frequency cron-scheduled flow but I wonder if there’s something more elegant.
definitely something that would be helpful if implemented
k

Kevin Kho

08/16/2021, 6:38 AM
Basically event flow runs are done in Prefect by hitting the GraphQL API. Example here . You can use any language to send the request (you can even cURL it)
r

Ryan Sattler

08/16/2021, 6:40 AM
thanks Kevin I’ll have a look