SlideShare a Scribd company logo
1 of 51
Picking a Message Queue.
Vladislav Kirshtein
Software
engineer/consultant
vladk@codevalue.net
1
2
About me
Senior consultant at CodeValue since 2015
10 years of experience in large scale software
development
Particularly interested in highload projects,
distributed systems, and cloud computing
3
Agenda
Message oriented protocols
AMQP - RabbitMQ
ZeroMQ
Cloud
NATS
4
Protocols
 Stomp – Simple (or Streaming) Text Oriented Message
Protocol
 MQTT – Message Queue Telemetry Transport
 AMQT – Advanced Message Queuing Protocol
 Vendor specific (Kafka,NATS,ZeroMQ etc)
STOMP – Simple Text Oriented Message Protocol
• Simple interoperable protocol for asynchronous
messaging
• coming from HTTP school of design
• Text Based
• Communication between client and server is
through a 'frame'
• Client frames : SEND,SUBSCRIBE/ UNSUBSCRIBE,
ACK/NACK…
• Server frames: MESSAGE,RECEIPT,ERROR
STOMP
SERVER
Client Client
Send Subscribe
Message
Receipt
ACK/NACK
MQTT – Message Queue Telemetry Transport
• Created by IBM for
embedded devices telemetry
• Ideal for constrained
networks (low bandwidth,
high latency, data limits, and
fragile connections)
• Binary format (2-byte header)
• Pub/Sub
• Reliable – QoS for reliability
on unreliable networks
• Security
• Authentication
• TLS/SSL
• Simple – 43 page spec.
• Connect/Disconnect + Publish
+ Subscribe/Unsubscribe
7
AMQP – Advanced Message Queue Protocol
Conceived by JP Morgan in
2006
Answer to current Middleware
Hell
100’s of applications
10,000’s of links
every connection different
massive waste of effort
Goal to make interoperable
Message Oriented Middleware
8
AMQP 0-10 vs 1.0
Direct Exchange
10
Producer Exchange
Consumer
Consumer
Routing key Binding
Fan-out exchange
11
Producer Exchange
C
Routing key
C
C
C
C
Topic Exchange
12
Producer Exchange
C
Routing key
C
C
C
C
order.bissli
RabbitMQ
Open source
Support multiple protocols AMQP,MQTT,STOMP,HTTP
Routing capabilities
Reliability
Scalability through clustering
High availability
Management and monitoring
Security
Traceability and debugging
Pluggable architecture
13
RabbitMQ
14
• Clustering
• Act as single logical unit
• Consumer seen cluster as a single
node
• Automatic metadata replication
• Mirrored queues
• Federation/Shovel
• Consumes and republishers
• Exchange to exchange
• Works well across WAN
• Two main difference
• Shovel is low level
• Shovel is more flexible
RabbitMQ
15
• Know your rabbit (DevOps!)
• Erlang
• Configuration are Erlang tuples
• You will need to deal with Erlang's message
passing framework
• Reading source and extend the system will
be difficult
• Optimized for discrete message
handling
• No content filtering
• It's not too fast
• Optimized for discrete message handling
• Fan-out ~35000 mps
• Direct ~35000 mps
• Topic ~10000 mps
• Consistent-Hash(plugin) ~40000 mps
RabbitMQ
• Community support
• https://groups.google.com/forum/#!forum/rabbitmq-users
• Slack - https://rabbitmq-slack.herokuapp.com/
• Official site - http://www.rabbitmq.com/
• Books
• RabbitMQ in Action
• RabbitMQ in Depth
• RabbitMQ Essentials
• RabbitMQ best practices – CloudAMQP
• https://www.cloudamqp.com/blog/2017-12-29-part1-rabbitmq-best-practice.html
• Video
16
RabbitMQ - Demo
17
Client Server
Request queue
Response queue
https://github.com/vgrokk/RabbitMQDemo
RabbitMQ - Demo
18
Producer Exchange
C
C
C
C
C
order.bissli
https://github.com/vgrokk/RabbitMQDemo
No more brokers
19
• Brokers are single point of failure
• Not horizontally scalable
• Reduce reliability with addition of nodes
• HA provides minimal benefit, and adds
complexity
20
ZeroMQ
What Ø come for?
The original Ø meant:
• Zero broker
• Zero latency (as close as possible)
With the time
• Zero administration
• Zero cost
• Zero waste
21
ZeroMQ
22
ZeroMQ
Creators - iMatix CEO Pieter Hintjens and Martin
Sustrik
Super socket library
Language agnostic (40+ languages)
Multiple network protocols
Multiple connection patterns
High throughput/low latency (~5m mps, 30usec
latency)
Messages
Batching
Atomic
Small (~25k lines of code)
Open source. Large supported community.
Multiple forks (nanomessage)
23
ZeroMQ - Cons
24
Durability
Static routing
No out of the box solution
Service discovery
Management
Delivery deadlines
QoS
Low level
Internal queue management
ZeroMQ - Sockets
• Unicast – inproc, ipc (except on
Windows), tcp
• Multicast – pgm, epgm
• Asynchronous
• Designed for particular messaging
patterns
• Connect to multiple endpoints
• Automatically reconnect
• Queue messages when under heavy
load
25
ZeroMQ - Sockets
26
• PUB - Outgoing broadcast
• SUB - Broadcast listener
• REQ - Synchronous (1 msg at a time)
request
• REP - Synchronous reply
• DEALER - Async request
• ROUTER - Async reply
• PUSH - One way outgoing to PULL(s)
• PULL - One way incoming from
PUSH(es)
• PAIR - One-to-one 2-way with
another PAIR
PUB and SUB
REQ and REP
REQ and ROUTER
DEALER and REP
DEALER and ROUTER
DEALER and DEALER
ROUTER and ROUTER
PUSH and PULL
PAIR and PAIR
ZeroMQ - Demo
27
https://github.com/vgrokk/ZeroMQDemo
ZeroMQ - Demo
28
https://github.com/vgrokk/ZeroMQDemo
ZeroMQ - Demo
29
https://github.com/vgrokk/ZeroMQDemo
30
Cloud
You host your services on cloud
You don’t have a dedicated budget or skills to
maintain your own queueing system
You aren’t necessarily interested in lowest
latency
You prefer easy solutions over powerful
solutions when queuing is considered
You don’t plan on processing large amounts of
messages
31
Self - hosted
32
Your system is distributed or hosted outside of public
cloud
You want an open solution that you can reuse
You’re worried about latency
You want to configure exchanges or use some other
non-trivial methods of message distribution
You want your queuing system to be extendable and
configurable, and
You want maximum performance and have dedicated
resources to invest in your messaging solution.
Azure
33
Storage queue
PROS
• Can store over 80Gb in queue
• Low cost (100x cheaper than Azure Service Bus)
• Batch receive (up to 32 messages)
• Only pay for storage and operations
• Redundancy(LRS, ZRS, GRS, RA-GRS)
• Rest api
CONS
• Maximum size of a message is 64KB
• Maximum mps is 2000
• Maximum TTL for each message is 7 days
• No order guaranty
• Only polling (for receiver)
• No batch support for sender
34
Service bus
35
Service Bus
36
Scheduled delivery
QoS
Poison message handling
Defer
Auto Forward
Sessions
Batching
Ordering
Auto-delete on idle
OnMessage (.NET only)
Duplicate detection
Content filters
Transactions
Dead lettering
Amazon
37
AWS SQS Amazon
SNS
Amazon
MQ
Amazon
SQS
Amazon
Kinesis
AWS IOT
Managed
queue
Managed
pub/sub
Managed
Apache
ActiveMQ
Managed
event
streaming
Amazon SQS
• Unlimited queues and messages
• Payload Size: up to 256KB
• Batches
• Long polling
• Retain messages in queues for up
to 14 days
38
• Send and read
messages simultaneously
• Message locking
• Queue sharing
• Server-side encryption (SSE)
• Dead Letter Queues (DLQ)
• Amazon CloudWatch metrics
+ alerts
Amazon SNS
39
• Fan-out pattern
• Reliability
• Flexible
• Nearly unlimited throughput
• Secure
• Payloads up to 256 KB
• Amazon CloudWatch
Amazon MQ
40
Amazon MQ is a managed
message broker service
for Apache ActiveMQ that makes
it easy to set up and operate
message brokers in the cloud.
Amazon MQ
41
ActiveMQ Features
• Transient & Persistent
• Queues & topics (FIFO)
• Consistency
• Local & Distributed
transactions
• Message filtering
• Ordering
• Scheduled messages
• Unlimited message size
• Unlimited retention
AmazonMQ Features
• Provisioning
• Updates
• Security
• Maintenance
• Monitoring
• Troubleshooting
• High availability
42
• Was created by Derek Colission in 2010
• Open source, lightweight, high-performance cloud
native messaging system
• Capable of sending 11-12 million messages per
second
• Written in Go
• Available in two interoperable modules
• NATS Server
• NATS Streaming Server
43
NATS
44
Chart source: bravenewgeek.com/dissecting-message-
queues
NATS Server
Highly performant, extremely
lightweight
Clustered servers/clustered aware
clients
Built in resilience and high availability
Auto discovery for topology
Text based protocol (payload as array of
bytes)
Monitorable on a dedicated port
TLS support
Auto Pruning of Clients
Pure Pub/Sub
Request/Reply ,Queueing pattern
Smart routing with wildcards
45
Durability
Transactions
QoS
Flow control (rate
matching/limitng)
NATS Streaming
Layer on top of NATS
Enhanced message protocol - NATS Streaming implements its own
enhanced message format using Google Protocol Buffers.
Message/event persistence
QoS
Flow control (rate matching/limiting)
Message replay by subject
All available messages
Last published value
All messages since specific sequence number
All messages since a specific date/time
Durable subscribers
46
NATS Streaming
47
NATS
48
Chart source: https://dzone.com/articles/benchmarking-nats-
streaming-and-apache-kafka
NATS cluster
49
• For high availability, a full mash of NATS servers
can be setup
• Clients can connect to any of nodes to
communicate with other clients, the NATS cluster
would then route the messages
• Routing will be done if clients showed interests in
subject
• Whenever a new NATS servers joins then
members already in cluster connected as well to
form the full mash
50
51

More Related Content

What's hot

What's hot (18)

Distributed messaging with Apache Kafka
Distributed messaging with Apache KafkaDistributed messaging with Apache Kafka
Distributed messaging with Apache Kafka
 
Messaging Standards and Systems - AMQP & RabbitMQ
Messaging Standards and Systems - AMQP & RabbitMQMessaging Standards and Systems - AMQP & RabbitMQ
Messaging Standards and Systems - AMQP & RabbitMQ
 
Architecture | The Future of Messaging: RabbitMQ and AMQP | Eberhard Wolff
Architecture | The Future of Messaging: RabbitMQ and AMQP | Eberhard WolffArchitecture | The Future of Messaging: RabbitMQ and AMQP | Eberhard Wolff
Architecture | The Future of Messaging: RabbitMQ and AMQP | Eberhard Wolff
 
Spring RabbitMQ
Spring RabbitMQSpring RabbitMQ
Spring RabbitMQ
 
Spring RabbitMQ
Spring RabbitMQSpring RabbitMQ
Spring RabbitMQ
 
Mini-Training: Message Brokers
Mini-Training: Message BrokersMini-Training: Message Brokers
Mini-Training: Message Brokers
 
AMQP 1.0 introduction
AMQP 1.0 introductionAMQP 1.0 introduction
AMQP 1.0 introduction
 
Introduction to AMQP Messaging with RabbitMQ
Introduction to AMQP Messaging with RabbitMQIntroduction to AMQP Messaging with RabbitMQ
Introduction to AMQP Messaging with RabbitMQ
 
Improving Kafka at-least-once performance at Uber
Improving Kafka at-least-once performance at UberImproving Kafka at-least-once performance at Uber
Improving Kafka at-least-once performance at Uber
 
Apache Kafka - Free Friday
Apache Kafka - Free FridayApache Kafka - Free Friday
Apache Kafka - Free Friday
 
Messaging with RabbitMQ and AMQP
Messaging with RabbitMQ and AMQPMessaging with RabbitMQ and AMQP
Messaging with RabbitMQ and AMQP
 
What we've learned from running thousands of production RabbitMQ clusters - L...
What we've learned from running thousands of production RabbitMQ clusters - L...What we've learned from running thousands of production RabbitMQ clusters - L...
What we've learned from running thousands of production RabbitMQ clusters - L...
 
RabbitMQ fairly-indepth
RabbitMQ fairly-indepthRabbitMQ fairly-indepth
RabbitMQ fairly-indepth
 
RabbitMQ Operations
RabbitMQ OperationsRabbitMQ Operations
RabbitMQ Operations
 
Handle Large Messages In Apache Kafka
Handle Large Messages In Apache KafkaHandle Large Messages In Apache Kafka
Handle Large Messages In Apache Kafka
 
Multi-language/multi-OS communication using RabbitMQ
Multi-language/multi-OS communication using RabbitMQMulti-language/multi-OS communication using RabbitMQ
Multi-language/multi-OS communication using RabbitMQ
 
Rabbitmq an amqp message broker
Rabbitmq an amqp message brokerRabbitmq an amqp message broker
Rabbitmq an amqp message broker
 
Pub/Sub Messaging
Pub/Sub MessagingPub/Sub Messaging
Pub/Sub Messaging
 

Similar to Picking a message queue

Enterprise Messaging with RabbitMQ.pdf
Enterprise Messaging with RabbitMQ.pdfEnterprise Messaging with RabbitMQ.pdf
Enterprise Messaging with RabbitMQ.pdf
Ortus Solutions, Corp
 
Hacking apache cloud stack
Hacking apache cloud stackHacking apache cloud stack
Hacking apache cloud stack
Nitin Mehta
 
LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...
LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...
LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...
LF_DPDK
 

Similar to Picking a message queue (20)

ITB2019 Multi-language / multi-OS communication using RabbitMQ - Wil de Bruin
ITB2019 Multi-language / multi-OS communication using RabbitMQ - Wil de BruinITB2019 Multi-language / multi-OS communication using RabbitMQ - Wil de Bruin
ITB2019 Multi-language / multi-OS communication using RabbitMQ - Wil de Bruin
 
Messaging For the Cloud and Microservices
Messaging For the Cloud and MicroservicesMessaging For the Cloud and Microservices
Messaging For the Cloud and Microservices
 
RabbitMQ and AMQP with .net client library
RabbitMQ and AMQP with .net client libraryRabbitMQ and AMQP with .net client library
RabbitMQ and AMQP with .net client library
 
Messaging for IoT
Messaging for IoTMessaging for IoT
Messaging for IoT
 
CloudStack Overview
CloudStack OverviewCloudStack Overview
CloudStack Overview
 
Enterprise Messaging with RabbitMQ.pdf
Enterprise Messaging with RabbitMQ.pdfEnterprise Messaging with RabbitMQ.pdf
Enterprise Messaging with RabbitMQ.pdf
 
MPLAB® Harmony Ecosystem
MPLAB® Harmony EcosystemMPLAB® Harmony Ecosystem
MPLAB® Harmony Ecosystem
 
Streaming data using aws serverless in a bank - AWS Community day NL 2023
Streaming data using aws serverless in a bank - AWS Community day NL 2023Streaming data using aws serverless in a bank - AWS Community day NL 2023
Streaming data using aws serverless in a bank - AWS Community day NL 2023
 
World of Tanks Experience of Using Kafka
World of Tanks Experience of Using KafkaWorld of Tanks Experience of Using Kafka
World of Tanks Experience of Using Kafka
 
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud WorldHHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
HHM 6887 Managing Your Scalable Applications in an MQ Hybrid Cloud World
 
Fabric8 mq
Fabric8 mqFabric8 mq
Fabric8 mq
 
Hacking apache cloud stack
Hacking apache cloud stackHacking apache cloud stack
Hacking apache cloud stack
 
What is RabbitMQ ?
What is RabbitMQ ?What is RabbitMQ ?
What is RabbitMQ ?
 
Realtime traffic analyser
Realtime traffic analyserRealtime traffic analyser
Realtime traffic analyser
 
Apache Kafka® at Dropbox
Apache Kafka® at DropboxApache Kafka® at Dropbox
Apache Kafka® at Dropbox
 
AWS re:Invent 2016: Discovery Channel's Broadcast Workflows and Channel Origi...
AWS re:Invent 2016: Discovery Channel's Broadcast Workflows and Channel Origi...AWS re:Invent 2016: Discovery Channel's Broadcast Workflows and Channel Origi...
AWS re:Invent 2016: Discovery Channel's Broadcast Workflows and Channel Origi...
 
LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...
LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...
LF_DPDK17_OpenNetVM: A high-performance NFV platforms to meet future communic...
 
Redpanda and ClickHouse
Redpanda and ClickHouseRedpanda and ClickHouse
Redpanda and ClickHouse
 
Rami Sayar - Node microservices with Docker
Rami Sayar - Node microservices with DockerRami Sayar - Node microservices with Docker
Rami Sayar - Node microservices with Docker
 
Follow the White Rabbit - Message Queues with PHP
Follow the White Rabbit - Message Queues with PHPFollow the White Rabbit - Message Queues with PHP
Follow the White Rabbit - Message Queues with PHP
 

Recently uploaded

Recently uploaded (20)

FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
 
PLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. StartupsPLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. Startups
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
Strategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering TeamsStrategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering Teams
 
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
 
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdfWhere to Learn More About FDO _ Richard at FIDO Alliance.pdf
Where to Learn More About FDO _ Richard at FIDO Alliance.pdf
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
 
Salesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone KomSalesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
 
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptxUnpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
 
Demystifying gRPC in .Net by John Staveley
Demystifying gRPC in .Net by John StaveleyDemystifying gRPC in .Net by John Staveley
Demystifying gRPC in .Net by John Staveley
 
UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1
 
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
 
Syngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdf
 
ECS 2024 Teams Premium - Pretty Secure
ECS 2024   Teams Premium - Pretty SecureECS 2024   Teams Premium - Pretty Secure
ECS 2024 Teams Premium - Pretty Secure
 
Connecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAKConnecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAK
 
AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101
 
Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
 
Agentic RAG What it is its types applications and implementation.pdf
Agentic RAG What it is its types applications and implementation.pdfAgentic RAG What it is its types applications and implementation.pdf
Agentic RAG What it is its types applications and implementation.pdf
 

Picking a message queue

  • 1. Picking a Message Queue. Vladislav Kirshtein Software engineer/consultant vladk@codevalue.net 1
  • 2. 2
  • 3. About me Senior consultant at CodeValue since 2015 10 years of experience in large scale software development Particularly interested in highload projects, distributed systems, and cloud computing 3
  • 4. Agenda Message oriented protocols AMQP - RabbitMQ ZeroMQ Cloud NATS 4
  • 5. Protocols  Stomp – Simple (or Streaming) Text Oriented Message Protocol  MQTT – Message Queue Telemetry Transport  AMQT – Advanced Message Queuing Protocol  Vendor specific (Kafka,NATS,ZeroMQ etc)
  • 6. STOMP – Simple Text Oriented Message Protocol • Simple interoperable protocol for asynchronous messaging • coming from HTTP school of design • Text Based • Communication between client and server is through a 'frame' • Client frames : SEND,SUBSCRIBE/ UNSUBSCRIBE, ACK/NACK… • Server frames: MESSAGE,RECEIPT,ERROR STOMP SERVER Client Client Send Subscribe Message Receipt ACK/NACK
  • 7. MQTT – Message Queue Telemetry Transport • Created by IBM for embedded devices telemetry • Ideal for constrained networks (low bandwidth, high latency, data limits, and fragile connections) • Binary format (2-byte header) • Pub/Sub • Reliable – QoS for reliability on unreliable networks • Security • Authentication • TLS/SSL • Simple – 43 page spec. • Connect/Disconnect + Publish + Subscribe/Unsubscribe 7
  • 8. AMQP – Advanced Message Queue Protocol Conceived by JP Morgan in 2006 Answer to current Middleware Hell 100’s of applications 10,000’s of links every connection different massive waste of effort Goal to make interoperable Message Oriented Middleware 8
  • 13. RabbitMQ Open source Support multiple protocols AMQP,MQTT,STOMP,HTTP Routing capabilities Reliability Scalability through clustering High availability Management and monitoring Security Traceability and debugging Pluggable architecture 13
  • 14. RabbitMQ 14 • Clustering • Act as single logical unit • Consumer seen cluster as a single node • Automatic metadata replication • Mirrored queues • Federation/Shovel • Consumes and republishers • Exchange to exchange • Works well across WAN • Two main difference • Shovel is low level • Shovel is more flexible
  • 15. RabbitMQ 15 • Know your rabbit (DevOps!) • Erlang • Configuration are Erlang tuples • You will need to deal with Erlang's message passing framework • Reading source and extend the system will be difficult • Optimized for discrete message handling • No content filtering • It's not too fast • Optimized for discrete message handling • Fan-out ~35000 mps • Direct ~35000 mps • Topic ~10000 mps • Consistent-Hash(plugin) ~40000 mps
  • 16. RabbitMQ • Community support • https://groups.google.com/forum/#!forum/rabbitmq-users • Slack - https://rabbitmq-slack.herokuapp.com/ • Official site - http://www.rabbitmq.com/ • Books • RabbitMQ in Action • RabbitMQ in Depth • RabbitMQ Essentials • RabbitMQ best practices – CloudAMQP • https://www.cloudamqp.com/blog/2017-12-29-part1-rabbitmq-best-practice.html • Video 16
  • 17. RabbitMQ - Demo 17 Client Server Request queue Response queue https://github.com/vgrokk/RabbitMQDemo
  • 18. RabbitMQ - Demo 18 Producer Exchange C C C C C order.bissli https://github.com/vgrokk/RabbitMQDemo
  • 19. No more brokers 19 • Brokers are single point of failure • Not horizontally scalable • Reduce reliability with addition of nodes • HA provides minimal benefit, and adds complexity
  • 20. 20
  • 21. ZeroMQ What Ø come for? The original Ø meant: • Zero broker • Zero latency (as close as possible) With the time • Zero administration • Zero cost • Zero waste 21
  • 23. ZeroMQ Creators - iMatix CEO Pieter Hintjens and Martin Sustrik Super socket library Language agnostic (40+ languages) Multiple network protocols Multiple connection patterns High throughput/low latency (~5m mps, 30usec latency) Messages Batching Atomic Small (~25k lines of code) Open source. Large supported community. Multiple forks (nanomessage) 23
  • 24. ZeroMQ - Cons 24 Durability Static routing No out of the box solution Service discovery Management Delivery deadlines QoS Low level Internal queue management
  • 25. ZeroMQ - Sockets • Unicast – inproc, ipc (except on Windows), tcp • Multicast – pgm, epgm • Asynchronous • Designed for particular messaging patterns • Connect to multiple endpoints • Automatically reconnect • Queue messages when under heavy load 25
  • 26. ZeroMQ - Sockets 26 • PUB - Outgoing broadcast • SUB - Broadcast listener • REQ - Synchronous (1 msg at a time) request • REP - Synchronous reply • DEALER - Async request • ROUTER - Async reply • PUSH - One way outgoing to PULL(s) • PULL - One way incoming from PUSH(es) • PAIR - One-to-one 2-way with another PAIR PUB and SUB REQ and REP REQ and ROUTER DEALER and REP DEALER and ROUTER DEALER and DEALER ROUTER and ROUTER PUSH and PULL PAIR and PAIR
  • 30. 30
  • 31. Cloud You host your services on cloud You don’t have a dedicated budget or skills to maintain your own queueing system You aren’t necessarily interested in lowest latency You prefer easy solutions over powerful solutions when queuing is considered You don’t plan on processing large amounts of messages 31
  • 32. Self - hosted 32 Your system is distributed or hosted outside of public cloud You want an open solution that you can reuse You’re worried about latency You want to configure exchanges or use some other non-trivial methods of message distribution You want your queuing system to be extendable and configurable, and You want maximum performance and have dedicated resources to invest in your messaging solution.
  • 34. Storage queue PROS • Can store over 80Gb in queue • Low cost (100x cheaper than Azure Service Bus) • Batch receive (up to 32 messages) • Only pay for storage and operations • Redundancy(LRS, ZRS, GRS, RA-GRS) • Rest api CONS • Maximum size of a message is 64KB • Maximum mps is 2000 • Maximum TTL for each message is 7 days • No order guaranty • Only polling (for receiver) • No batch support for sender 34
  • 36. Service Bus 36 Scheduled delivery QoS Poison message handling Defer Auto Forward Sessions Batching Ordering Auto-delete on idle OnMessage (.NET only) Duplicate detection Content filters Transactions Dead lettering
  • 37. Amazon 37 AWS SQS Amazon SNS Amazon MQ Amazon SQS Amazon Kinesis AWS IOT Managed queue Managed pub/sub Managed Apache ActiveMQ Managed event streaming
  • 38. Amazon SQS • Unlimited queues and messages • Payload Size: up to 256KB • Batches • Long polling • Retain messages in queues for up to 14 days 38 • Send and read messages simultaneously • Message locking • Queue sharing • Server-side encryption (SSE) • Dead Letter Queues (DLQ) • Amazon CloudWatch metrics + alerts
  • 39. Amazon SNS 39 • Fan-out pattern • Reliability • Flexible • Nearly unlimited throughput • Secure • Payloads up to 256 KB • Amazon CloudWatch
  • 40. Amazon MQ 40 Amazon MQ is a managed message broker service for Apache ActiveMQ that makes it easy to set up and operate message brokers in the cloud.
  • 41. Amazon MQ 41 ActiveMQ Features • Transient & Persistent • Queues & topics (FIFO) • Consistency • Local & Distributed transactions • Message filtering • Ordering • Scheduled messages • Unlimited message size • Unlimited retention AmazonMQ Features • Provisioning • Updates • Security • Maintenance • Monitoring • Troubleshooting • High availability
  • 42. 42 • Was created by Derek Colission in 2010 • Open source, lightweight, high-performance cloud native messaging system • Capable of sending 11-12 million messages per second • Written in Go • Available in two interoperable modules • NATS Server • NATS Streaming Server
  • 43. 43
  • 45. NATS Server Highly performant, extremely lightweight Clustered servers/clustered aware clients Built in resilience and high availability Auto discovery for topology Text based protocol (payload as array of bytes) Monitorable on a dedicated port TLS support Auto Pruning of Clients Pure Pub/Sub Request/Reply ,Queueing pattern Smart routing with wildcards 45 Durability Transactions QoS Flow control (rate matching/limitng)
  • 46. NATS Streaming Layer on top of NATS Enhanced message protocol - NATS Streaming implements its own enhanced message format using Google Protocol Buffers. Message/event persistence QoS Flow control (rate matching/limiting) Message replay by subject All available messages Last published value All messages since specific sequence number All messages since a specific date/time Durable subscribers 46
  • 49. NATS cluster 49 • For high availability, a full mash of NATS servers can be setup • Clients can connect to any of nodes to communicate with other clients, the NATS cluster would then route the messages • Routing will be done if clients showed interests in subject • Whenever a new NATS servers joins then members already in cluster connected as well to form the full mash
  • 50. 50
  • 51. 51

Editor's Notes

  1. https://pixabay.com/en/maldives-palma-beach-sand-3220702/ https://pixabay.com/en/hurricane-irma-home-destruction-2857982/
  2. Free image source: https://pixabay.com/en/approval-female-gesture-hand-happy-15914/