20 May 2013

The Ruby Reflector

Topic

Kestrel

  Source Favicon
On Scout ~ The Blog 9 months ago.
Email

With Kestrel, messages are pulled from a named queue, which can make it easier for a developer to think about problems in a way that can give them more flexability (including fairly easily changing the language/platform the work is being performed on).

Many of the benefits that you see with Kestrel often won't be evident until a high volume of work is being performed by the system.

Lets say I have a Ruby application. How hairy is Kestrel if you don't have Java experience? …

scoutapp.com Read
  Source Favicon
Email

One more deploy and we were queueing all track requests in Kestrel and popping them off in the track processors after which, the reports were updated in the primary database. This meant our track request now performed a single Kestrel set, instead of several queries and updates. As you would expect, response times dropped like a rock.

It is pretty obvious when Kestrel was rolled out as the graph went perfectly flat and dropped to ~4ms response times. BOOM .

You might say, yeah, your track …

railstips.org Read
  Source Favicon
By 0x4a6f4672 of 4 Lines of Code 3 years ago.
Email

beanstalkd), Ruby ( Starling or Sparrow), Scala ( Kestrel) or Java ( ActiveMQ). A short overview can be found here

Sparrow

- written by Alex MacCaw

- Sparrow is a lightweight queue written in Ruby that "speaks memcache"

Starling

- written by Blaine Cook at Twitter

- Starling is a Message Queue Server based on MemCached

- written in Ruby

- stores jobs in memory (message queue)

- Ruby client: for instance Workling

- documentation: …

4loc.wordpress.com Read
  Source Favicon
By Justin Leitgeb of Justin Leitgeb over 3 years ago.
Email

…could accept data from different inputs without much trouble later. To meet these needs, I used a Kestrel queue to serialize HTTP retrievals from various providers.

Once I had the necessary data in place, Sphinx was an obvious choice to bring these data in front of the user on demand.

For those of you who have used the fulltext searching engine in Sphinx, it's easy to envision how restaurant searching based on name or "tag" (such as type of food) would work. A lesser …

justinleitgeb.com Read