ga('send', 'pageview');
Categories
Code-Along

Microservice Code-Along Challenge 3: Communication between services

If you are a developer, and want to learn more about microservices – you should definitely participate in our code-along this fall. We will publish three challenges related to microservices in November and then gather together at a Microservice Meetup Dec 4 2019, to discuss different ways to solve the challenges and learn from each other.

The challenges will be published on Nov 6, Nov 13 and Nov 20 2019 in the Citerus blog and on the Citerus LinkedIn page.

Read the first challenge on Writes across multiple microservices and the second challenge on Reads across multiple microservices.

Ensure Communication

Communication between services is something that we cannot avoid when building microservices. We can either do it synchronously with for example REST or asynchronously with for example Messaging. A benefit with messaging is that we can decouple the sender from the receiver. This will avoid a runtime dependency between the services and the sender can just say what has happened rather than knowing the internals of the services it needs to call. These things help us with stability and keeping the services clean and not bloated with concepts from other teams services. But it also comes with a few challenges. For example if I publish a message, when do I know that someone has received it and if someone asks us to resend messages, how do we accommodate that?

Asyncronous Communication

It is time to visit our squeeky toy company for the final time. We have previously helped them with two problems, one with distributed transactions and one with slow reads. This time they have stumbled across some issues with their asynchronous communication. Let’s explore their problem.

It is Tuesday afternoon and suddenly a dashboard for one of the teams went red and one of the team members sighs and shouts out.

“What now then?”

And starts to browse the logs. After a few minutes the whole team gathers to look at the inconsistencies found.

“Look, here. It looks like we are getting updates on a product that does not yet exist in our system.”

The team asks the other team about this and gets an interesting response.

“It looks good on our side. The product is in our database which means that we should have sent it.” 

Another team members joins in.

“Wait! Look here. We actually got some strange exception when publishing the message. Which should mean that we stored it in the database, but did not publish. I wonder how many of these has happened.”

Current situation

The ProductService is responsible for taking care of the product catalog and everything around it. When products are added/changed/removed they notify everyone who wants to listen to the change.

At the moment a part of their code does two things:

repository.store(product);
publisher.publish(ProductAddedEvent.from(product));

Challenge

Could you help and guide the team to ensure that these are happening transactionally.

  1. We do not want to publish if the storage fails.
  2. We do not want to store if the publishing fails (unless there are other ways of re-sending the message).
  3. A bonus would be to be able to resend events if other teams are losing them somehow.

By Dan Eidmark

Leave a Reply

Your email address will not be published. Required fields are marked *