title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.workload | ms.tgt_pltfrm | ms.devlang | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
How to use Service Bus topics (Ruby) | Microsoft Docs |
Learn how to use Service Bus topics and subscriptions in Azure. Code samples are written for Ruby applications. |
service-bus-messaging |
ruby |
sethmanheim |
timlt |
3ef2295e-7c5f-4c54-a13b-a69c8045d4b6 |
service-bus-messaging |
na |
na |
ruby |
article |
08/10/2017 |
sethm |
[!INCLUDE service-bus-selector-topics]
This article describes how to use Service Bus topics and subscriptions from Ruby applications. The scenarios covered include creating topics and subscriptions, creating subscription filters, sending messages to a topic, receiving messages from a subscription, and deleting topics and subscriptions. For more information on topics and subscriptions, see the Next Steps section.
[!INCLUDE howto-service-bus-topics]
[!INCLUDE service-bus-create-namespace-portal]
[!INCLUDE service-bus-ruby-setup]
The Azure::ServiceBusService object enables you to work with topics. The following code creates an Azure::ServiceBusService object. To create a topic, use the create_topic()
method. The following example creates a topic or prints out the errors if there are any.
azure_service_bus_service = Azure::ServiceBus::ServiceBusService.new(sb_host, { signer: signer})
begin
topic = azure_service_bus_service.create_queue("test-topic")
rescue
puts $!
end
You can also pass an Azure::ServiceBus::Topic object with additional options, which enable you to override default topic settings such as message time to live or maximum queue size. The following example shows setting the maximum queue size to 5 GB and time to live to 1 minute:
topic = Azure::ServiceBus::Topic.new("test-topic")
topic.max_size_in_megabytes = 5120
topic.default_message_time_to_live = "PT1M"
topic = azure_service_bus_service.create_topic(topic)
Topic subscriptions are also created with the Azure::ServiceBusService object. Subscriptions are named and can have an optional filter that restricts the set of messages delivered to the subscription's virtual queue.
Subscriptions are persistent and will continue to exist until either they, or the topic they are associated with, are deleted. If your application contains logic to create a subscription, it should first check if the subscription already exists by using the getSubscription method.
The MatchAll filter is the default filter that is used if no filter is specified when a new subscription is created. When the MatchAll filter is used, all messages published to the topic are placed in the subscription's virtual queue. The following example creates a subscription named "all-messages" and uses the default MatchAll filter.
subscription = azure_service_bus_service.create_subscription("test-topic", "all-messages")
You can also define filters that enable you to specify which messages sent to a topic should show up within a specific subscription.
The most flexible type of filter supported by subscriptions is the Azure::ServiceBus::SqlFilter, which implements a subset of SQL92. SQL filters operate on the properties of the messages that are published to the topic. For more details about the expressions that can be used with a SQL filter, review the SqlFilter syntax.
You can add filters to a subscription by using the create_rule()
method of the Azure::ServiceBusService object. This method enables you to add new filters to an existing subscription.
Since the default filter is applied automatically to all new subscriptions, you must first remove the default filter, or the MatchAll will override any other filters you may specify. You can remove the default rule by using the delete_rule()
method on the Azure::ServiceBusService object.
The following example creates a subscription named "high-messages" with an Azure::ServiceBus::SqlFilter that only selects messages that have a custom message_number
property greater than 3:
subscription = azure_service_bus_service.create_subscription("test-topic", "high-messages")
azure_service_bus_service.delete_rule("test-topic", "high-messages", "$Default")
rule = Azure::ServiceBus::Rule.new("high-messages-rule")
rule.topic = "test-topic"
rule.subscription = "high-messages"
rule.filter = Azure::ServiceBus::SqlFilter.new({
:sql_expression => "message_number > 3" })
rule = azure_service_bus_service.create_rule(rule)
Similarly, the following example creates a subscription named low-messages
with an Azure::ServiceBus::SqlFilter that only selects messages that have a message_number
property less than or equal to 3:
subscription = azure_service_bus_service.create_subscription("test-topic", "low-messages")
azure_service_bus_service.delete_rule("test-topic", "low-messages", "$Default")
rule = Azure::ServiceBus::Rule.new("low-messages-rule")
rule.topic = "test-topic"
rule.subscription = "low-messages"
rule.filter = Azure::ServiceBus::SqlFilter.new({
:sql_expression => "message_number <= 3" })
rule = azure_service_bus_service.create_rule(rule)
When a message is now sent to test-topic
, it is always be delivered to receivers subscribed to the all-messages
topic subscription, and selectively delivered to receivers subscribed to the high-messages
and low-messages
topic subscriptions (depending upon the message content).
To send a message to a Service Bus topic, your application must use the send_topic_message()
method on the Azure::ServiceBusService object. Messages sent to Service Bus topics are instances of the Azure::ServiceBus::BrokeredMessage objects. Azure::ServiceBus::BrokeredMessage objects have a set of standard properties (such as label
and time_to_live
), a dictionary that is used to hold custom application-specific properties, and a body of string data. An application can set the body of the message by passing a string value to the send_topic_message()
method and any required standard properties will be populated by default values.
The following example demonstrates how to send five test messages to test-topic
. Note that the message_number
custom property value of each message varies on the iteration of the loop (this determines which subscription receives it):
5.times do |i|
message = Azure::ServiceBus::BrokeredMessage.new("test message " + i,
{ :message_number => i })
azure_service_bus_service.send_topic_message("test-topic", message)
end
Service Bus topics support a maximum message size of 256 KB in the Standard tier and 1 MB in the Premium tier. The header, which includes the standard and custom application properties, can have a maximum size of 64 KB. There is no limit on the number of messages held in a topic but there is a cap on the total size of the messages held by a topic. This topic size is defined at creation time, with an upper limit of 5 GB.
Messages are received from a subscription using the receive_subscription_message()
method on the Azure::ServiceBusService object. By default, messages are read(peak) and locked without deleting it from the subscription. You can read and delete the message from the subscription by setting the peek_lock
option to false.
The default behavior makes the reading and deleting a two-stage operation, which also makes it possible to support applications that cannot tolerate missing messages. When Service Bus receives a request, it finds the next message to be consumed, locks it to prevent other consumers receiving it, and then returns it to the application. After the application finishes processing the message (or stores it reliably for future processing), it completes the second stage of the receive process by calling delete_subscription_message()
method and providing the message to be deleted as a parameter. The delete_subscription_message()
method will mark the message as being consumed and remove it from the subscription.
If the :peek_lock
parameter is set to false, reading and deleting the message becomes the simplest model, and works best for scenarios in which an application can tolerate not processing a message in the event of a failure. To understand this, consider a scenario in which the consumer issues the receive request and then crashes before processing it. Because Service Bus will have marked the message as being consumed, then when the application restarts and begins consuming messages again, it will have missed the message that was consumed prior to the crash.
The following example demonstrates how messages can be received and processed using receive_subscription_message()
. The example first receives and deletes a message from the low-messages
subscription by using :peek_lock
set to false, then it receives another message from the high-messages
and then deletes the message using delete_subscription_message()
:
message = azure_service_bus_service.receive_subscription_message(
"test-topic", "low-messages", { :peek_lock => false })
message = azure_service_bus_service.receive_subscription_message(
"test-topic", "high-messages")
azure_service_bus_service.delete_subscription_message(message)
Service Bus provides functionality to help you gracefully recover from errors in your application or difficulties processing a message. If a receiver application is unable to process the message for some reason, then it can call the unlock_subscription_message()
method on the Azure::ServiceBusService object. This causes Service Bus to unlock the message within the subscription and make it available to be received again, either by the same consuming application or by another consuming application.
There is also a timeout associated with a message locked within the subscription, and if the application fails to process the message before the lock timeout expires (for example, if the application crashes), then Service Bus will unlock the message automatically and make it available to be received again.
In the event that the application crashes after processing the message but before the delete_subscription_message()
method is called, then the message is redelivered to the application when it restarts. This is often called At Least Once Processing; that is, each message will be processed at least once but in certain situations the same message may be redelivered. If the scenario cannot tolerate duplicate processing, then application developers should add additional logic to their application to handle duplicate message delivery. This logic is often achieved using the message_id
property of the message, which will remain constant across delivery attempts.
Topics and subscriptions are persistent, and must be explicitly deleted either through the Azure portal or programmatically. The example below demonstrates how to delete the topic named test-topic
.
azure_service_bus_service.delete_topic("test-topic")
Deleting a topic also deletes any subscriptions that are registered with the topic. Subscriptions can also be deleted independently. The following code demonstrates how to delete the subscription named high-messages
from the test-topic
topic:
azure_service_bus_service.delete_subscription("test-topic", "high-messages")
Now that you've learned the basics of Service Bus topics, follow these links to learn more.
- See Queues, topics, and subscriptions.
- API reference for SqlFilter.
- Visit the Azure SDK for Ruby repository on GitHub.