top | item 8030777

Polyglot is a distributed web framework for multiple programming languages

135 points| sausheong | 11 years ago |github.com | reply

54 comments

order
[+] Xorlev|11 years ago|reply
"Messsage queue - a queue that receives the messages that represent the HTTP request. the acceptor accepts HTTP requests and converts the requests into messages that goes into the message queue. The messages then gets picked up by the next component, the responder. The implementation of the message queue is a RabbitMQ server."

Alrighty then. Someone has never scaled RabbitMQ vs. a basic HTTP service. If raw scalability is what you're looking for w/ a polyglot backend, an edge service that accepts HTTP and turns those requests into Thrift structs (or similar) to RPC to various polyglot services might be better for you. This is the model most use.

However, I'm unsure how this'll be more 'performant' than picking the right technology from the start and architecting wisely. Generally, the more performant you want something to be the simpler you build it and only compromise where necessary. Thrift/RabbitMQ are definitely complexity compromises.

Complexity is the bane of scalability.

Additionally, if you needed pure scalability, you generally have purpose-built services for each "responder" which is load balanced over. Pretty similar to this, minus the message queue.

I imagine having a message queue in the middle of your HTTP response path could lead to some nasty latency spikes too. Much better to drop a request with a 503 than have the next N spin for minutes while workers chug through it. Especially if you're taking in 10K req/s.

Last thought: The benchmarks are lacking detail, could use a more thorough job.

[+] sausheong|11 years ago|reply
Thanks for the comments. The detailed benchmark data is in the perf/ directory, I just did some basic analysis.
[+] kcorbitt|11 years ago|reply
Switching from a monolithic framework like Rails to a number of independent communicating services that handle different responsibilities is a classic step in scaling. However, to the best of my knowledge that transition usually involves moving to a mostly-custom setup dependent on the app's specific needs.

It's not clear exactly what functionality Polyglot provides beyond, say, raw RabbitMQ, but if it can find a way to encode best practices in a service-oriented architecture it could be a handy tool for developers going through this process for the first time.

[+] sausheong|11 years ago|reply
Polyglot as it is at the moment is an experiment, a prototype. Still fleshing things out, so feedback and contribution is always welcome :)
[+] buro9|11 years ago|reply
I had to stop and check where this guy works. 2 companies I know of have just moved to something fairly similar.

A request is turned into a JSON message pumped into a queue with a signature declaring the type of message it contains, service discovery reads from the queue and allocates a service to handle it, shuffling it onto another queue (and if necessary spinning up the service). The service picks up the queued item, processes it and hands it back where the new message may be the response (in which case it gets handed back) or another service call (in which case discover the handler and assign it to a queue).

It's SOA based on messaging and a basic pipeline. Except they don't call it that.

Thankfully the applications in question do not have low response time as a core criteria.

[+] seguer|11 years ago|reply
If the goal is the ability to have certain routes processable by different languages/systems you could achieve this with reverse proxying (from eg. nginx) [1].

That way you can leverage any existing language frameworks and run them as standard HTTP responders. No need to work with a queue (and add it to the stack).

You can still limit the HTTP methods each proxy responds to as well [2].

[1]: http://nginx.com/resources/admin-guide/reverse-proxy/

[2]: http://stackoverflow.com/questions/8591600/nginx-proxy-pass-...

[+] sausheong|11 years ago|reply
Thanks for the suggestion, it's a good one. A few cases a message queue can be advantageous -- (1) persistence (2) a few responders can work on the same request in parallel (3) adding/removing responders dynamically according to the load.

These are not common/generic use cases but would be useful under particular circumstances.

* I could be wrong with (3) -- I'm not very experienced in reverse proxies.

[+] CMCDragonkai|11 years ago|reply
The main problem with that, is that reverse proxying is push based, message queues are pull based.
[+] floatboth|11 years ago|reply
So, it's like mongrel2, but a bit worse: AMQP is centralized, unlike ZeroMQ.
[+] tlrobinson|11 years ago|reply
That was my thought as well, though I never really understood the point of Mongrel2.

It's basically a reverse proxy that speaks to upstream application servers using a custom protocol over ZeroMQ instead of HTTP over TCP? Why is this better than just using HTTP?

Does anyone here use Mongrel2? Do you like it?

[+] kodablah|11 years ago|reply
AMQP/Rabbit can use TLS (even if not leveraged in this project, something not possible for ZeroMQ IIRC). Also, define "centralized". An intelligent AMQP client properly falls over to another node in a cluster, and Rabbit offers good durability guarantees while still allowing quorum and tolerating node failure.
[+] calineczka|11 years ago|reply
Exactly what I was wondering. How different from mongrel2 it is.
[+] dbpokorny|11 years ago|reply
"forcing the deliberate use of different programming languages"

...wait, what? I don't see how this solves anything. It's like asking American schoolchildren to learn English, Russian, and Chinese before doing math. Makes no sense.

[+] vdaniuk|11 years ago|reply
I'd like to share my experience. I started to learn programming by taking Coursera and other moocs in python, ruby, javascript and c. I feel that my understanding was greatly enhanced by simultaneously getting to know various language.

So this may be a nice learning exercise.

[+] datashaman|11 years ago|reply
This sounds very similar to tir / mongrel2.
[+] ilaksh|11 years ago|reply
Seems like this is pretty much what every single system does that is based on a web application that scales with a message queue.

With Polyglot are there standard SDKs for responders or acceptors?

I think we should relate this to that ocaml mirageos thing and the idea of a common knowledge representation for program generation. I think pattern with queue has a fairly close correspondence with some common OOP patterns.

We are repeating the same patterns over and over in different contexts for different applications. I think that we have semantic representations and programming languages that if we created a good common dictionary and referenced that rather than restating everything I different forms then we could get much better code reuse.

[+] mcguire|11 years ago|reply
"1. Acceptor

"2. Message queue

"3. Responder"

So, a SOA?

[+] hangonhn|11 years ago|reply
It's kind of amazing how often SOA is rediscovered by people. It's not at all exotic either. It's fairly common in enterprise applications but I guess maybe most people don't write enterprise apps?

My first thought when I read the article was "Did he just reinvent the wheel?"

It's in Go so that's kind of neat.

[+] programminggeek|11 years ago|reply
I actually built something very similar 2 years ago http://radial.retromocha.com

Mine used a node proxy instead of a message queue, but same basic idea. It makes scaling and changing languages so much easier.

Really, the trick is having a standard message protocol that everything abides by. Once you have that, building a proxy and frameworks around it is pretty trivial. I chose something similar to JSON-RPC and for what I wanted/needed it worked well.

It never saw any kind of scale, but it was a fun project.

[+] FooBarWidget|11 years ago|reply
Why does it make scaling and changing languages easier? How is using an HTTP reverse proxy/load balancer not just as easy, if not easier?
[+] sausheong|11 years ago|reply
Nice! Thanks for sharing the project.
[+] webmaven|11 years ago|reply
Acceptors / Responders feel a bit like Python's WSGI model, with the addition of a queue in the middle for connecting gateways to applications. I suspect that the similarity extends to JSGI (Javascript), SCGI, and PCGI (perl).
[+] EGreg|11 years ago|reply
What is the benefit of having this vs say a monolithic framework?
[+] pmontra|11 years ago|reply
So you can write the new functionalities in the new popular framework and keep the old one running. Why that's a better choice... well it depends on case by case.

However this is a bit like a reverse proxy that load balances many different web apps. You could have different applications written in different languages serving requests to the same url.

Furthermore I don't see anything here that load balancers haven't done since the '90s. Maybe I'm missing something but maybe that's why everybody is puzzled.

[+] GUNHED_158|11 years ago|reply
I was thinking why RabbitMQ and not ZeroMQ? just for my knowledge
[+] SolarNet|11 years ago|reply
They solve slightly different (architecture) problems and they are on completely different ends of the message queue library spectrum of "usability vs. customizability".

RabbitMQ is a "batteries included" solution. ZeroMQ is a roll your own sort of library. If you just want a message queue use RabbitMQ. If you want to build your own message queue system (with complex or specific requirements) use ZeroMQ.

[+] sausheong|11 years ago|reply
RabbitMQ was easier for me to develop a prototype to test out the idea.
[+] mmgutz|11 years ago|reply
vert.x?
[+] cordite|11 years ago|reply
vert.x is limited to only languages with supported implementations and hooks in the JVM world.
[+] CmonDev|11 years ago|reply
Based on examples, it seems to be meant for dynamic scripting languages, rather than programming languages?
[+] sausheong|11 years ago|reply
Not really. I started with Ruby, Python and PHP but it's very much possible with compiled languages like C/C++. There's a whole bunch of client software that allows you communicate with RabbitMQ - https://www.rabbitmq.com/devtools.html