Conversation
Elasticsearch was pinned to an older version due to a migrations failure. Root cause was determined to be upstream and tracked at elastic/elasticsearch#50248. Now that a fix is merged we can see where the most recent snapshot leaves us.
Until new artifacts are built we need to build from source to test the mappings fix. This is for testing the most recent fixes and should be reverted before merging.
|
retest |
|
elastic/elasticsearch#49166 is next - short term we need to set fielddata to true. |
In 8.0 field data is defaulted to false in Elasticsearch. We make use if this in several areas. The setting change is to reduce memory pressure. The Kibana index typically isn't very large so this is not expected to have a large impact.
|
Migrations are running on hash changes of mappings it looks like..need to push settings changes |
💔 Build FailedHistory
To update your PR or re-run it, just comment with: |
|
@elasticmachine merge upstream |
|
merge conflict between base and head |
💔 Build FailedHistory
To update your PR or re-run it, just comment with: |
| exists: false, | ||
| indexName: index, | ||
| settings: { | ||
| 'indices.id_field_data.enabled': true, |
There was a problem hiding this comment.
I am not sure what this would do here. In addition, this is a cluster-level setting, so this won't work. I believe the solution here is to remove any sort/aggregating we have on _id
|
I have highlighted the path forward here: #52517 (comment). Since we're automating the snapshots, we no longer need this PR to unpin the snapshot once the sorting on |
|
This can be closed. |
Elasticsearch was pinned to an older version due to a migrations
failure. Root cause was determined to be upstream and tracked at
elastic/elasticsearch#50248. Now that a fix is merged we can see where
the most recent snapshot leaves us.