How to throttle messages using Akka Fsm ?

Table of contents
Reading Time: 3 minutes

A few days ago, I was having an issue that the rate of incoming message requests to the process was too high.  All requests were thus being processed in future. By default, every message request was getting processed in parallel. But this was too much parallelism. It was flooding the thread pool with a lot of simultaneous work. A better way to do it is to limit how much you are doing in parallel.

After researching a lot, I read that Akka FSM might help to throttle the messages. So, I tried to go with it.

The goal is to implement a message throttler on the basis of size, a piece of code that ensures that messages are not sent out at a very high rate.

According to documentation, an FSM can be described as a set of relations of the form:

State(S) x Event(E) -> Actions (A), State(S’)

If we are in state S and the event E occurs, we should perform the actions A and make a transition to the state S’.

Abstract Idea:

  1. We will make throttler machine with two states, Waiting and Active.
  2. There will be two types of messages, incoming messages and Flush ( message which will tell start processing messages)
  3. Start with Waiting state using empty Queue and accumulate incoming message requests.
  4. A flush message will decide when to change state from waiting to active.
  5. While changing state from Waiting to Active, process requests in onTransition.
  6.   onTransition is a partial function, which takes as input a pair of states—the current and the next state.
  7. From active, go to waiting for state again after dequeuing processed requests.

Implementation:

Send the Flush message as soon as the number of requests reaches to the configured value. The processing actually happens in the transition Waiting – >.Active Probably the most tricky point is to not forget that when FSM is in the stateActive, new messages will arrive and should be processed by adding to a queue (or rather starting a new queue with the data from that message).  There might be a chance that size of request never reaches to the configured value. For that, we have used StateTimeOut if the message does not come for state timeout period, process all requests.

The aim of this blog is to demonstrate how Akka FSM can be used to throttle the messages and rescue the application from the crash.

For the complete example, the entire code is available on GitHub.

References:

  1. Akka FSM
  2. Throttling Messages in Akka

knoldus-advt-sticker


Written by 

I am a Software Consultant with experience of more than 1.5 years. I am a Functional Programing i.e Scala and Big Data technology enthusiast.I am a active blogger, love to travel, explore and a foodie.

2 thoughts on “How to throttle messages using Akka Fsm ?3 min read

Comments are closed.

Discover more from Knoldus Blogs

Subscribe now to keep reading and get access to the full archive.

Continue reading