Reputation: 1809
I have spring boot application. Multiple Fargate tasks of same service is running. Now I have scheduler performed in service. So is scheduler will be performed twice as 2 tasks are running? How it behaves?
Upvotes: 0
Views: 880
Reputation: 4677
Yes.
If the tasks are the same, and you expect each task to execute some work on a schedule, both will run the scheduled work.
Upvotes: 1