No handler found for uri [/_xpack/rollup/job/test_id] and method [PUT]

Trying to PUT a rollup job, getting this error:

No handler found for uri [/_xpack/rollup/job/test_id] and method [PUT]

I've just updated my xpack licence, hopefully it isn't the problem.

This is my rollup:

PUT _xpack/rollup/job/test_id
{
    "index_pattern": "current_index*",
    "rollup_index": "test_rollup",
    "cron": "*/30 * * * * ?",
    "page_size" :1000,
    "groups" : {
      "terms": {
        "fields": [
          "words"
        ]
      }
    },
    "metrics": [
        {
            "field": "wordsCount",
            "metrics": ["min", "max", "avg", "sum"]
        }
    ]
}

Which version of Elasticsearch are you running? Rollups require version 6.3, which has not yet been released.

6.2.4
So there's no way for me to test rollups?

No, you will need to wait for 6.3 to become available.

Okay, thank you!

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.