DEV Community

Federico Sörenson
Federico Sörenson

Posted on

AMQP vs HTTP

This post was written for www.liveanddev.de blog

Introduction

When I thought about writing about "AMQP vs HTTP" I thought on writing differences between both protocols, describe every single header and why it is there, how it is the flow of each message/package your are sending in each protocol, etc, etc, etc... But then I realized that all that grey information is out there, anyone that wants to read about the protocol itself can just "google it" and have plenty information about each protocol. If you were looking for that information here, just “let me google that for you”: AMQP, HTTP. If you were looking for a real use case and a discussion about when to use each protocol and why, then you are in the right place.

Case of discussion

Some time ago, when we started the descentralization of the huge monolith we needed a way to synchronize data between the core and the regions. Core is the name we give to the place where the central database and the e-commerce part are, and the regions are parts of the world where we set our components (Europe, America, Asia...). The publish-subscribe pattern was fitting perfectly in our project because all data that had to be synchronized was always in one direction. Also, the pattern allows you to turn it around and make the subscriber the publisher of new information and have the possibility of a bi-directional synchronization in the case of future needs.

Back then we faced the fact that we had to build a world wide publish-subscribe pattern, where the core had to be talking with services that we may not know if they are up and running and, the most important thing to do was to be reliable due to the high amount of traffic that we expected (not only core to region traffic but also traffic that is generated in the region, too). We needed to have a certain queuing mechanism that would hold the communications in case that the receivers are too busy to respond, but, at the same time, we did not want to block the producer neither (by retrying requests again and again). We could not lose any communication, and with that, any synchronization of data at all. In that moment, the idea of using messaging queues came into our minds. Messaging queues allow you to have a middleware that will persist all communications and, depending on how you build them, you can add the reliability that you may need, forcing the acknowledge of each package and using a chain of trust in the communication.

So there we were, knowing what to do, but not how. Of course each of us had a great idea! You can always build a very basic “write somewhere the communications that were not acked and try again later until it works”, we even tried to use Redis as a messaging queue (and it works good, but it is not reliable). Then, among others, we found RabbitMQ and the AMQP protocol. Before this, I have to say that most of the team did not know this technology at all. We had no experience whatsoever with messaging queues, so we had to learn a lot. We went through a try-error phase until we tamed this technology into our will, and the rest is history. For internal communications that have to be made in an asynchronous way we use RabbitMQ. We have a broker per region plus one in the core and we use shoveling for the transferring messages between core and regions.

Discussion

But still, after all the experiences that we have accumulated in almost an entire year using this technology in production with great and undoubtedly performance, and having the RabbitMQ brokers as a core of our communications between components, “AMQP vs HTTP is a daily (maybe weekly) discussion in our office. People sometimes even get angry at each other because of this topic and we have long pointless discussions about why better to use RabbitMQ and AMQP or better not. There are four kind of opinions (that at least I found/heard) about this topic (internalasynchronous communication between components):

  1. I prefer to use HTTP.
  2. I prefer to use AMQP.
  3. I do not have a preference on them, I just use them where they are already in use.
  4. I don't care why using one or another protocol, I just want to synchronize data.

The kind of opinions 3 and 4 I am going to let them for the commenting part of this article (we can discuss it if you want, but it would be a drift from the main subject), so I will focus the rest of the article on the other two kind of opinions.

And now is when the tricky part of this article comes for me, because “prefer is probably the wrong word. Should we (as developers) have “opinions on technical matters? Or should we better analyse the facts and use what is convinient in each case? Our profession is not about instincts but more about facts (even though instincts are important too!). So lets go to facts:

  1. Both protocols will allow you to have communication between components.
  2. Both protocols are traceable.
  3. Both protocols are well documented
  4. AMQP is asynchronous.
  5. HTTP is synchronous.
  6. HTTP is easy to debug.
  7. People are familiar with HTTP.
  8. HTTP is well mapped to an interface.
  9. AMQP is easy to maintain and easy to scale.
  10. AMQP has guaranteed message delivery.
  11. With HTTP you need to have some kind of service discovery.
  12. AMQP needs to know the broker to reach the queue to read/write.
  13. RabbitMQ provides fanout mechanisms, shoveling and federation of queues (“out of the box”).
  14. If RabbitMQ is restarted while processing a message and it's not done yet, it will requeue automatically and other backend service will pick it up and process it.
  15. HTTP is supported in almost every programming language.
  16. RabbitMQ (and therefore, AMQP) is supported in several programming languages (JAVA, .NET, RUBY, Python, PHP, Objective-C, Scala, Groovy and Grails, Clojure, Jruby, Javascript, C, C++, GO, Erlang, Haskell, OCaml, Unity 3D, Perl, Common Lisp, COBOL).
  17. ...

The list of facts can grow for at least a couple of pages, but I think that there are enough key facts to be able to choose one or the other one depending on your situation.

Facts pro-HTTP

· Debugging an HTTP request is really easy and repeatable, whereas an AMQP message is harder to debug (you need connection to the queue, libraries, maybe scripting, etc...).
· HTTP is a familiar technology for the developers, so there is no need to have extra training for a new developer in the project.
· HTTP is the most supported protocol in internet, so sharing your APIs as HTTP API is a good practice.

Facts pro-AMQP

· Delivering messages with AMQP gives you reliability and being asynchronous allows you to not worry about the delivery at all.
· Knowing the host/IP of the cluster of AMQP brokers is enough to deliver/receive messages, whereas with HTTP you may have different hosts and IP depending on regions.
· You can use fanouts, meaning that one message will be enough to inform several different components, reducing the amount of communications.

Considerations when using AMQP

For delivering and receiving AMQP messages you need a broker. A broker is no more than a server that receive, store and deliver messages. Depending on your costs and infrastructure, this fact may add extra complexity to your project, having to configure and maintain one/several/federation/... of brokers.

In our case we externalized this part using CloudAMQP. This made us not having to worry about maintenance but added an extra cost to the final solution.

Pre-Conclusion

I would say that, if you want to talk with the world (provide an API for third party usage), HTTP is giving all you need. It is supported, well known and widely used. Also, you “do not have to care if there is a problem in the communications, because it is the duty of the client of your API to execute the request again if something went wrong.

If you want to have internal communication, where you control every single request, I would use AMQP, because it is easy to use, supported in most of the languages used nowadays, reliable, scalable and fast.

I think both protocols are great, no doubt about that. But only one of them adds reliablity on your communications “out of the box and that is key, also, only one of them is scalable almost out of the box and the fact that communications are not blocking the services allows you to continue using your resources for other processes. Furthermore, why re-inventing the weel creating our own reliability process “just because”? Why adding extra code that has to be maintained only because “we can”? I have it clear, if it is asynchronous, use AMQP with RabbitMQ.

Conclusion

Probably you already realized that the entire discussion makes no sense, didn't you? We are comparing shoes with t-shirts here, and that is a mistake that we have been doing for a long time.

We should focus in what is really important: why do we decide to go for one or another technology, which pros and wich cons we have with the choices we make and, once we did, get all our efforts on making the best out of it.

Of course, reviewing the chosen infrastructure is always good, but we have to take into consideration when and why.

Top comments (8)

Collapse
 
wrschneider profile image
Bill Schneider

For me the determining factor is whether you need some kind of broadcast or routing to multiple subscribers. If it's point-to-point, HTTP will be much simpler to work with, even if async. Use AMQP when you would otherwise reinvent features like tracking subscribers, topic- or header-based routing, etc.

Collapse
 
jonledon profile image
JonLeDon • Edited

I did a Microservice architecture on http and then started another on amqp. To make it short: If you go with microservices you need an inherently asynchronous mechanism to fulfill the concepts of eventual consistency, aggregate synchronisation etcetera. I started summarising my experiences on: fordfocus1.wixsite.com/microservices

Collapse
 
imatmati profile image
ivan matmati

And service discovery is a breese with AMQP !

Collapse
 
_ajp_ profile image
AJP

No MQTT? IoT applications have caused a resurgence in MQTT recently. On the basis of having looked at AMQP a bit, and used MQTT a lot – I'm a big MQTT fan. Lightweight, lots of QoS options, and easy to use.

Collapse
 
fedejsoren profile image
Federico Sörenson

You are right, MQTT could have been a good solution too, but somehow we decided to go for AMQP handled by RabbitMQ. The way we integrated that in our services gave us the possibility of adding extra semantic to our communications, helping us in the maintenance of the code.

Collapse
 
oscherler profile image
Olivier “Ölbaum” Scherler

My first thought when I read the title was WAT?, but it turned out really interesting. Sometimes you have to trust that what's been decided was the right thing even if you don't remember all the reasons at the moment.

It happened a few times that we ended arguments with “Look, we've given it a lot of thought at the time, and we decided this was a bad idea. We don't remember all the arguments, but we clearly remember that this was the right decision, so it's time to stop discussing it again.”

Collapse
 
bgadrian profile image
Adrian B.G.

Wwuuutt?then I got to

We are comparing shoes with t-shirts here, and that is a mistake that we have been doing for a long time.

Ah ok, this guy is not so crazy after all 😀.

Collapse
 
imatmati profile image
ivan matmati

I would add monitoring as a clear advantage of Messaging over HTTP. By the way, why not implementing both endpoints types to secure need fulfillment? I would use HTTP as the out-of-the-world endpoint and messaging as the internal one. I gather performance of messaging makes it unavoidable but still it's not the "one fit all" solution especially from an integration point of view. So both should be considered complimentaries and unseparable.