Hi everyone!
I’m a junior Flow TD forming myself on my own.
I’m thinking about implementing automations on my projects, with a event triggering a change of status or filling directly a field for example.
I’ve done some research and I found the SIGGRAPH Developer Day 2019: Advanced Shotgun Development video from the team exploring both the daemon and the webhooks as an event manager interface.
However, I struggle a bit to understand the pros and cons of each one depending on the configuration needed by a studio or a specific project.
Could someone please explain me the main differences they implement in the production pipeline so I can chose the better option depending on the needs ?
Thank you and have a beautiful day ! 
1 Like
Hi, glad to see TDs with a desire to learn 
The main disadvantage of webhooks imo is that they have to be hosted on a public endpoint, which brings with itself a bunch of issues like security, tls certificates, etc.
For an on-prem studio, the daemon is easier to deploy. It tends to be less stable, though.
Web hooks are a “nicer” interface, more clearly separated.
That said, there is pretty much no functional difference. Just a matter of setup and convenience.
By the way feel free to PM me with other questions.
There is a functional difference as well, missed webhooks events (due to your endpoint being down for example) cannot be “replayed”.
The event daemon can be set to “replay” from an event log id.
Hence you can do maintenance on your Event Daemon host and then restart it to continue where it left off.
The event dameon scans the event log stream for new event logs.
The Webhooks are fired off in real time (just as events) but if your service doesn’t catch them then they are missed.
1 Like