tobi / api-proxy

HTTP Remote call accelerator proxy for Shopify

This URL has Read+Write access

tobi (author)
Sun May 24 14:51:49 -0700 2009
commit  661617ba70ecf0414f9f6de79318a1fdfcff234d
tree    5c2655f88dd8a000d3de981648d16a83f4f5c321
parent  4e4ad9e0859783cbd052887d25f2e130d46e5f06
name age message
file README.rdoc Loading commit data...
file Rakefile
file api_proxy.rb
directory lib/
directory logs/
directory test/
directory testserver/
README.rdoc

API Proxy

Proxy server that’s supposed to be accelerate remote calls in Shopify.

Inspired by Ilya Grigorik’s inspired piece of work on EM based proxies:

  http://www.igvita.com/2009/04/20/ruby-proxies-for-scale-and-monitoring/

Overview

Shopify forwards web requests to many remote locations for API apps. Api apps roughly work like facebook applications in the sense that the web requests arrives at Shopify’s door but then needs to be forwarded to an arbitrary proxy endpoint.

If we would do these remote calls within the rails code we would quickly run out of mongrels even if one of the backend services would be slow.

This proxy server will check memcached for the endpoint URL and - if present - perform the HTTP request. After the http request is successfully completed it will stick the result into memcached and set two headers X-Proxy-Status and X-Proxy-Content before sending the request Shopify for further processing (liquid).

Licence

This code is protected by the fact that it solves a proprietary problem. I hope it can serve as an example for people solving similar issues and I hope it will further the excellent discussion that Ilya kicked off.