-
Notifications
You must be signed in to change notification settings - Fork 0
LIBRARIES-1490 - Update image to 8.17.3 #22
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
Conversation
|
| <junit.version>4.13.2</junit.version> | ||
| <slf4j-api.version>1.7.36</slf4j-api.version> | ||
| <spring-data-elasticsearch.version>4.3.10</spring-data-elasticsearch.version> | ||
| <spring-data-elasticsearch.version>4.4.18</spring-data-elasticsearch.version> |
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.
https://mvnrepository.com/artifact/org.springframework.data/spring-data-elasticsearch
https://docs.spring.io/spring-data/elasticsearch/reference/elasticsearch/versions.html
Latest compatible spring framework + spring-data elasticsearch version
| List<String> envs = new ArrayList<>(); | ||
| envs.add("discovery.type=single-node"); | ||
| envs.add("xpack.security.enabled=false"); | ||
| envs.add("xpack.monitoring.enabled=false"); |
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.
https://www.elastic.co/guide/en/elasticsearch/reference/current/monitoring-settings.html#general-monitoring-settings
https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html
Settings used to disable basic license features have been removed.
Details
The following settings were deprecated in Elasticsearch 7.8.0 and have been removed in Elasticsearch 8.0.0:xpack.enrich.enabled
xpack.flattened.enabled
xpack.ilm.enabled
xpack.monitoring.enabled
xpack.rollup.enabled
xpack.slm.enabled
xpack.sql.enabled
xpack.transform.enabled
xpack.vectors.enabled
These basic license features are now always enabled.If you have disabled ILM so that you can use another tool to manage Watcher indices, the newly introduced xpack.watcher.use_ilm_index_management setting may be set to false.
Impact
Discontinue use of the removed settings. Specifying these settings in elasticsearch.yml will result in an error on startup.
.github/workflows/review.yml
Outdated
| run: | | ||
| export SONAR_ORGANIZATION=$(echo ${GITHUB_REPOSITORY} | cut -d / -f 1) | ||
| mvn sonar:sonar \ | ||
| mvn org.sonarsource.scanner.maven:sonar-maven-plugin:sonar \ |
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.
julian-eggers
left a comment
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.
|



Breaking change: The es version has been updated from 7.17.9 to 8.17.3. Spring data elasticsearch only works via useAPICompatibility-Mode!