sqs_accelerator

A simple and scalable event-driven server that proxies requests to Amazon's Simple Queue Service to queue messages very quickly.

24
0
Ruby

SQS Accelerator

http://github.com/pauldowman/sqs_accelerator

WARNING: this is totally experimental right now! It’s just an idea I’m playing with and I’m trying to see if it works. (But please try it out and tell me what you think!)

This is a simple and scalable event-driven server (using Event Machine) that proxies requests to Amazon’s Simple Queue Service hosted queue. It’s purpose is to queue messages very quickly, because otherwise SQS is too slow to use from within a web app (to be precise, the time it takes to queue a message is often too long).

It provides a simple RESTful interface for interacting with SQS that’s also convenient to use from a browser.

One instance of the SQS Accelerator can send messages to any number of SQS queues, the queue name is given in the URL and the AWS credentials are given in HTTP headers (as HTTP Basic Authentication headers actually so it’s convenient to use from a browser)

How it works

The SQS Accelerator accepts messages from your web app and returns a response instantly without waiting for a response from SQS. Your web app then happily continues and returns it’s response to the user. The SQS Accelerator finishes queueing the message to SQS in the background.

It runs as a daemon, if it’s accepting queued messages from a web app one instance should be run on each app server. It listens on port 9292.

FAQ

Q: Won’t lots of messages build up inside SQS Accelerator since it receives them faster than it sends them to SQS?

A: No, but you might get errors if you hit the maximum number of open connections (not sure what this limit is yet, but it should be very high with EventMachine). SQS has high latency, but it can accept a virtually unlimited number of incoming connections, so if you can hold a large number of open connections to it then your throughput can be very high. Because an evented client can hold a large number of open connections it can maintain a very high throughput.

Q: Isn’t this like queueing messages locally before queueing them in SQS?

A: No, it’s more like a proxy than a queue, the messages don’t build up inside SQS Accelerator, they are all being sent to SQS concurrently.

Q: Why not just use a local queue?

A: You could do that instead of using SQS. But SQS is simple and scalable, and it’s also simple and scalable to run an instance of SQS Accelerator on each app server.

Q: Are you sure about all this?

A: Not yet, it’s just a theory so far, my next priority is to benchmark this and make sure it really works as it should in theory.

Usage instructions

  • sudo gem install pauldowman-sqs_accelerator
  • run the executable “sqs-accelerator”
  • Hit http://localhost:9292/ in a browser
    • Make an HTTP GET request to /queues to list all queues
    • Make an HTTP POST request to /queues with queue_name=newqueue to create a queue named newqueue
    • Make an HTTP GET request to /queues/queuename to show info about a queue named “queuename” and to give a form to send a message
    • Make an HTTP POST request to /queues/queuename to send a message
    • Use your SQS credentials for HTTP auth
  • TODO improve these instructions

Thanks to the following great projects

Still to do

  • Find all the TODO comments in the code
  • Benchmarking
  • Use SSL when connecting to SQS to protect message content (AWS credentials are never sent, they’re just used to sign the message)
  • Unit tests (I’m just trying to figure out if this idea even works first)
  • Create a Ruby client library
  • Switch all actions to use evented HTTP client instead of EM.defer. Right now some actions are using EM.defer to use the RightAWS client in a thread. These actions will be less scalable. Sending messages, the most important action, is using the evented client. This means making direct HTTP requests to the SQS Query API
  • Fix bugs and make it nicer.
  • Refactor all the SQS stuff out of the actions
  • Daemonize the executable
  • A god config file?
  • Some configuration options
  • More queue management features (e.g. an action to delete a queue, all_queues should link to each queue, provide check-box to delete the queue, etc.)