设为首页 收藏本站
查看: 600|回复: 0

[经验分享] RabbitMQ vs Apache ActiveMQ vs Apache qpid

[复制链接]

尚未签到

发表于 2016-12-29 10:16:23 | 显示全部楼层 |阅读模式
http://bhavin.directi.com/rabbitmq-vs-apache-activemq-vs-apache-qpid/
6 May, 2010
RabbitMQ vs Apache ActiveMQ vs Apache qpid

Posted by Bhavin Turakhia

We need a simple message queue to ensure asynchronous message passing across a bunch of our server side apps. The message volume is not intended to be very high, latency is not an issue, and order is not important, but we do need to guarantee that the message will be received and that there is no potential for failure irrespective of infrastructure downtime.

Dhruv from my team had taken up the task of researching various persistent message queue options and compiling notes on them. This is a compendium of his notes (disclaimer – this is an outline of our experience, there may be inaccuracies) -
RabbitMQ

General:

    * Some reading on clustering http://www.rabbitmq.com/clustering.html
    * DNS errors cause the DB(mnesia) to crash
    * A RabbitMQ instance won’t scale to LOTS of queues with each queue having fair load since all queues are stored in memory (queue metadata) and also in a clustered setup, each queue’s metadata (but not the queue’’s messages) is replicated on each node. Hence, there is the same amount of overhead due to queues on every node in a cluster
    * No ONCE-ONLY semanamntics. Messages may be sent twice by RabbitMQ to the consumer(s)
    * Multiple consumers can be configured for a single queue, and they will all get mutually exclusive messages
    * Unordered; not FIFO delivery
    * Single socket multiple connections. Each socket can have multiple channels and each channel can have multiple consumers
    * No provision for ETA
    * maybe auto-requeue (based on timeout) — needs investigation
    * Only closing connection NACKs a message. Removing the consumer from that channel does NOT. Hence, all queues being listened to on that channel/connetion are closed for the current consumer
    * NO EXPONENTIAL BACKOFF for failed consumers. Failed messages are re-tried almost immediately. Hence an error in the consumer logic that crashes the consumer while consuming a particular message may potentially block the whole queue. Hence, the consumer needs to be programmed well — error free. However, apps are like; well apps…
    * Consumer has to do rate limiting by not consuming messages too fast (if it wants to); no provision for this in RabbitMQ

Persistence:

    * It will use only it’s own DB — you can’t configure mySQL or any such thing

Clustering and Replication:

    * A RabbitMQ cluster is just a set of nodes running the RabbitMQ. No master node is involved.
    * You need to specify hostname of cluster nodes in a cluster manually on the command line or in a config file.
    * Basic load balancing by nodes in a cluster by redirecting requests to other nodes
    * A node can be a RAM node or a disk node. RAM nodes keep their state only in memory (with the exception of the persistent contents of durable queues which are still stored safely on disc). Disk nodes keep state in memory and on disk.
    * Queue metadata shared across all nodes.
    * RabbitMQ brokers tolerate the failure of individual nodes. Nodes can be started and stopped at will
    * It is advisable to have at least 1 disk node in a cluster of nodes
    * You need to specify which nodes are part of a cluster during node startup. Hence, when A is the first one to start, it will think that it is the only one in the cluster. When B is started it will be told that A is also in the cluster and when C starts, it should be told that BOTH A and B are part of the cluster. This is because if A or B go down, C still knows one of the machines in the cluster. This is only required for RAM nodes, since they don’t persist metadata on disk. So, if C is a memory node and it goes down and comes up, it will have to be manually told which nodes to query for cluster membership (since it itself doesn’t store that state locally).
    * Replication needs to be investigated (check addtl resources) however, from initial reading, it seems queue data replication does not exist
    * FAQ: “How do you migrate an instance of RabbitMQ to another machine?”. Seems to be a very manual process.

Transactions:

    * Any number of queues can be involved in a transaction

Addtl Resources

    * http://somic.org/2008/11/11/using-rabbitmq-beyond-queueing/
    * http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/2009-August/004598.html
    * http://old.nabble.com/Durable-queues—bindings-td22959443.html
    * http://groups.google.com/group/rabbitmq-discuss/msg/e55ae8c821405044
    * RabbitMQ benchmarks (inconclusive): http://www.sheysrebellion.net/blog/2009/06/
    * Some more RabbitMQ benchmarks: http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/2009-October/005189.html
    * If you are still thirsty: http://www.rabbitmq.com/faq.html

Apache qpid

    * Supports transactions
    * Persistence using a pluggable layer — I believe the default is Apache Derby
    * This like the other Java based product is HIGHLY configurable
    * Management using JMX and an Eclipse Management Console application - http://www.lahiru.org/2008/08/what-qpid-management-console-can-do.html
    * The management console is very feature rich
    * Supports message Priorities
    * Automatic client failover using configurable connection properties -
          o http://qpid.apache.org/cluster-design-note.html
          o http://qpid.apache.org/starting-a-cluster.html
          o http://qpid.apache.org/cluster-failover-modes.html
    * Cluster is nothing but a set of machines have all the queues replicated
    * All queue data and metadata is replicated across all nodes that make up a cluster
    * All clients need to know in advance which nodes make up the cluster
    * Retry logic lies in the client code
    * Durable Queues/Subscriptions
    * Has bindings in many languages
    * For the curious: http://qpid.apache.org/current-architecture.html
    * In our tests -
          o Speed: Non-persistent mode: 5000 messages/sec (receive rate), Persistent mode: 1100 messages/sec (receive rate) (send rate will be typically a bit more, but when you start off with an empty queue, they are almost the same for most queue implementations). However, the interesting bit is that even in transacted mode, I saw a lot of message loss if I crashed the broker (by crash I mean Ctrl+C, not even the more -9 signal type of thing that I usually do). Why I stress this is that apps. can usually hook on to Ctrl+C and save data before quitting, but qpid didn’t think it prudent to do so. Out of 1265 messages sent (and committed), only 1218 were received by the consumer (before the inflicted crash). Even on restarting the broker and consumer, that didn’t change. We observed similar behaviour with RabbitMQ in our tests. However, RabbitMQ docs. mention that you need to run in TRANSACTED mode (not just durable/persistent) for guaranteed delivery. We haven’t run that test yet.

Apache ActiveMQ

    * HIGHLY configurable. You can probably do anything you want it to with it
    * You can choose a message store. 4 are already available
    * Has lots of clustering options:
          o Shared nothing Master-Slave: ACK sent to client when master stores the message
          o Shared Database: Acquires a lock on the DB when any instance tries to access the DB
          o Shared Filesystem: Locks a file when accessing the FS. Issues when using NFS with file-locking; or basically any network based file system since file locking is generally buggy in network file systems
    * Network of brokers: This is an option that allows a lot of flexibility. However, it seems to be a very problematic/buggy way of doing things since people face a lot of issues with this configuration
    * Scaling:
          o A. Default transport is blocking I/O with a thread per connection. Can be changed to use nio
          o Horizontal scaling: Though they mention this, the way to achieve this is by using a network of brokers
          o Patitioning: We all know Mr. Partitioning, don’t we. The client decides where to route packets and hence must maintain multiple open connections to different brokers
    * Allows producer flow-control!!
    * Has issues wrt lost/duplicate messages, but there is an active community that fixes these issues
    * Active MQ crashes fairly frequently, at least once per month, and is rather slow - http://stackoverflow.com/questions/957507/lightweight-persistent-message-queue-for-linux
    * Seems to have bindings in many languages(just like RabbitMQ)
    * Has lots of tools built around it 12. JMS compliant; supports XA transactions: http://activemq.apache.org/how-do-transactions-work.html
    * Less performant as compared to RabbitMQ
    * We were able to perform some tests on Apache Active MQ today, and here are the results:
          o Non persistent mode: 5k messages/sec
          o Persistent mode: 22 messages/sec (yes that is correct)
    * There are multiple persisters that can be configured with ActiveMQ, so we are planning to run another set of tests with MySQL and file as the persisters. However, the current default (KahaDB) is said to be more scalable (and offers faster recoverability) as compared to the older default(file/AMQ Message Store: http://activemq.apache.org/amq-message-store.html).
    * The numbers are fair. Others on the net have observed similar results: http://www.mostly-useless.com/blog/2007/12/27/playing-with-activemq/
    * With MySQL, I get a throughput of 8 messages/sec. What is surprising is that it is possible to achieve much better results using MySQL but ActiveMQ uses the table quite unwisely.
    * ActiveMQ created the tables as InnoDB instead of MyISAM even though it doesn’t seem to be using any of the InnoDB features.
    * I tried changing the tables to MyISAM, but it didn’t help much. The messages table structure has 4 indexes !! Insert takes a lot of time because MySQL needs to update 4 indexes on every insert. That sort of kills performance. However, I don’t know if performance should be affected for small (< 1000) messages in the table. Either ways, this structure won’t scale to millions of messages since everyone will block on this one table.

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-320963-1-1.html 上篇帖子: Tomcat vs Apache 下篇帖子: apache+tomcat(转载)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表