Home > Software design >  I'm using elastic search version 6.0.1. I need to rollover the index when it reaches certain co
I'm using elastic search version 6.0.1. I need to rollover the index when it reaches certain co

Time:09-13

I'm trying to rollover the index using the java rest api. But the java rest api doesn't exist for version 6 of ES. Is there any other possibility to roll over the indices using java rest high level client

CodePudding user response:

if you are still using 6.0 then;

  1. you need to urgently upgrade as this is very much EOL and no longer supported
  2. you will need to use curator as ILM is not available until 6.8
  • Related