Counter-Badging Service Architecture

Most of the applications have some sort of badging functionality which is used to display certain counts to the users for CTA (Call To Action).

Once the user has clicked or acknowledged the counter then the value associated with the counter will be reset.

Given a system with large number of users and working off a large data set, it’s not always possible to compute the counter values in real time. Also, it may not make sense to update multiple records for different users when the counters are acknowledged.

There are three actions associated with the counters

  1. Increment
  2. Decrement - This usually happens when an action is undone or something is deleted.
  3. Reset - When user acknowledges the counter.

All the above actions could happen concurrently and be associated with an user. For this reason, all the operations on the counter needs to be atomic else the counters would be off the correct value.

A common example for the badging/counter feature is the Facebook notification system.

The counters associated with the user are based on the actions performed by other users.

An user can be associated with several other users and many of those other users could be performing the same or different actions at the same time. Like, there could be 3 people sending the user messages or another 4 people sending friend requests.

</img>
Facebook Notifications

Given the above behavior of the system, the badging system can be architectured as below. The system would be event driven and the counter values eventually consistent.

Each microservice would generate events which gets listened by an events processor service. Based on the data in the event, the processor will update the value of counters associated with the user.

</img>
Simple Badging/Counter Service Architecture

Here is a simple example of the REDIS HASH data structure which can be used to store the counters associated with the user. Each HASH is associated with a userId and all the counters are tied to the hash as key-value pairs.

</img>
Bading Redis Structure

Elankumaran Srinivasan

Elankumaran Srinivasan
I am a software engineer, Java and open source technonogy enthusiast.

Hystrix, Turbine with Spring Boot Admin

</img>Spring Boot Admin is a library which can be added to spring boot application to provide administrative capabilities.You can ...… Continue reading

Implementing CHAT system with MongoDB Atlas

Published on February 27, 2017