I have just updated my stack to 6.0.0 and I am getting the following error:
017-12-01 10:47:45.653 INFO 3211 --- [/O dispatcher 2] p.c.ElasticSearchRestClientConfiguration : Error for compass/null for INDEX operation: ElasticsearchException[Elasticsearch exception [type=mapper_parsing_exception, reason=Failed to parse mapping [compass]: [include_in_all] is not allowed for indices created on or after version 6.0.0 as [_all] is deprecated. As a replacement, you can use an [copy_to] on mapping fields to create your own catch all field.]]; nested: ElasticsearchException[Elasticsearch exception [type=mapper_parsing_exception, reason=[include_in_all] is not allowed for indices created on or after version 6.0.0 as [_all] is deprecated. As a replacement, you can use an [copy_to] on mapping fields to create your own catch all field.]];
I have set my cluster in elastic cloud to create a new index automatically, and it was not able to create an index on the 1st of December due to the mappings being deprecated.
Is there a way to create a new mapping for the cluster to automatically conform to and create new indexes each month from the newly defined mapping?
Jason