Testing the upgrade of my cluster from 8.18 to 9.0, the Upgrade Assistant reports it cannot retrieve deprecation issues for Elasticsearch. Checked /_migration/deprecations and among other things, get the following:
"data_streams": {
".items-default": [
{
"level": "critical",
"message": "Old data stream with a compatibility version < 8.0",
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking-changes-8.0",
"details": "This data stream has backing indices that were created before Elasticsearch 8.0.0",
"resolve_during_rolling_upgrade": false,
"_meta": {
"total_backing_indices": 1,
"indices_requiring_upgrade_count": 1,
"indices_requiring_upgrade": [
".items-default-000001"
],
"reindex_required": true
}
}
],
".lists-default": [
{
"level": "critical",
"message": "Old data stream with a compatibility version < 8.0",
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking-changes-8.0",
"details": "This data stream has backing indices that were created before Elasticsearch 8.0.0",
"resolve_during_rolling_upgrade": false,
"_meta": {
"total_backing_indices": 1,
"indices_requiring_upgrade_count": 1,
"indices_requiring_upgrade": [
".lists-default-000001"
],
"reindex_required": true
}
}
]
I attempted to use /_reindex on both the identified indices, and it didn't throw any errors but still didn't resolve the issue. I'm sure I'm missing something obvious, but I'm not sure how to proceed with these.