Skip to content

Commit

Permalink
Update ElasticSearch version to 8.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dantb committed Sep 19, 2023
1 parent 46d110a commit e629519
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ native
target/
.bloop
.metals
metals.sbt
project/.bloop
.bsp

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ElasticSearchContainer(password: String)
}

object ElasticSearchContainer {
private val Version = "8.9.1"
private val Version = "8.10.1"

val ElasticSearchUser = "elastic"
val ElasticSearchPassword = "password"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/paradox/docs/delta/api/assets/version.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"blazegraph": "2.1.6-RC",
"postgresql": "15.4",
"elasticsearch": "8.9.1",
"elasticsearch": "8.10.1",
"remoteStorage": "1.9.0"
},
"plugins": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
memory: 1024M

elasticsearch:
image: "docker.elastic.co/elasticsearch/elasticsearch:8.9.1"
image: "docker.elastic.co/elasticsearch/elasticsearch:8.10.1"
environment:
discovery.type: "single-node"
bootstrap.memory_lock: "true"
Expand Down
10 changes: 9 additions & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ First, run:
docker-compose -f docker/docker-compose.yml up -d
```

To run the all the tests:
Add the following local domains to your `/etc/hosts` file for `S3StorageAccessSpec`:
```
127.0.0.1 bucket.my-domain.com
127.0.0.1 other.my-domain.com
127.0.0.1 bucket2.my-domain.com
127.0.0.1 bucket3.my-domain.com
```

To run all the tests:
```sbtshell
test
```
Expand Down
2 changes: 1 addition & 1 deletion tests/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ services:
- 9090:8080

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.9.1
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.1
environment:
ES_JAVA_OPTS: "-Xmx2G"
discovery.type: "single-node"
Expand Down

0 comments on commit e629519

Please sign in to comment.