vanrenter commented on issue #11022:
URL: https://github.com/apache/ignite/issues/11022#issuecomment-3603627849

   I had quite some troubles with Ignite aware java apps in kubernetes, as you 
describe. I don't have a solution, but a workaround for my was to use the 
"Recreate" update strategy. Instead of starting all the pods together, it will 
do the following:
   * stop all existing pods
   * start a new pod and wait for it to be ready
   * start all other pods
   
   The downside is that there is a service interruption at some time (because 
all pods are stopped at one point), but the cluster starts well in an 
acceptable time. The time is roughly 2x the complete start time of one pod (1x 
for the first pod + 1x for all other pods).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to