Skip to content

Instantly share code, notes, and snippets.

Created October 10, 2012 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save anonymous/3868185 to your computer and use it in GitHub Desktop.
Save anonymous/3868185 to your computer and use it in GitHub Desktop.
Queue Anti-patterns (an argument in DMs)
I can make a case that queues only do what people want if you don’t consider failure cases.
Qs are empty (normal) or full (fail). Normally things are processed quickly. Failure case processing time is unbounded (or “too long”).
Solution is always “dump the Q”. Which means you do care about how long it takes to process items. So you want the queue to always be empty
Which means you only want a non-failing Q.
So why not admit it, use in-proc buffers, run enough servers to handle load? Reject work up front instead of dropping oldest items w/…
“flush the queues!”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment