Download presentation
Presentation is loading. Please wait.
Published byAnne Craig Modified over 9 years ago
1
RabbitMQ: Messaging Awesomeness By Dave Gorman
2
Why Messaging Easier scaling to cloud ◦Subscribers to queue can be on different servers; decoupling application into processing units ◦Some messages will need more processing power than other messages ◦Volume of some messages will be much different (1000 decrement balance messages, 2 change of address messages) When designed for messaging: ◦Faster processing ◦Easier to code and test
3
Using DBs for Messaging Pros ◦Out of process and durable ◦Accessible by many technologies ◦Good visibility to processing bottlenecks select count(*) from messages Cons ◦Not designed for FIFO processing, slower ◦Need to poll a table to say “any records yet” ◦Have to make sure only one message per subscriber
4
Messaging Frustration MSMQ only for windows JMS only for java 3 rd party enterprise messaging $$$
5
RabbitMQ and AMQP Designed to interoperate with other messaging systems ◦Leading impl of Advanced Message Queuing Protocol ◦AMQP standards body with companies like: JPMorgan Cisco Goldman Sachs Proven Platform ◦Written on top of Erlang’s OTP (Open Telecom Platform) Used in telecom for many years to insure uptime Rated at nine nines (99.9999999%) Written to scale out Supported Clients: ◦.Net, Java, Ruby, Python, PHP, Perl, JS… Supported Server Platforms: ◦Windows, Linux (including EC2), Mac OS X
6
Example
7
RabbitMQ Styles
8
Example 2
9
RabbitMQ Arch
10
About RabbitMQ 100% Open Source ◦Not a couple dudes in their garage open source.. Owned by Spring Source and VMWare Commercial Services available Current version is 2.1 (9/25/2010) and releasing often Thriving community
11
Questions? http://www.rabbitmq.com http://www.amqp.org Dave Gorman csharp4me@gmail.com
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.