Imagine I have a microservices to schedule a reminder. It will be scaled to 3 instances of that microservice and more if need. They share 2 endpoints -> POST(SheduleReminder) and POST(UpdateSheduleReminder)
The first request will be scheduled on instance A (Id = 1), the second on B (Id = 2) and the third on C (Id = 3). Imagine it working with load balancer.
Now if I want update the job with Id = 2, how I can pick/know on what instance of my microservice is the job scheduled in memory?
Is this a problem and I need to manage somehow in what instance is the job running?
Thank you!