-
Notifications
You must be signed in to change notification settings - Fork 537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to Elasticsearch 6.x #14206
Upgrade to Elasticsearch 6.x #14206
Conversation
Because ES 6.x removed mapping types, move update_count and download_count in separate ES indexes. This requires a full reindex, including stats, but we need to create an entirely new cluster anyway. ES 5.x compatibility is kept for now.
@@ -70,7 +80,16 @@ before_script: | |||
- mysql --version | |||
- node --version | |||
- java -version | |||
- curl -v http://localhost:9200/ | |||
- | | |||
if [ $TOXENV == "es" ]; then |
This comment was marked as resolved.
This comment was marked as resolved.
Sorry, something went wrong.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed a regression in the reindex
command, specifically the --wipe
option does not work anymore.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is still a conflict but the --wipe
works and the rest seems to work as before so r+wc
Because ES 6.x removed mapping types, move
update_count
anddownload_count
in separate ES indexes. This requires a full reindex, including stats, but we need to create an entirely new cluster anyway.ES 5.x compatibility is kept for now.
Fixes mozilla/addons#5609