codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

Member-only story

Get Started with RabbitMQ 2: Consume Messages Using Hosted Service

Changhui Xu
codeburst
Published in
6 min readJun 2, 2020

In my last article, Get Started with RabbitMQ on Docker, we learned how to run RabbitMQ instances in Docker containers, as well as load customized RabbitMQ server definitions at startup using Docker Compose. To continue with the learning momentum, in this article, we are going to run a message consumer in a Docker container, which shares the same network as the RabbitMQ container.

Most introductory tutorials use Console applications to demonstrate how to produce and consume messages. Even though Console applications are sufficient in some scenarios, it’s better to implement message consumers as hosted services when we run consumers in the background. Background tasks are important components in a microservices architecture. We can implement a single microservice process to run these background tasks in a container so that we can scale it up/down as needed.

In the following sections, we will first create an ASP.NET Core Worker Service project and implement a background service to consume RabbitMQ messages. Then we will make a docker-compose.yml file to run both the RabbitMQ server and the message consumer app in containers.

The complete source code and commands can be found in my GitHub repository. The solution demonstrates a contrived scenario in which the consumer program listens to order.created events from the upstream in RabbitMQ, and sends order confirmation emails. Now, let’s dive in.

Create a Worker Service Project

The ASP.NET Core Worker Service template provides a starting point for writing cross-platform long-running service apps. First things first, we create a Worker Service project, EmailWorker, using the dotnet CLI or Visual Studio.

We will mainly work on the default Worker class to implement the background service. The Worker class inherits the BackgroundService class, which is the base class for implementing a long running IHostedService. A hosted service is a class with the background task logic that…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Changhui Xu

Lead Application Developer. MBA. I write blogs about .NET, Angular, JavaScript/TypeScript, Docker, AWS, DDD, and many others.

Write a response

Thanks a lot, the prop on-failure save my life!!!

--

Brilliant article

--

Thanks for your good article.
I am new to Docker. I saw that in "docker-compose.yml" file, the hostname for rabbbitmq is "my-rabbit" but in emailWorker config, you refer to image name (rabbitmq).
Can you exlplain why ?

--