Skip to content

Commit 9f6f5c9

Browse files
authored
Merge pull request #403 from Product-Live/feature/lucene_compatibility
Fix dependancie compatibility for ES 7 indexing and Microsoft Azure external storage
2 parents 095137d + eea7af4 commit 9f6f5c9

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

dependencies.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
ext {
1818
revActivation = '2.0.1'
1919
revApacheHttpComponentsClient5 = '5.2.1'
20+
revApacheLucene = '8.11.1'
2021
revAwaitility = '3.1.6'
2122
revAwsSdk = '1.12.756'
2223
revBval = '2.0.5'
@@ -61,9 +62,9 @@ ext {
6162
revKafka = '2.6.0'
6263
revMicrometer = '1.13.1'
6364
revPrometheus = '0.9.0'
64-
revElasticSearch7 = '7.17.19'
65+
revElasticSearch7 = '7.17.11'
6566
revCodec = '1.15'
66-
revAzureStorageBlobSdk = '12.18.0'
67+
revAzureStorageBlobSdk = '12.25.1'
6768
revNatsStreaming = '2.6.5'
6869
revNats = '2.16.14'
6970
revStan = '2.2.3'

es7-persistence/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ dependencies {
2626

2727
implementation "com.fasterxml.jackson.core:jackson-databind"
2828
implementation "com.fasterxml.jackson.core:jackson-core"
29+
30+
implementation "org.apache.lucene:lucene-core:${revApacheLucene}"
2931

3032
implementation "org.elasticsearch.client:elasticsearch-rest-client:${revElasticSearch7}"
3133
implementation "org.elasticsearch.client:elasticsearch-rest-high-level-client:${revElasticSearch7}"

es7-persistence/src/test/java/com/netflix/conductor/es7/dao/index/ElasticSearchTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public ElasticSearchProperties elasticSearchProperties() {
4848
protected static final ElasticsearchContainer container =
4949
new ElasticsearchContainer(
5050
DockerImageName.parse("elasticsearch")
51-
.withTag("7.17.16")); // this should match the client version
51+
.withTag("7.17.11")); // this should match the client version
5252

5353
@Autowired protected ObjectMapper objectMapper;
5454

server/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ dependencies {
6868
implementation 'org.apache.logging.log4j:log4j-web'
6969
implementation "redis.clients:jedis:${revJedis}"
7070
implementation "org.postgresql:postgresql:${revPostgres}"
71+
implementation "org.apache.lucene:lucene-core:${revApacheLucene}"
7172

7273
implementation 'org.springframework.boot:spring-boot-starter-actuator'
7374
implementation ("io.orkes.queues:orkes-conductor-queues:${revOrkesQueues}") {

test-harness/src/test/java/com/netflix/conductor/test/integration/AbstractEndToEndTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public abstract class AbstractEndToEndTest {
6666
private static final ElasticsearchContainer container =
6767
new ElasticsearchContainer(
6868
DockerImageName.parse("elasticsearch")
69-
.withTag("7.17.16")); // this should match the client version
69+
.withTag("7.17.11")); // this should match the client version
7070

7171
private static RestClient restClient;
7272

test-util/src/test/java/com/netflix/conductor/test/integration/AbstractEndToEndTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public abstract class AbstractEndToEndTest {
6262
private static final ElasticsearchContainer container =
6363
new ElasticsearchContainer(
6464
DockerImageName.parse("elasticsearch")
65-
.withTag("7.17.16")); // this should match the client version
65+
.withTag("7.17.11")); // this should match the client version
6666

6767
private static RestClient restClient;
6868

0 commit comments

Comments
 (0)