Pod Session Management with Redis
Consider a huge monolith application which is running on a single EC2 and you want to swap it into the microservices architecture. From the infra perspective, you have to setup cluster with a namespace for these microservices and associate pods as applications to run in. Now as pods are running, it how do you manage user sessions? Let’s say if a pod gets deleted somehow, the user will be signed out of the application which you do not want to happen. ...