-
Notifications
You must be signed in to change notification settings - Fork 47
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
[BD-19] Transition to the Elasticsearch 7.8.0 version #104
Merged
dianakhuang
merged 14 commits into
openedx:master
from
raccoongang:golub-sergey/BD-19/transition-from-ES1.5-to-ES7
Oct 22, 2020
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
93bd35a
OeX_ES-28: updates ES version for travis-ci from 1.5 to 7.8
Golub-Sergey 072aecf
OeX_ES-28: updates requirements
Golub-Sergey 12f7cca
OeX_ES-28: split doc_types into indexes, removes redundant error
Golub-Sergey fcd0e9d
OeX_ES-28: removes doc_types, edits ES search query building
Golub-Sergey 7c6ac20
OeX_ES-28: adds ES7 container for testing
Golub-Sergey 50403d9
OeX_ES-28: deletes doc_type from search engine functionality
Golub-Sergey 1d2b636
OeX_ES-28: updates tests
Golub-Sergey 04a304f
OeX_ES-28: improves code quality
Golub-Sergey 7477b81
OeX_ES-28: updates travis.ci
Golub-Sergey b7921ff
OeX_ES-28: updates README description
Golub-Sergey 9026820
OeX_ES-28: updates requirements and testing with ES command
Golub-Sergey 6d218df
OeX_ES-28: resolves event-tracking error during local testing
Golub-Sergey 8098036
OeX_ES-28: resolves pr issues
Golub-Sergey ad535ff
OeX_ES-28: updates library version
Golub-Sergey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
version: '2.2' | ||
services: | ||
|
||
test_elasticsearch: | ||
image: elasticsearch:7.8.0 | ||
container_name: test_elasticsearch | ||
environment: | ||
- node.name=test_elasticsearch | ||
- cluster.name=docker-cluster | ||
- cluster.initial_master_nodes=test_elasticsearch | ||
- bootstrap.memory_lock=true | ||
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" | ||
- http.port=9200 | ||
ulimits: | ||
memlock: | ||
soft: -1 | ||
hard: -1 | ||
volumes: | ||
- data01:/usr/share/elasticsearch/data | ||
ports: | ||
- "9200:9200" | ||
|
||
volumes: | ||
data01: | ||
driver: local |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,5 @@ | |
|
||
|
||
Django # Web application framework | ||
elasticsearch>=1.0.0,<2.0.0 | ||
elasticsearch>=7.8.0,<8.0.0 | ||
event-tracking |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
ddt < 1.4.0 | ||
|
||
# newer version is causing failure | ||
tox-battery==0.5.2 | ||
tox-battery==0.6.1 | ||
|
||
|
||
coverage<5.1 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
Hrmm, is there any way to (easily) keep this in sync w/ the value listed in the requirements file(s) below?
Otherwise, this will probably fall out of step.
I'm not sure how/if this is handled elsewhere in the ecosystem...
Not a deal-breaker, just curious...