Is there a standard idiom for triggering a flow fr...
# prefect-server
r
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
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
thanks Kevin I’ll have a look