Skip to content

Commit

Permalink
Bump Elasticsearch spark version to 8.2.3 (#126)
Browse files Browse the repository at this point in the history
Current version of elasticsearch-spark-20 jar is using a 7.x version and
doesn't want to work with Elasticsearch 8.x.
Bumping version of jar to make it also work with 8.x versions.

Signed-off-by: Sylvain Desbureaux <37377804+sylvainOL@users.noreply.github.com>
Co-authored-by: Yuri Shkuro <yurishkuro@users.noreply.github.com>
  • Loading branch information
sylvainOL and yurishkuro committed Mar 6, 2024
1 parent e6055bf commit a5e1736
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,20 @@ jobs:
run: ./mvnw clean install -DskipTests
- name: test
run: ELASTICSEARCH_VERSION=7.3.0 ./mvnw clean test -pl jaeger-spark-dependencies-elasticsearch

latest-jaeger-es8:
name: Latest Jaeger and ES8
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: temurin
java-version: '11'
# TODO remove once testcontainers are updated
- name: pull ryuk image
run: docker pull testcontainersofficial/ryuk:0.3.0
- name: compile
run: ./mvnw clean install -DskipTests
- name: test
run: ELASTICSEARCH_VERSION=8.3.1 ./mvnw clean test -pl jaeger-spark-dependencies-elasticsearch
2 changes: 1 addition & 1 deletion jaeger-spark-dependencies-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-spark-20_${version.scala.binary}</artifactId>
<version>7.13.4</version>
<version>8.2.3</version>
</dependency>

<dependency>
Expand Down

0 comments on commit a5e1736

Please sign in to comment.