Fix ES index upgrades when using index aliases#3863
Merged
tillprochaska merged 2 commits intorelease/4.0.0from Sep 10, 2024
Merged
Fix ES index upgrades when using index aliases#3863tillprochaska merged 2 commits intorelease/4.0.0from
tillprochaska merged 2 commits intorelease/4.0.0from
Conversation
ES supports fetching the index config for multiple indices in a single request. We don’t make use of this, but for this reason the ES responses are an object with a key for each requested index. For example:
```json
{
"aleph-entity-company-v1": {
"settings": { ... },
"mappings: { ... }
}
}
```
In case an index is requested using an alias, the key will be the original index name and *not* the alias, i.e. we cannot rely on the key being the name that was used to request the index, as this would fail in case aliases are used.
However, as we’re always requesting only a single index at a time, the response should always contain data for one index, so we can extract that without relying on the name of the index.
stchris
reviewed
Sep 9, 2024
aleph/index/util.py
Outdated
| f"ES response does not contain data for index {index}" | ||
| ) | ||
|
|
||
| if len(res) > 1: |
Contributor
There was a problem hiding this comment.
out of curiosity: how do you feel about merging these checks into a if len != 1?
Contributor
Author
There was a problem hiding this comment.
Fair point, I’ve changed this.
As suggested by @stchris
stchris
approved these changes
Sep 10, 2024
Contributor
stchris
left a comment
There was a problem hiding this comment.
Looks and works great, thanks for the fix!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ES supports fetching the index config for multiple indices in a single request. We don’t make use of this, but for this reason the ES responses are an object with a key for each requested index. For example:
{ "aleph-entity-company-v1": { "settings": { ... }, "mappings: { ... } } }In case an index is requested using an alias, the key will be the original index name and not the alias, i.e. we cannot rely on the key being the name that was used to request the index, as this would fail in case aliases are used.
However, as we’re always requesting only a single index at a time, the response should always contain data for one index, so we can extract that without relying on the name of the index.
You can test the following scenarios:
curl -X "DELETE" "http://localhost:9200/aleph-entity-company-v1"aleph upgrade.aleph upgrade.