Skip to content

Commit

Permalink
Dependencies: Update Elasticsearch to 8.11.2 (#630)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexklibisz authored Dec 10, 2023
1 parent 85f7f01 commit f8cbb6e
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.typelevel.scalacoptions.*
Global / scalaVersion := "2.13.12"

lazy val CirceVersion = "0.14.3"
lazy val ElasticsearchVersion = "8.11.1"
lazy val ElasticsearchVersion = "8.11.2"
lazy val Elastic4sVersion = "8.11.3"
lazy val ElastiknnVersion = IO.read(file("version")).strip()
lazy val LuceneVersion = "9.8.0"
Expand Down
2 changes: 1 addition & 1 deletion client-python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elasticsearch==8.11.0
elasticsearch==8.11.1
tqdm==4.61.1
scipy==1.10.1
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.1
FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.2
COPY elastiknn-plugin/target/elastiknn*.zip .
RUN elasticsearch-plugin install -b file:$(ls elastiknn*zip | sort | tail -n1)
4 changes: 2 additions & 2 deletions docs/pages/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ Make a Dockerfile like below.
The image version (`elasticsearch:A.B.C`) must match the plugin's version (e.g. `A.B.C.x/elastiknn-A.B.C.x`).

```docker
FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.1
RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.11.1.3/elastiknn-8.11.1.3.zip
FROM docker.elastic.co/elasticsearch/elasticsearch:8.11.2
RUN elasticsearch-plugin install --batch https://github.com/alexklibisz/elastiknn/releases/download/8.11.2.3/elastiknn-8.11.2.3.zip
```

Build and run the Dockerfile. If you have any issues please refer to the [official docs.](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html)
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/performance/fashion-mnist/plot.b64

Large diffs are not rendered by default.

Binary file modified docs/pages/performance/fashion-mnist/plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions docs/pages/performance/fashion-mnist/results.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
|Model|Parameters|Recall|Queries per Second|
|---|---|---|---|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=500 probes=0|0.378|374.760|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=1000 probes=0|0.447|317.451|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=500 probes=3|0.634|302.484|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=1000 probes=3|0.716|262.492|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=500 probes=0|0.767|333.057|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=1000 probes=0|0.846|284.019|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=500 probes=3|0.921|228.224|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=1000 probes=3|0.960|205.738|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=500 probes=0|0.378|370.991|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=1000 probes=0|0.447|309.856|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=500 probes=3|0.634|293.030|
|eknn-l2lsh|L=100 k=4 w=1024 candidates=1000 probes=3|0.717|247.470|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=500 probes=0|0.767|321.846|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=1000 probes=0|0.847|271.771|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=500 probes=3|0.921|216.381|
|eknn-l2lsh|L=100 k=4 w=2048 candidates=1000 probes=3|0.960|196.737|
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.11.1.3
8.11.2.0

0 comments on commit f8cbb6e

Please sign in to comment.