atomic distributed transaction
I have a nextjs action function which does 4 different tasks, 3 of them are making an api call and 1 is updating the database using prisma. I want to create these 4 tasks as an atomic task. I came across SAGA patterns. Distributed workflow orchistrators like okres. I wanted help on how do i implement it. + also i want to make the nextjs action for these task to be asynchronous with nextjs using RabbitMQ.

0 Replies