<div dir="ltr"><div>Hi Ali/all,</div><div><br></div>Possibly the worst one that obviously happened to a friend-of-a-friend... Having a task A that has a path that can create a task B which has a path that when the moons align can create a task A. Logical infinite loops within your async queues are fun!<div><br></div><div>We do a lot of background processing at Cronofy and for the problems you've mentioned we've often used Redis to avoid (or resolve) the problems async processing introduces. This is particularly easy if you're using Resque or Sidekiq as you'll already have an instance available.</div><div><br></div><div>The top technique we use is setting a "touch" value against a key that identifies the task, often with an expiry of a few hours or so, and then checking that when executing the task (and maybe at the cron job if there is one to avoid needless queuing). That then means you can only run that task once within that relevant window and the expiry means the flag only stays around for the relevant period of time before being cleaned up by Redis so your database size doesn't continually grow. Some tasks you don't care, but some like sending emails or SMS you really do!</div><div><br></div><div>Sometimes you need to also use a <a href="http://redis.io/topics/distlock">distributed lock</a> if the same task can be queued multiple times within your system at the same time but that's overkill in many situations.</div><div><br></div><div>Hope that's useful.</div><div><br></div><div>Cheers,</div><div>Garry</div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><b>Garry Shutler</b><div><div><a href="http://twitter.com/gshutler" target="_blank">@gshutler</a></div><a href="http://gshutler.com/" target="_blank">gshutler.com</a></div></div></div></div>
<br><div class="gmail_quote">On 16 March 2015 at 09:12, Najaf Ali <span dir="ltr"><<a href="mailto:ali@happybearsoftware.com" target="_blank">ali@happybearsoftware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>I'm trying to identify some general good practices (based on real-life problems) when it comes to working with async job queues (think DJ, Resque and Sidekiq).</div><div><br></div><div>So far I've been doing this by collecting stories of how they've failed catastrophically (e.g. sending thousands of spurious SMS's to your customers) and seeing if I can identify any common themes based on those.</div><div><br></div><div>Here are some examples of what I mean (anonymised to protect the innocent):</div><div><br></div><div>* Having a (e.g. hourly) cron job that checks if a job has been done and then enqueues the job if it hasn't. It knows this because the successfully completed job would leave some sort of evidence of completion in e.g. the database. If your workers go down for a day, this means the same job would be enqueued over and over again superfluously.</div><div><br></div><div>* Sending multiple emails (hundreds) in a single job lead to a problem where if just one of those emails (say the 24th) fails to be delivered, the entire job fails and emails 1-23 get sent again when your worker retries it again and again and again.</div><div><br></div><div>* With the workers/app running the same codebase but on different virtual servers, deploying only to the application server (and not the server running the workers) resulted in the app servers queueing jobs that the workers didn't know how to process.  </div><div><br></div><div>It would be great to hear what sort of issues/incidents you've come across while using async job queues like the above. I don't think I have enough examples to make any generalisations about the "right way" to use them yet, so more interested in just things that went wrong and how you fixed them at the moment.</div><div><br></div><div>Feel free to reply off-list if you'd rather not share with everyone, I intend to put the findings together in a blog post with a few guesses as to how to avoid these sorts of problems.</div><div><br></div><div>All the best,</div><div><br></div><div>-Ali</div><span></span></div><br>_______________________________________________<br>
Chat mailing list<br>
<a href="mailto:Chat@lists.lrug.org">Chat@lists.lrug.org</a><br>
Archives: <a href="http://lists.lrug.org/pipermail/chat-lrug.org" target="_blank">http://lists.lrug.org/pipermail/chat-lrug.org</a><br>
Manage your subscription: <a href="http://lists.lrug.org/options.cgi/chat-lrug.org" target="_blank">http://lists.lrug.org/options.cgi/chat-lrug.org</a><br>
List info: <a href="http://lists.lrug.org/listinfo.cgi/chat-lrug.org" target="_blank">http://lists.lrug.org/listinfo.cgi/chat-lrug.org</a><br>
<br></blockquote></div><br></div>