-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to 7.17.1, add docker files, update readme and clean imports
- Loading branch information
Bapt Abl
committed
Mar 18, 2022
1 parent
4873d86
commit c3a4caf
Showing
10 changed files
with
63 additions
and
21 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: "3.7" | ||
|
||
services: | ||
elasticsearch-plugin-debug: | ||
build: | ||
context: . | ||
dockerfile: docker/Dockerfile | ||
target: elasticsearch-plugin-debug | ||
environment: | ||
- discovery.type=single-node | ||
# NO DEBUG | ||
- ES_JAVA_OPTS=-Xms512m -Xmx512m | ||
# DEBUG | ||
# - ES_JAVA_OPTS=-Xms512m -Xmx512m -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 | ||
ports: | ||
- "9200:9200" | ||
- "5005:5005" # DEBUG |
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,4 @@ | ||
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.1 AS elasticsearch-plugin-debug | ||
|
||
COPY /build/distributions/envelope-aggregation-7.17.1.0.zip /tmp/envelope-aggregation-7.17.1.0.zip | ||
RUN ./bin/elasticsearch-plugin install file:/tmp/envelope-aggregation-7.17.1.0.zip |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
es_version = 7.17.0 | ||
plugin_version = 7.17.0.0 | ||
es_version = 7.17.1 | ||
plugin_version = 7.17.1.0 |
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
src/main/java/org/opendatasoft/elasticsearch/search/aggregations/metric/ConvexHull.java
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
10 changes: 5 additions & 5 deletions
10
...in/java/org/opendatasoft/elasticsearch/search/aggregations/metric/InternalConvexHull.java
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