Skip to content

Instantly share code, notes, and snippets.

@StevenACoffman
Last active February 7, 2024 04:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StevenACoffman/f0094a894fa6d2b313277b9f39cc56c4 to your computer and use it in GitHub Desktop.
Save StevenACoffman/f0094a894fa6d2b313277b9f39cc56c4 to your computer and use it in GitHub Desktop.

Temporal and Watermill solve different problems, or solve problems differently. From a domain perspective, Temporal workflows implement policies and as a result they provide orchestration for the entire process. Nothing stops you from implementing workflows that span through different domains (bounded contexts) though, so if the process is well defined, you can implement it in a single workflow. That gives you the advantage of being able to remediate if any of the steps fail (eg. if the payment fails, the order shouldn't be sent to shipping).

That's not always the case though. Sometimes you need to provide integration points in the system that lets actors outside of a business process to react to events which is when Watermill comes into the picture.

Ultimately, the two can be combined very easily. For example, a Temporal activity can send an event to watermill, or a watermill event can start a new workflow.

As a rule of thumb, try to define your business processes. Everything that fits into a single process should be a workflow. Everything else can be watermill events. This is an interesting topic that's worth exploring, these are just some random thoughts.

I'd also love to hear what @Robert Laszczak thinks. He has extensive knowledge in the DDD field (just read his posts). https://threedots.tech/post/ddd-lite-in-go-introduction/

czeslavo prepared a pretty nice example of Process Manager implementation with Watermill here: https://github.com/czeslavo/process-manager. It's not Saga, but it's pretty similar and with some additions, you may implement saga in a pretty simple way.

Anyway, it would be good to have some tooling in Watermill to support it more out-of-the-box - and this is the long term plan ;-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment