I'm using elastic search version 6.0.1. I need to rollover the index when it reaches certain count. Is there any java rest api for version 6.0.1?

Viewed 34

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

1 Answers

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