Creating Your First Queue

After Getting Started with PubSub+ Cloud and Trying Out Your Event Broker Service, you may want to create a queue so you can send and receive some Guaranteed messages. This tutorial walks you through creating a queue. You will also make sure the queue is working by connecting a publisher and publishing a matching message to that queue.

This tutorial shows you how to do the following tasks:

  1. Create a Queue
  2. Map a Topic to a Queue
  3. Publish a Message to the Queue
  4. Confirm the Message Is in the Queue

Create a Queue

To create a queue, do the following:

  1. Log in to the PubSub+ Cloud Console if you have not done so yet. The URL to access the Cloud Console differs based on your authentication scheme. For more information, see Logging In to the PubSub+ Cloud Console.

  2. On the navigation bar, click Cluster Manager .
  3. On the Services page, click the card for your event broker service to navigate to details of the service.
  4. On the service details page, select the Manage tab.

    The Manage page shows various options to manage your event broker service.

  5. On the Manage page, click the Queues tile.

    Broker Manager opens in a separate tab in your browser and displays the Queues tab

  6. Click the +Queue button.

  7. Enter a name for your queue and click Create. You can use most characters in your queue name, including spaces. Some punctuation marks ('<>*?&;) are not allowed. If you use a slash (/) in the name, it cannot be the first character.

    Queue Name Entry

  8. On the Edit Queue Settings page, click Apply to accept all the default settings.

  9. Your new queue displays on the summary page. The queue is empty, so you will see zeros (0) in both the Messages Queued columns.

Map a Topic to a Queue

While it is possible to publish directly to a queue by its name, it's best to map a topic to a queue for more flexibility. You map a topic to a queue by subscribing to the topic from the queue.

To subscribe to a topic from a queue, perform these steps:

  1. From the queue summary, click anywhere in the row describing the queue to open the Queue Detail pages.

  2. From the queue detail page, select the Subscriptions tab.

  3. On the Subscriptions tab, click +Subscription.

  4. Enter the topic try-me as the subscription and click the Create button. This is the default topic of the Try Me! tool.

  5. The topic try-me is now mapped to the queue. Messages published to that topic will go into the queue.

Publish a Message to the Queue

We will use the Broker Manager Try Me! tool to publish a message into our queue. We are not going to use a subscriber connection.

To publish a message to the queue, follow the steps below.

  1. In the Service Details page select the Try Me! tab.

  2. To connect to the event broker service copy the following connection information from the Service Details page into the Broker Manager under Establish Connection:

    1. Copy the value for Client Username and paste it into the Client Username field.
    2. Copy the value for Client Password and paste it into the Client Password field
  3. In the Publisher panel, click Connect.

    ../img/tryMe_3.png

  4. Validate that the publisher is connected.

    Validate Publisher Button

  5. In the Publisher panel, click Publish to publish a message with try-me as the topic name.

    Publisher Publish Button

Confirm the Message Is in the Queue

In Broker Manager, you can confirm that the message is in the queue.

  1. In the Broker Manager, on the Queues page, your queue is listed on the summary page.

  2. Verify that the Messages Queued column shows 1 message (or more if you published multiple messages), and that a non-zero value is shown in the Messages Queued Quota (MB) column.

    Congratulations! Your queue is working.

  3. To see more details about the message in the queue, click anywhere in the row describing the queue, then select the Messages Queued tab.

    For example, you can see the message ID assigned to the message and the time when it was published.

Next Steps

Well done. You have now created a queue in your event broker service and published a message to it. Want to learn more?