You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to perform an update action on all pods simultaneously?
We have a Druid running in Kubernetes as a stateful set where we want to update all the pods at the same time. We cannot seem to find a configuration for that. I am aware of rollingUpdate, which only updates one pod at a time.
We need this in case we want to prevent intermediate shuffling if the historicals come up one by one.
@cintoSunny if you keep rollingDeploy: false all update should happen in parallel, rollingDeploy shall call the objFullyDeployed() functions to make sure each sts/deploy updated is done full and then move to next one.
UpdateStrategy is the underlying statefulset properties.
@AdheipSingh : I'll check it out.
But, just to confirm, I want all the replicas in an sts to bounce at the same time. So, If I have a druid cluster with 5 historicals and 3 middle managers, I want all the 5 replicas/pods in historicals and 3 in middlemanager restarting simultaneously.
Is there any way to perform an update action on all pods simultaneously?
We have a Druid running in Kubernetes as a stateful set where we want to update all the pods at the same time. We cannot seem to find a configuration for that. I am aware of
rollingUpdate
, which only updates one pod at a time.We need this in case we want to prevent intermediate shuffling if the historicals come up one by one.
This is what we have currently
Is there any other hack to get this done? Or is it something that the community is thinking about.
The text was updated successfully, but these errors were encountered: