|
|
|
|
|
by chimera77
2081 days ago
|
|
There are a couple of options without needing guaranteed ordering: - jobs can have ever increasing ids, workers record the last seen id in one place, and ignore jobs with ids less than last seen - job results are returned for each job to a supervisor. if a job result doesn't match current expected state, resend job. jobs should be idempotent in case a job is sent multiple times If the create job is expensive, the latter solution would be less ideal, though. |
|
Much easier to just have strict order and process it off the line as it comes.