Very good one and I love how and what you sharing. THANKS ALOT. but I've one question thou, is Temporal opensource or free to use?
@twheeler8 күн бұрын
Temporal is open source. You can use it without restriction, at any scale you want, for free. There is a cloud service (Temporal Cloud), which eliminates the need to self-host, but the choice is up to you. And that choice will remain yours, since you can migrate from self-hosted to Temporal Cloud (or vice versa) if your needs later change.
@moograms8 күн бұрын
Nice, clear explanation. Curious why you needed RabbitMQ rather than just creating a workflow directly and relying on Temporal's built-in queues?
@CecilPhillip-l9e8 күн бұрын
Relying directly on Temporal's queuing mechanisms would have been a fine as well. Having Rabbitmq in the middle could be useful if the message needed to be broadcast to other consumers or if you're temporal instance was behind a network boundary But you're thoughts are correct. RabbitMQ is not necessarily needed in the above demo