1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200
|
# @title Ruby AMQP gem: Working with queues
h1. Working with queues
h2. This Documentation Has Moved to rubyamqp.info
amqp gem documentation guides are now hosted on "rubyamqp.info":http://rubyamqp.info.
h2. About this guide
This guide covers everything related to queues in the AMQP v0.9.1 specification, common usage scenarios and how to accomplish typical operations using the
amqp gem. This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a> (including images & stylesheets). The source is available "on Github":https://github.com/ruby-amqp/amqp/tree/master/docs.
h2. Which versions of the amqp gem does this guide cover?
This guide covers v0.8.0 and later of the "Ruby amqp gem":http://github.com/ruby-amqp/amqp.
h2. Queues in AMQP v0.9.1 - overview
h3. What are AMQP queues?
_Queues_ store and forward messages to consumers. They are similar to mailboxes in SMTP.
Messages flow from producing applications to {file:docs/Exchanges.textile exchanges} that route them
to queues and finally queues deliver the messages to consumer applications (or consumer applications fetch messages as needed).
Note that unlike some other messaging protocols/systems, messages are not delivered directly
to queues. They are delivered to exchanges that route messages to queues using rules
known as _bindings_.
AMQP is a programmable protocol, so queues and bindings alike are declared by applications.
h3. Concept of bindings
A _binding_ is an association between a queue and an exchange. Queues must be bound to at least one exchange in order to receive messages from publishers.
Learn more about bindings in the {file:docs/Bindings.textile Bindings guide}.
h3. Queue attributes
Queues have several attributes associated with them:
* Name
* Exclusivity
* Durability
* Whether the queue is auto-deleted when no longer used
* Other metadata (sometimes called _X-arguments_)
These attributes define how queues can be used, what their life-cycle is like and other aspects of queue
behavior.
The amqp gem represents queues as instances of {AMQP::Queue}.
h2. Queue names and declaring queues
Every AMQP queue has a name that identifies it. Queue names often contain several segments separated by a dot ".", in a similar fashion to URI
path segments being separated by a slash "/", although almost any string can represent a segment (with some limitations - see below).
Before a queue can be used, it has to be *declared*. Declaring a queue will cause it to be created if it does not already exist. The declaration will have no effect if the queue does already exist
and its attributes are the *same as those in the declaration*. When the existing queue attributes are not the same as those in the declaration a channel-level exception is raised. This case is explained later in this
guide.
h3. Explicitly named queues
Applications may pick queue names or ask the broker to generate a name for them.
To declare a queue with a particular name, for example, "images.resize", pass it to the Queue class constructor:
<pre>
<code>
queue = AMQP::Queue.new(channel, "images.resize", :auto_delete => true)
</code>
</pre>
Full example:
<script src="https://gist.github.com/998721.js"> </script>
h3. Server-named queues
To ask an AMQP broker to generate a unique queue name for you, pass an *empty string* as the queue name argument:
<pre>
<code>
AMQP::Queue.new(channel, "", :auto_delete => true) do |queue, declare_ok|
puts "#{queue.name} is ready to go. AMQP method: #{declare_ok.inspect}"
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998720.js"> </script>
The amqp gem allows server-named queues to be declared without callbacks:
<pre>
<code>
queue = AMQP::Queue.new(channel, "", :auto_delete => true)
</code>
</pre>
In this case, as soon as the AMQP broker reply (`queue.declare-ok` AMQP method) arrives, the queue object name will
be assigned to the value that the broker generated. Many AMQP operations require a queue name, so before an
{AMQP::Queue} instance receives its name, those operations are delayed. This example demonstrates this:
<pre>
<code>
queue = channel.queue("")
queue.bind("builds").subscribe do |metadata, payload|
# message handling implementation...
end
</code>
</pre>
In this example, binding will be performed as soon as the queue has received its name generated by the broker.
If a particular piece of code relies on the queue name being available immediately a callback should be used.
h3. Reserved queue name prefix
Queue names starting with "amq." are reserved for internal use by the broker. Attempts to declare a queue with a name
that violates this rule will result in a channel-level exception with reply code 403 (ACCESS_REFUSED) and a reply
message similar to this:
<pre>ACCESS_REFUSED - queue name 'amq.queue' contains reserved prefix 'amq.*'</pre>
h3. Queue re-declaration with different attributes
When queue declaration attributes are different from those that the queue already has, a channel-level exception with
code 406 (PRECONDITION_FAILED) will be raised. The reply text will be similar to this:
<pre>PRECONDITION_FAILED - parameters for queue 'amqpgem.examples.channel_exception' in vhost '/' not equivalent</pre>
h2. Queue life-cycle patterns
According to the AMQP v0.9.1 specification, there are two common message queue life-cycle patterns:
* Durable message queues that are shared by many consumers and have an independent existence: i.e. they
will continue to exist and collect messages whether or not there are consumers to receive them.
* Temporary message queues that are private to one consumer and are tied to that consumer. When the
consumer disconnects, the message queue is deleted.
There are some variations of these, such as shared message queues that are deleted when the last of
many consumers disconnects.
Let us examine the example of a well-known service like an event collector (event logger). A logger is
usually up and running regardless of the existence of services that want to log anything at a particular
point in time. Other applications know which queues to use in order to communicate with the logger and can
rely on those queues being available and able to survive broker restarts. In this case, explicitly named durable
queues are optimal and the coupling that is created between applications is not an issue.
Another example of a well-known long-lived service is a distributed metadata/directory/locking server like
"Apache Zookeeper":http://zookeeper.apache.org, "Google's Chubby":http://labs.google.com/papers/chubby.html or DNS. Services like this benefit from using well-known, not server-generated,
queue names and so do any other applications that use them.
A different sort of scenario is in "a cloud setting" when some kind of worker/instance might start and
stop at any time so that other applications cannot rely on it being available. In this case, it is possible
to use well-known queue names, but a much better solution is to use server-generated, short-lived queues
that are bound to topic or fanout exchanges in order to receive relevant messages.
Imagine a service that processes an endless stream of events - Twitter is one example. When traffic
increases, development operations may start additional application instances in the cloud to handle the load.
Those new instances want to subscribe to receive messages to process, but the rest of the system does not
know anything about them and cannot rely on them being online or try to address them directly. The new instances
process events from a shared stream and are the same as their peers. In a case like this, there is no reason for
message consumers not to use queue names generated by the broker.
In general, use of explicitly named or server-named queues depends on the messaging pattern that your application
needs. {http://www.eaipatterns.com/ Enterprise Integration Patterns} discusses many messaging patterns in depth and
the RabbitMQ FAQ also has a section on {http://www.rabbitmq.com/faq.html#scenarios use cases}.
h2. Declaring a durable shared queue
To declare a durable shared queue, you pass a queue name that is a non-blank string and use the ":durable" option:
<pre>
<code>
queue = AMQP::Queue.new(channel, "images.resize", :durable => true)
</code>
</pre>
Full example:
<script src="https://gist.github.com/998723.js"> </script>
the same example rewritten to use {AMQP::Channel#queue}:
<pre>
<code>
channel.queue("images.resize", :durable => true) do |queue, declare_ok|
puts "#{queue.name} is ready to go."
end
</code>
</pre>
<script src="https://gist.github.com/998724.js"> </script>
h2. Declaring a temporary exclusive queue
To declare a server-named, exclusive, auto-deleted queue, pass "" (empty string) as the queue name and
use the ":exclusive" and ":auto_delete" options:
<pre>
<code>
AMQP::Queue.new(channel, "", :auto_delete => true, :exclusive => true) do |queue, declare_ok|
puts "#{queue.name} is ready to go."
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998725.js"> </script>
The same example can be rewritten to use {AMQP::Channel#queue}:
<pre>
<code>
channel.queue("", :auto_delete => true, :exclusive => true) do |queue, declare_ok|
puts "#{queue.name} is ready to go."
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998726.js"> </script>
Exclusive queues may only be accessed by the current connection and are deleted when that connection closes.
The declaration of an exclusive queue by other connections is not allowed and will result in a channel-level exception
with the code 405 (RESOURCE_LOCKED) and a reply message similar to
<pre>RESOURCE_LOCKED - cannot obtain exclusive access to locked queue 'amqpgem.examples.queue' in vhost '/'</pre>
The following example demonstrates this:
<script src="https://gist.github.com/1008529.js"> </script>
h2. Binding queues to exchanges
In order to receive messages, a queue needs to be bound to at least one exchange. Most of the time binding is explcit
(done by applications). To bind a queue to an exchange, use {AMQP::Queue#bind} where the argument passed can be
either an {AMQP::Exchange} instance or a string.
<pre>
<code>
queue.bind(exchange) do |bind_ok|
puts "Just bound #{queue.name} to #{exchange.name}"
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998727.js"> </script>
The same example using a string without callback:
<pre>
<code>
queue.bind("amq.fanout")
</code>
</pre>
Full example:
<script src="https://gist.github.com/998729.js"> </script>
h2. Subscribing to receive messages ("push API")
To set up a queue subscription to enable an application to receive messages as they arrive in a queue, one uses the
{AMQP::Queue#subscribe} method. Then when a message arrives, the message header (metadata) and body (payload) are
passed to the handler:
<pre>
<code>
queue.subscribe do |metadata, payload|
puts "Received a message: #{payload.inspect}."
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998731.js"> </script>
Subscriptions for message delivery are usually referred to as _consumers_ in the AMQP v0.9.1 specification, client
library documentation and books. Consumers last as long as the channel that they were declared on, or until the
client cancels them (unsubscribes).
Consumers are identified by <i>consumer tags</i>. If you need to obtain the consumer tag of a subscribed
queue then use {AMQP::Queue#consumer_tag}.
h3. Accessing message metadata
The `header` object in the example above provides access to message metadata and delivery information:
* Message content type
* Message content encoding
* Message routing key
* Message delivery mode (persistent or not)
* Consumer tag this delivery is for
* Delivery tag
* Message priority
* Whether or not message is redelivered
* Producer application id
and so on. An example to demonstrate how to access some of those attributes:
<pre>
<code>
# producer
exchange.publish("Hello, world!",
:app_id => "amqpgem.example",
:priority => 8,
:type => "kinda.checkin",
# headers table keys can be anything
:headers => {
:coordinates => {
:latitude => 59.35,
:longitude => 18.066667
},
:participants => 11,
:venue => "Stockholm"
},
:timestamp => Time.now.to_i)
</code>
</pre>
<pre>
<code>
# consumer
queue.subscribe do |metadata, payload|
puts "metadata.routing_key : #{metadata.routing_key}"
puts "metadata.content_type: #{metadata.content_type}"
puts "metadata.priority : #{metadata.priority}"
puts "metadata.headers : #{metadata.headers.inspect}"
puts "metadata.timestamp : #{metadata.timestamp.inspect}"
puts "metadata.type : #{metadata.type}"
puts "metadata.delivery_tag: #{metadata.delivery_tag}"
puts "metadata.redelivered : #{metadata.redelivered?}"
puts "metadata.app_id : #{metadata.app_id}"
puts "metadata.exchange : #{metadata.exchange}"
puts
puts "Received a message: #{payload}."
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998739.js"> </script>
h3. Exclusive consumers
Consumers can request exclusive access to the queue (meaning only this consumer can access the queue). This is useful
when you want a long-lived shared queue to be temporarily accessible by just one application (or thread, or process).
If the application employing the exclusive consumer crashes or loses the TCP connection to the broker, then the
channel is closed and the exclusive consumer is cancelled.
To exclusively receive messages from the queue, pass the ":exclusive" option to {AMQP::Queue#subscribe}:
<pre>
<code>
queue.subscribe(:exclusive => true) do |metadata, payload|
# message handling logic...
end
</code>
</pre>
TBD: describe what happens when exclusivity property is violated and how to handle it.
h3. Using multiple consumers per queue
Historically, amqp gem versions before v0.8.0.RC14 (current master branch in the repository) have had a "one consumer
per Queue instance" limitation. Previously, to work around this problem, application developers had to open multiple
channels and work with multiple queue instances on different channels. This is not very convenient and is surprising
for developers familiar with AMQP clients for other languages.
With more and more Ruby implementations dropping the "GIL":http://en.wikipedia.org/wiki/Global_Interpreter_Lock,
load balancing between multiple consumers in the same queue in the same OS process has become more and more common.
In certain cases, even applications that do not need any concurrency benefit from having multiple consumers on the
same queue in the same process.
Starting from amqp gem v0.8.0.RC14, it is possible to add any number of consumers by instantiating {AMQP::Consumer} directly:
<pre>
<code>
# non-exclusive consumer, consumer tag is generated
consumer1 = AMQP::Consumer.new(channel, queue)
# non-exclusive consumer, consumer tag is explicitly given
consumer2 = AMQP::Consumer.new(channel, queue, "#{queue.name}-consumer-#{rand}-#{Time.now}")
# exclusive consumer, consumer tag is generated
consumer3 = AMQP::Consumer.new(channel, queue, nil, true)
</code>
</pre>
Instantiated consumers do not begin consuming messages immediately. This is because in certain cases, it is useful to
add a consumer but make it active at a later time. To consume messages, use the {AMQP::Consumer#consume} method in
combination with {AMQP::Consumer#on_delivery}:
<pre>
<code>
consumer1.consume.on_delivery do |metadata, payload|
@consumer1_mailbox << payload
end
</code>
</pre>
{AMQP::Consumer#on_delivery} takes a block that is used exactly like the block passed to {AMQP::Queue#subscribe}.
In fact, {AMQP::Queue#subscribe} uses {AMQP::Consumer} under the hood, adding a _default consumer_ to the queue.
<span class="note">
Default consumers do not have any special properties, they just provide a convenient way for application developers
to register multiple consumers and a means of preserving backwards compatibility. Application developers are
always free to use AMQP::Consumer instances directly, or intermix them with AMQP::Queue#subscribe.
</span>
Most of the public API methods on {AMQP::Consumer} return self, so it is possible to use method chaining extensively.
An example from "amqp gem spec suite":https://github.com/ruby-amqp/amqp/tree/master/spec:
<pre>
<code>
consumer1 = AMQP::Consumer.new(@channel, @queue).consume.on_delivery { |metadata, payload| mailbox1 << payload }
consumer2 = AMQP::Consumer.new(@channel, @queue).consume.on_delivery { |metadata, payload| mailbox2 << payload }
</code>
</pre>
To cancel a particular consumer, use {AMQP::Consumer#cancel} method. To cancel a default queue consumer, use {AMQP::Queue#unsubscribe}.
h3. Message acknowledgements
Consumer applications - applications that receive and process messages - may occasionally fail to process individual
messages, or will just crash. There is also the possibility of network issues causing problems. This raises a
question - "When should the AMQP broker remove messages from queues?" The AMQP v0.9.1 specification proposes
two choices:
* After broker sends a message to an application (using either basic.deliver or basic.get-ok methods).
* After the application sends back an acknowledgement (using basic.ack AMQP method).
The former choice is called the *automatic acknowledgement model*, while the latter is called the *explicit
acknowledgement model*. With the explicit model, the application chooses when it is time to send an acknowledgement.
It can be right after receiving a message, or after persisting it to a data store before processing, or after fully
processing the message (for example, successfully fetching a Web page, processing and storing it into some persistent
data store).
!https://github.com/ruby-amqp/amqp/raw/master/docs/diagrams/006_amqp_091_message_acknowledgements.png!
If a consumer dies without sending an acknowledgement, the AMQP broker will redeliver it to another consumer, or, if
none are available at the time, the broker will wait until at least one consumer is registered for the same queue
before attempting redelivery.
The acknowledgement model is chosen when a new consumer is registered for a queue. By default,
{AMQP::Queue#subscribe} will use the *automatic* model. To switch to the *explicit* model, the ":ack" option should
be used:
<pre>
<code>
queue.subscribe(:ack => true) do |metadata, payload|
# message handling logic...
end
</code>
</pre>
To demonstrate how redelivery works, let us have a look at the following code example:
<script src="https://gist.github.com/999396.js"> </script>
So what is going on here? This example uses 3 AMQP connections to imitate 3 applications, 1 producer and two
consumers. Each AMQP connection opens a single channel:
<pre>
<code>
# open three connections to imitate three apps
connection1 = AMQP.connect
connection2 = AMQP.connect
connection3 = AMQP.connect
channel_exception_handler = Proc.new { |ch, channel_close| EventMachine.stop; raise "channel error: #{channel_close.reply_text}" }
# open two channels
channel1 = AMQP::Channel.new(connection1)
channel1.on_error(&channel_exception_handler)
# ...
channel2 = AMQP::Channel.new(connection2)
channel2.on_error(&channel_exception_handler)
# ...
# app 3 will just publish messages
channel3 = AMQP::Channel.new(connection3)
channel3.on_error(&channel_exception_handler)
</code>
</pre>
The consumers share a queue and the producer publishes messages to the queue periodically using an `amq.direct`
exchange. Both "applications" subscribe to receive messages using the explicit acknowledgement model. The AMQP broker
by default will send each message to the next consumer in sequence (this kind of load balancing is known as
*round-robin*). This means that some messages will be delivered to consumer #1 and some to consumer #2.
<pre>
<code>
exchange = channel3.direct("amq.direct")
# ...
queue1 = channel1.queue("amqpgem.examples.acknowledgements.explicit", :auto_delete => false)
# purge the queue so that we do not get any redeliveries from previous runs
queue1.purge
queue1.bind(exchange).subscribe(:ack => true) do |metadata, payload|
# do some work
sleep(0.2)
# acknowledge some messages, they will be removed from the queue
if rand > 0.5
# FYI: there is a shortcut, metadata.ack
channel1.acknowledge(metadata.delivery_tag, false)
puts "[consumer1] Got message ##{metadata.headers['i']}, ack-ed"
else
# odd messages are not ack-ed and will remain in the queue for redelivery
# when app #1 connection is closed (either properly or due to a crash)
puts "[consumer1] Got message ##{metadata.headers['i']}, SKIPPED"
end
end
queue2 = channel2.queue!("amqpgem.examples.acknowledgements.explicit", :auto_delete => false)
queue2.subscribe(:ack => true) do |metadata, payload|
metadata.ack
# app 2 always acks messages
puts "[consumer2] Received #{payload}, redelivered = #{metadata.redelivered}, ack-ed"
end
</code>
</pre>
To demonstrate message redelivery we make consumer #1 randomly select which messages to acknowledge. After 4 seconds
we disconnect it (to imitate a crash). When that happens, the AMQP broker redelivers unacknowledged messages to
consumer #2 which acknowledges them unconditionally. After 10 seconds, this example closes all outstanding
connections and exits.
An extract of output produced by this example:
<pre>
=> Subscribing for messages using explicit acknowledgements model
[consumer2] Received Message #0, redelivered = false, ack-ed
[consumer1] Got message #1, SKIPPED
[consumer1] Got message #2, SKIPPED
[consumer1] Got message #3, ack-ed
[consumer2] Received Message #4, redelivered = false, ack-ed
[consumer1] Got message #5, SKIPPED
[consumer2] Received Message #6, redelivered = false, ack-ed
[consumer2] Received Message #7, redelivered = false, ack-ed
[consumer2] Received Message #8, redelivered = false, ack-ed
[consumer2] Received Message #9, redelivered = false, ack-ed
[consumer2] Received Message #10, redelivered = false, ack-ed
[consumer2] Received Message #11, redelivered = false, ack-ed
----- Connection 1 is now closed (we pretend that it has crashed) -----
[consumer2] Received Message #5, redelivered = true, ack-ed
[consumer2] Received Message #1, redelivered = true, ack-ed
[consumer2] Received Message #2, redelivered = true, ack-ed
[consumer2] Received Message #12, redelivered = false, ack-ed
[consumer2] Received Message #13, redelivered = false, ack-ed
[consumer2] Received Message #14, redelivered = false, ack-ed
[consumer2] Received Message #15, redelivered = false, ack-ed
[consumer2] Received Message #16, redelivered = false, ack-ed
[consumer2] Received Message #17, redelivered = false, ack-ed
[consumer2] Received Message #18, redelivered = false, ack-ed
[consumer2] Received Message #19, redelivered = false, ack-ed
[consumer2] Received Message #20, redelivered = false, ack-ed
[consumer2] Received Message #21, redelivered = false, ack-ed
[consumer2] Received Message #22, redelivered = false, ack-ed
[consumer2] Received Message #23, redelivered = false, ack-ed
[consumer2] Received Message #24, redelivered = false, ack-ed
[consumer2] Received Message #25, redelivered = false, ack-ed
[consumer2] Received Message #26, redelivered = false, ack-ed
[consumer2] Received Message #27, redelivered = false, ack-ed
[consumer2] Received Message #28, redelivered = false, ack-ed
[consumer2] Received Message #29, redelivered = false, ack-ed
[consumer2] Received Message #30, redelivered = false, ack-ed
[consumer2] Received Message #31, redelivered = false, ack-ed
[consumer2] Received Message #32, redelivered = false, ack-ed
[consumer2] Received Message #33, redelivered = false, ack-ed
[consumer2] Received Message #34, redelivered = false, ack-ed
[consumer2] Received Message #35, redelivered = false, ack-ed
</pre>
As we can see, consumer #1 did not acknowledge 3 messages (labelled 1, 2 and 5):
<pre>
[consumer1] Got message #1, SKIPPED
[consumer1] Got message #2, SKIPPED
...
[consumer1] Got message #5, SKIPPED
</pre>
and then, once consumer #1 had "crashed", those messages were immediately redelivered to the consumer #2:
<pre>
Connection 1 is now closed (we pretend that it has crashed)
[consumer2] Received Message #5, redelivered = true, ack-ed
[consumer2] Received Message #1, redelivered = true, ack-ed
[consumer2] Received Message #2, redelivered = true, ack-ed
</pre>
To acknowledge a message use {AMQP::Channel#acknowledge}:
<pre>
<code>
channel1.acknowledge(metadata.delivery_tag, false)
</code>
</pre>
{AMQP::Channel#acknowledge} takes two arguments: message *delivery tag* and a flag that indicates whether or not we
want to acknowledge multiple messages at once. Delivery tag is simply a channel-specific increasing number that
the server uses to identify deliveries.
When acknowledging multiple messages at once, the delivery tag is treated as "up to and including". For example, if
delivery tag = 5 that would mean "acknowledge messages 1, 2, 3, 4 and 5".
As a shortcut, it is possible to acknowledge messages using the {AMQP::Header#ack} method:
<pre>
<code>
queue2.subscribe(:ack => true) do |metadata, payload|
metadata.ack
end
</code>
</pre>
<span class="note">
Acknowledgements are channel-specific. Applications must not receive messages on one channel and acknowledge them on
another.
</span>
<span class="note">
A message MUST not be acknowledged more than once. Doing so will result in a channel-level exception
(PRECONDITION_FAILED) with an error message like this: «PRECONDITION_FAILED - unknown delivery tag»
</span>
h3. Rejecting messages
When a consumer application receives a message, processing of that message may or may not succeed. An application can
indicate to the broker that message processing has failed (or cannot be accomplished at the time) by rejecting a
message. When rejecting a message, an application can ask the broker to discard or requeue it.
To reject a message use the {AMQP::Channel#reject} method:
<pre>
<code>
queue.bind(exchange).subscribe do |metadata, payload|
# reject but do not requeue (simply discard)
channel.reject(metadata.delivery_tag)
end
</code>
</pre>
in the example above, messages are rejected without requeueing (broker will simply discard them). To requeue a
rejected message, use the second argument that {AMQP::Channel#reject} takes:
<pre>
<code>
queue.bind(exchange).subscribe do |metadata, payload|
# reject and requeue
channel.reject(metadata.delivery_tag, true)
end
</code>
</pre>
<span class="note">
When there is only one consumer on a queue, make sure you do not create infinite message delivery loops by rejecting
and requeueing a message from the same consumer over and over again.
</span>
Another way to reject a message is by using {AMQP::Header#reject}:
<pre>
<code>
queue.bind(exchange).subscribe do |metadata, payload|
# reject but do not requeue (simply discard)
metadata.reject
end
</code>
</pre>
<pre>
<code>
queue.bind(exchange).subscribe do |metadata, payload|
# reject and requeue
metadata.reject(:requeue => true)
end
</code>
</pre>
h3. Negative acknowledgements
Messages are rejected with the `basic.reject` AMQP method. There is one limitation that `basic.reject` has: there
is no way to reject multiple messages, as you can do with acknowledgements. However, if you are using
"RabbitMQ":http://rabbitmq.com, then there is a solution. RabbitMQ provides an AMQP v0.9.1 extension known as
"negative acknowledgements":http://www.rabbitmq.com/extensions.html#negative-acknowledgements (nacks) and
the amqp gem supports this extension. For more information, please refer to the
{file:docs/VendorSpecificExtensions.textile Vendor-specific Extensions guide}.
h3. QoS - Prefetching messages
For cases when multiple consumers share a queue, it is useful to be able to specify how many messages each consumer
can be sent at once before sending the next acknowledgement. This can be used as a simple load balancing technique or
to improve throughput if messages tend to be published in batches. For example, if a producing application sends
messages every minute because of the nature of the work it is doing.
Imagine a website that takes data from social media sources like Twitter or Facebook during the Champions League
final (or the Superbowl), and then calculates how many tweets mention a particular team during the last minute.
The site could be structured as 3 applications:
* A crawler that uses streaming APIs to fetch tweets/statuses, normalizes them and sends them in JSON for processing by other applications ("app A").
* A calculator that detects what team is mentioned in a message, updates statistics and pushes an update to the Web UI once a minute ("app B").
* A Web UI that fans visit to see the stats ("app C").
In this imaginary example, the "tweets per second" rate will vary, but to improve the throughput of the system and
to decrease the maximum number of messages that the AMQP broker has to hold in memory at once, applications can be
designed in such a way that application "app B", the "calculator", receives 5000 messages and then acknowledges them
all at once. The broker will not send message 5001 unless it receives an acknowledgement.
In AMQP parlance this is know as *QoS* or *message prefetching*. Prefetching is configured on a per-channel
(typically) or per-connection (rarely used) basis. To configure prefetching per channel, use
the {AMQP::Channel#prefetch} method. Let us return to the example we used in the "Message acknowledgements" section:
<pre>
<code>
# app #1 will be given up to 3 messages at a time. If it does not
# send an ack after receiving the messages, then the messages will
# be routed to app #2.
channel1.prefetch(3)
# app #2 processes messages one-by-one and has to send an ack after receiving each message
channel2.prefetch(1)
</code>
</pre>
In that example, one consumer prefetches 3 messages and another consumer prefetches just 1. If we take a look at the output that the example produces, we will see that `consumer1` fetched 4 messages and acknowledged 1. After that,
all subsequent messages were delivered to `consumer2`:
<pre>
[consumer2] Received Message #0, redelivered = false, ack-ed
[consumer1] Got message #1, SKIPPED
[consumer1] Got message #2, SKIPPED
[consumer1] Got message #3, ack-ed
[consumer2] Received Message #4, redelivered = false, ack-ed
[consumer1] Got message #5, SKIPPED
---
by now consumer 1 has received 3 messages it did not acknowledge.
With prefetch = 3, AMQP broker will not send it any more messages until consumer 1 sends an ack
---
[consumer2] Received Message #6, redelivered = false, ack-ed
[consumer2] Received Message #7, redelivered = false, ack-ed
[consumer2] Received Message #8, redelivered = false, ack-ed
[consumer2] Received Message #9, redelivered = false, ack-ed
[consumer2] Received Message #10, redelivered = false, ack-ed
[consumer2] Received Message #11, redelivered = false, ack-ed
</pre>
<span class="note">
The prefetching setting is ignored for consumers that do not use explicit acknowledgements.
</span>
h2. How message acknowledgements relate to transactions and Publisher Confirms
In cases where you cannot afford to lose a single message, AMQP v0.9.1 applications can use one or a combination of
the following protocol features:
* Publisher confirms (a RabbitMQ-specific extension to AMQP v0.9.1)
* Publishing messages as immediate
* Transactions (noticeable overhead)
This topic is covered in depth in the {file:docs/Exchanges.textile Working With Exchanges} guide.
In this guide, we will only mention how message acknowledgements are related to AMQP transactions and the Publisher
Confirms extension.
Let us consider a publisher application (P) that communications with a consumer (C) using AMQP v0.9.1. Their
communication can be graphically represented like this:
<pre>
----- ----- -----
| | S1 | | S2 | |
| P | ====> | B | ====> | C |
| | | | | |
----- ----- -----
</pre>
We have two network segments, S1 and S2. Each of them may fail. P is concerned with making sure that
messages cross S1, while broker (B) and C are concerned with ensuring that messages cross S2 and are only removed
from the queue when they are processed successfully.
Message acknowledgements cover reliable delivery over S2 as well as successful processing. For S1, P has to use
transactions (a heavyweight solution) or the more lightweight Publisher Confirms RabbitMQ extension.
h2. Fetching messages when needed ("pull API")
The AMQP v0.9.1 specification also provides a way for applications to fetch (pull) messages from the queue only
when necessary. For that, use {AMQP::Queue#pop}:
<pre>
<code>
queue.pop do |metadata, payload|
if payload
puts "Fetched a message: #{payload.inspect}, content_type: #{metadata.content_type}. Shutting down..."
else
puts "No messages in the queue"
end
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998732.js"> </script>
If the queue is empty, then the `payload` argument will be nil, otherwise arguments are identical to those of
the {AMQP::Queue#subscribe} callback.
h2. Unsubscribing from messages
Sometimes it is necessary to unsubscribe from messages without deleting a queue. To do that, use
the {AMQP::Queue#unsubscribe} method:
<pre>
<code>
queue.unsubscribe
</code>
</pre>
By default {AMQP::Queue#unsubscribe} uses the ":noack" option to inform the broker that there is no need to send
a confirmation. In other words, it does not expect you to pass in a callback, because the consumer tag on the queue
instance and the registered callback for messages are cleared immediately.
If an application needs to execute a piece of code after the broker response arrives, {AMQP::Queue#unsubscribe} takes
an optional callback:
<pre>
<code>
queue.unsubscribe do |unbind_ok|
# server response arrived, handle it if necessary...
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998734.js"> </script>
In AMQP parlance, unsubscribing from messages is often referred to as "cancelling a consumer". Once a consumer is
cancelled, messages will no longer be delivered to it, however, due to the asynchronous nature of the protocol,
it is possible for "in flight" messages to be received after this call completes.
Fetching messages with {AMQP::Queue#pop} is still possible even after a consumer is cancelled.
h2. Unbinding queues from exchanges
To unbind a queue from an exchange use {AMQP::Queue#unbind}:
<pre>
<code>
queue.unbind(exchange)
</code>
</pre>
Full example:
<script src="https://gist.github.com/998742.js"> </script>
Note that trying to unbind a queue from an exchange that the queue was never bound to will result in a
channel-level exception.
h2. Querying the number of messages in a queue
It is possible to query the number of messages sitting in the queue by declaring the queue with the ":passive"
attribute set. The response (`queue.declare-ok` AMQP method) will include the number of messages along with other
attributes. However, the amqp gem provides a convenience method, {AMQP::Queue#status}:
<pre>
<code>
queue.status do |number_of_messages, number_of_consumers|
puts
puts "# of messages in the queue #{queue.name} = #{number_of_messages}"
puts
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/1068363.js"> </script>
h2. Querying the number of consumers on a queue
It is possible to query the number of consumers on a queue by declaring the queue with the ":passive" attribute set.
The response (`queue.declare-ok` AMQP method) will include the number of consumers along with other attributes.
However, the amqp gem provides a convenience method, {AMQP::Queue#status}:
<pre>
<code>
queue.status do |number_of_messages, number_of_consumers|
puts
puts "# of consumers on the queue #{queue.name} = #{number_of_consumers}"
puts
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/1068377.js"> </script>
h2. Purging queues
It is possible to purge a queue (remove all of the messages from it) using {AMQP::Queue#purge}:
<pre>
<code>
queue.purge
</code>
</pre>
This method takes an optional callback. However, remember that this operation is performed asynchronously.
To run a piece of code when the AMQP broker confirms that a queue has been purged, use a callback that
{AMQP::Queue#purge} takes:
<pre>
<code>
queue.purge do |_|
puts "Purged #{queue.name}"
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998743.js"> </script>
Note that this example purges a newly declared queue with a unique server-generated name. When a queue is declared,
it is empty, so for server-named queues, there is no need to purge them before they are used.
h2. Deleting queues
To delete a queue, use {AMQP::Queue#delete}. When a queue is deleted, all of the messages in it are deleted as well.
<pre>
<code>
queue.delete
</code>
</pre>
This method takes an optional callback. However, remember that this operation is performed asynchronously.
To run a piece of code when the AMQP broker confirms that a queue has been deleted, use a callback that
{AMQP::Queue#delete} takes:
<pre>
<code>
queue.delete do |_|
puts "Deleted #{queue.name}"
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/998744.js"> </script>
h2. Objects as message consumers and unit testing consumers in isolation
Since Ruby is a genuine object-oriented language, it is important to demonstrate how the Ruby amqp gem can be
integrated into rich object-oriented code. This part of the guide focuses on queues and the problems/solutions
concerning consumer applications (applications that primarily receive and process messages, as opposed to producers
that publish them).
An {AMQP::Queue#subscribe} callback does not have to be a block. It can be any Ruby object that responds to the
`call` method. A common technique is to combine {http://rubydoc.info/stdlib/core/1.8.7/Object:method Object#method}
and {http://rubydoc.info/stdlib/core/1.8.7/Method:to_proc Method#to_proc} and use object methods as message handlers.
An example to demonstrate this technique:
<pre>
<code>
class Consumer
#
# API
#
def initialize(channel, queue_name = AMQ::Protocol::EMPTY_STRING)
@queue_name = queue_name
@channel = channel
# Consumer#handle_channel_exception will handle channel
# exceptions. Keep in mind that you can only register one error handler,
# so the last one registered "wins".
@channel.on_error(&method(:handle_channel_exception))
end # initialize
def start
@queue = @channel.queue(@queue_name, :exclusive => true)
# #handle_message method will be handling messages routed to @queue
@queue.subscribe(&method(:handle_message))
end # start
#
# Implementation
#
def handle_message(metadata, payload)
puts "Received a message: #{payload}, content_type = #{metadata.content_type}"
end # handle_message(metadata, payload)
def handle_channel_exception(channel, channel_close)
puts "Oops... a channel-level exception: code = #{channel_close.reply_code}, message = #{channel_close.reply_text}"
end # handle_channel_exception(channel, channel_close)
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/1009425.js"> </script>
In this example, `Consumer` instances have to be instantiated with an {AMQP::Channel} instance. If the message
handling was done by an aggregated object, it would completely separate the handling logic and would be make it
easy to unit test in isolation:
<pre>
<code>
class Consumer
#
# API
#
def handle_message(metadata, payload)
puts "Received a message: #{payload}, content_type = #{metadata.content_type}"
end # handle_message(metadata, payload)
end
class Worker
#
# API
#
def initialize(channel, queue_name = AMQ::Protocol::EMPTY_STRING, consumer = Consumer.new)
@queue_name = queue_name
@channel = channel
@channel.on_error(&method(:handle_channel_exception))
@consumer = consumer
end # initialize
def start
@queue = @channel.queue(@queue_name, :exclusive => true)
@queue.subscribe(&@consumer.method(:handle_message))
end # start
#
# Implementation
#
def handle_channel_exception(channel, channel_close)
puts "Oops... a channel-level exception: code = #{channel_close.reply_code}, message = #{channel_close.reply_text}"
end # handle_channel_exception(channel, channel_close)
end
</code>
</pre>
Full example:
<script src="https://gist.github.com/1009447.js"> </script>
Note that the `Consumer` class demonstrated above can be easily tested in isolation without spinning up any AMQP
connections:
<pre>
<code>
require "ostruct"
require "json"
# RSpec example
describe Consumer do
describe "when a new message arrives" do
subject { described_class.new }
let(:metadata) do
o = OpenStruct.new
o.content_type = "application/json"
o
end
let(:payload) { JSON.encode({ :command => "reload_config" }) }
it "does some useful work" do
# check preconditions here if necessary
subject.handle_message(metadata, payload)
# add your code expectations here
end
end
end
</code>
</pre>
TBD
h2. Queue durability vs message durability
See {file:docs/Durability.textile Durability guide}
h2. Error handling and recovery
See {file:docs/ErrorHandling.textile Error handling and recovery guide}
h2. Vendor-specific extensions related to queues
See {file:docs/VendorSpecificExtensions.textile Vendor-specific Extensions guide}
h2. What to read next
The documentation is organized as several {file:docs/DocumentationGuidesIndex.textile documentation guides},
covering all kinds of topics. Guides related to this one are:
* {file:docs/Exchanges.textile Working With Exchanges}
* {file:docs/Bindings.textile Bindings}
* {file:docs/ErrorHandling.textile Error handling and recovery}
RabbitMQ implements a number of extensions to AMQP v0.9.1 functionality that are covered in the
{file:docs/VendorSpecificExtensions.textile Vendor-specific Extensions guide}. At least one extension,
per-queue messages time-to-live (TTL), is related to this guide and can be used with the amqp gem v0.8.0 and later.
h2. Authors
This guide was written by "Michael Klishin":http://twitter.com/michaelklishin and edited by "Chris Duncan":https://twitter.com/celldee.
h2. Tell us what you think!
Please take a moment to tell us what you think about this guide "on Twitter":http://twitter.com/rubyamqp or the "Ruby AMQP mailing list":http://groups.google.com/group/ruby-amqp.
Let us know what was unclear or what has not been covered. Maybe you do not like the guide style or grammar or discover spelling mistakes. Reader feedback is
key to making the documentation better.
If, for some reason, you cannot use the communication channels mentioned above, you can "contact the author of the guides directly":mailto:michael@novemberain.com?subject=amqp%20gem%20documentation
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES * * */
var disqus_shortname = 'rubyamqpdocs'; // required: replace example with your forum shortname
var disqus_developer = 0; // set to 1 on local machine for testing comments
var disqus_identifier = 'amqp_queues';
var disqus_url = 'http://rdoc.info/github/ruby-amqp/amqp/master/file/docs/Queues.textile';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
|