skip to Main Content

I’ve created two services.

One of them (scheduler) only requests to the other (backoffice) for performing some “large” operations.

When backoffice receives a request:

  1. first creates a mark (key on redis) in order to set that the process has started.

Each time a request is reached:

  1. backoffice checks if the mark exist.
    • When it exists means that the previous process has not yet finished, and escape it.
    • Perform the large process.
    • When process is finished, the previous key in redis is removed.

It would be something like this:

if (key exists)
  return;

make long process... (1);

remove key;

The problem arises when service is destroyed when the process has not already finished and then it doesn’t removes the mark on redis. It means the process will never run again.

Is there any way to solve this kind of problems?

3

Answers


  1. The way to solve this problem is use an existing engine as building custom scalable and robust solution for reliable service orchestration is really hard.

    I recommend looking at Uber Cadence Workflow which would allow to convert your pseudocode into a real production application with minor changes.

    Login or Signup to reply.
  2. You can fire a background job that updates timestamp under the key, e.g. every minute.

    When service attempts to start the process it must verify key existence (as it does now) + timestamp under the key. If it is more than 1 minute ago then the previous attempt is stale and you can start over.

    Login or Signup to reply.
  3. Sounds like you should be using a messaging queue to schedule tasks for the back office service. Queuing solutions like RabbitMQ allow you to manually acknowledge (or “ack”) that the process is complete. Whenever a subscriber crashes, the queue detects that the connection dropped without acknowledgement and will re-enqueue the same task which will be picked up by the next available subscriber. Here’s another thread talking about this problem specifically focused on messaging queues:

    What happens to fetched messages when RabbitMQ consumer crashes?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search