J Josue Gatica Odato

Latest Updates

Documenting code, one commit at a time.

Building a Resilient Task Distribution System with Manager-Worker Pattern

In the LucasLatessa/SDyPP-G3 project, we recently tackled the challenge of efficiently distributing and processing a continuous stream of tasks. This led us to implement a robust Manager-Worker pattern, leveraging a message broker to ensure reliability and scalability.

The Challenge of Distributed Tasks

Handling tasks that require asynchronous processing can be complex. Directly invoking functions or running processes in a tightly coupled manner often leads to bottlenecks, reduced fault

Read more