Nerd For Tech

NFT is an Educational Media House. Our mission is to bring the invaluable knowledge and experiences of experts from all over the world to the novice. To know more about us, visit https://www.nerdfortech.org/.

Follow publication

Event-Driven Architecture With Redis Streams Using Spring Boot

In this story, I will talk about, how to process real-time data streaming using Redis streams in spring boot. This will be explained with the producer and consumer model.

Earlier, I tried the Redis pub/sub-model. But it has a problem when a producer publishes a topic, all its consumers will process the data unlike Kafka uses a consumer group. Pubsub doesn’t work that way — the message goes to all connected subscribed clients

Stream Processing

Previously the real-time processing is done in different ways. For Ex: when payments were made we will save them in the database and later in the night or in multiple batches we process the data and get reflected into the system with new data offline.

But nowadays we need to process real-time data, where we will get continuous/stream of data. For Ex: recommendation engines most of the. modern apps like Netflix, prime. Based on our watch/search history the recommendation engine predicts the next watchlist. This happens at the immediate moment. This will provide a better user experience and business value as well. Another example would be credit card transactions/UPI transactions that we do instantly.

Stream processing is real-time continuous data processing. Let’s see how we can achieve simple real-time stream processing using Redis Stream With Spring Boot.

Let us take a use case, of a movie database. The subscribed users or anonymous users watch a movie and can either like, dislike, and rating a movie. Our task is to record a number of views, likes, dislikes, and also ratings. I will create a producer/publisher service by randomizing the likes, dislikes, and rating part. They will be published to Redis streams and consumers who have subscribed to these streams will update them either in DB or any other subsystem (Here I have used Redis sorted set for simplicity).

Technology Stack

Java 8

Spring Boot 2.3.7.RELEASE

Maven For Build

Docker for simplicity (Redis in docker and applications also in docker)

Let us look at the code base

Publisher Configuration

For simplicity, I am using a scheduler that publishes the data to streams every 2 seconds, the consumers who have subscribed will publish to Redis sorted set with details like (movie name, likes count, dislikes count, and summated rating).

First, let us see the DTO classes that are published and consumed.

I generated some random movie repository to publish every 2 seconds.

Movie Publish Event Class which runs for every 2 seconds and publish to Redis stream

Redis Consumer

RedisConfig Class

Movie Event Consumer

Dockerizing the application

I have used docker to simply set up Redis and other boot applications in a simple docker-compose file to avoid any further installations. The consumer application will have 3 replicas to ensure the load is distributed. For this docker is used.

Docker-compose.yaml

redis image is used for redis instance.

redis-commander is a GUI for redis and bind to port 8081.

redis-publisher with environment variables were provided with publish rate as 2000.

redis-consumer also configured.

Docker file for Redis-publisher

FROM openjdk:8-jdk-alpine
ADD target/*.jar redis-stream.jar
ENTRYPOINT java -jar redis-stream.jar

Docker file for Redis-consumer

FROM openjdk:8-jdk-alpine
ADD target/*.jar redis-stream.jar
ENTRYPOINT java -jar redis-stream.jar

I haven’t triggered the build in the docker file we have to do builds before we bring the docker container up and running.

How to start the application

Let us build both publisher and consumer. Navigate to consumer and publisher directories and run the below maven command to create a jar file.

mvn clean package -DskipTests

Bring up the Redis with Redis commander

Go to the root directory and run the below command

docker-compose up redis redis-commanderereshgorantla@Ereshs-MacBook-Pro redis-stream % docker-compose up redis redis-commander
WARNING: The Docker Engine you're using is running in swarm mode.
Compose does not use swarm mode to deploy services to multiple nodes in a swarm. All containers will be scheduled on the current node.To deploy your application across the swarm, use `docker stack deploy`.Starting redis-stream_redis_1 ... done
Starting redis-stream_redis-commander_1 ... done
Attaching to redis-stream_redis_1, redis-stream_redis-commander_1
redis-commander_1 | Creating custom redis-commander config '/redis-commander/config/local-production.json'.
redis_1 | 1:C 22 Dec 2020 05:23:35.977 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
redis_1 | 1:C 22 Dec 2020 05:23:35.977 # Redis version=6.0.9, bits=64, commit=00000000, modified=0, pid=1, just started
redis_1 | 1:C 22 Dec 2020 05:23:35.977 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
redis-commander_1 | Parsing 1 REDIS_HOSTS into custom redis-commander config '/redis-commander/config/local-production.json'.
redis_1 | 1:M 22 Dec 2020 05:23:35.978 * Running mode=standalone, port=6379.
redis_1 | 1:M 22 Dec 2020 05:23:35.978 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
redis_1 | 1:M 22 Dec 2020 05:23:35.978 # Server initialized
redis_1 | 1:M 22 Dec 2020 05:23:35.978 * Loading RDB produced by version 6.0.9
redis_1 | 1:M 22 Dec 2020 05:23:35.978 * RDB age 2642 seconds
redis_1 | 1:M 22 Dec 2020 05:23:35.978 * RDB memory usage when created 0.79 Mb
redis_1 | 1:M 22 Dec 2020 05:23:35.978 * DB loaded from disk: 0.000 seconds
redis_1 | 1:M 22 Dec 2020 05:23:35.979 * Ready to accept connections
redis-commander_1 | node ./bin/redis-commander
redis-commander_1 | Using scan instead of keys
redis-commander_1 | No Save: false
redis-commander_1 | listening on 0.0.0.0:8081
redis-commander_1 | access with browser at http://127.0.0.1:8081
redis-commander_1 | Redis Connection redis:6379 using Redis DB #0

Go to browser and open http://127.0.0.1:8081

Create Redis stream by name “movie-events” we have used the same name in our application.

XADD movie-events * any-key any-value

Create a consumer group to share the load between consumers

XGROUP CREATE movie-events movie-events $

Bring up the Redis-producer

docker-compose up producer

Let us bring up the consumer with 3 replicas

docker-compose up --scale consumer=3

See the console: You could observe 3 consumers have come up and started consuming the stream events.

Let us see docker instances

Let us see Redis commander whether the data is published in a sorted set with a movie name or not.

That's all! Happy Learning

Please find the complete source code from here.

References:

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Nerd For Tech
Nerd For Tech

Published in Nerd For Tech

NFT is an Educational Media House. Our mission is to bring the invaluable knowledge and experiences of experts from all over the world to the novice. To know more about us, visit https://www.nerdfortech.org/.

Eresh Gorantla
Eresh Gorantla

Written by Eresh Gorantla

Experience in Open source stack, microservices, event-driven, analytics. Loves Cricket, cooking, movies and travelling.

Responses (3)

Write a response