Skip to content

Commit

Permalink
Bump qdrant versions to 1.11.0 (#184)
Browse files Browse the repository at this point in the history
* Update qdrant-client version to 1.11

* Run all engines if poetry changed

* Bump qdrant docker image version
  • Loading branch information
tellet-q authored Aug 13, 2024
1 parent a4ffca4 commit 4ffc3ce
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 14 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/manual-all-engines-benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- 'engine/servers/elasticsearch-single-node/**'
- 'engine/servers/elasticsearch-single-node-ci/**'
- 'engine/base_client/**'
poetry:
- 'poetry.lock'
- 'pyproject.toml'
- uses: ./.github/workflows/actions/run-engine-benchmark
if: ${{ steps.changes.outputs.elasticsearch == 'true' || github.event_name == 'workflow_dispatch' }}
with:
Expand All @@ -48,6 +51,9 @@ jobs:
- 'engine/servers/milvus-single-node/**'
- 'engine/servers/milvus-limit-ram/**'
- 'engine/base_client/**'
poetry:
- 'poetry.lock'
- 'pyproject.toml'
- uses: ./.github/workflows/actions/run-engine-benchmark
if: ${{ steps.changes.outputs.milvus == 'true' || github.event_name == 'workflow_dispatch' }}
with:
Expand All @@ -70,6 +76,9 @@ jobs:
- 'engine/servers/opensearch-single-node/**'
- 'engine/servers/opensearch-single-node-ci/**'
- 'engine/base_client/**'
poetry:
- 'poetry.lock'
- 'pyproject.toml'
- uses: ./.github/workflows/actions/run-engine-benchmark
if: ${{ steps.changes.outputs.opensearch == 'true' || github.event_name == 'workflow_dispatch' }}
with:
Expand All @@ -91,6 +100,9 @@ jobs:
- 'engine/clients/pgvector/**'
- 'engine/servers/pgvector-single-node/**'
- 'engine/base_client/**'
poetry:
- 'poetry.lock'
- 'pyproject.toml'
- uses: ./.github/workflows/actions/run-engine-benchmark
if: ${{ steps.changes.outputs.pgvector == 'true' || github.event_name == 'workflow_dispatch' }}
with:
Expand All @@ -116,6 +128,9 @@ jobs:
- 'engine/servers/qdrant-cluster-mode/**'
- 'engine/servers/qdrant-continuous-benchmarks/**'
- 'engine/base_client/**'
poetry:
- 'poetry.lock'
- 'pyproject.toml'
- uses: ./.github/workflows/actions/run-engine-benchmark
if: ${{ steps.changes.outputs.qdrant == 'true' || github.event_name == 'workflow_dispatch' }}
with:
Expand All @@ -137,6 +152,9 @@ jobs:
- 'engine/clients/redis/**'
- 'engine/servers/redis-single-node/**'
- 'engine/base_client/**'
poetry:
- 'poetry.lock'
- 'pyproject.toml'
- uses: ./.github/workflows/actions/run-engine-benchmark
if: ${{ steps.changes.outputs.weaviate == 'true' || github.event_name == 'workflow_dispatch' }}
with:
Expand All @@ -158,6 +176,9 @@ jobs:
- 'engine/clients/weaviate/**'
- 'engine/servers/weaviate-single-node/**'
- 'engine/base_client/**'
poetry:
- 'poetry.lock'
- 'pyproject.toml'
- uses: ./.github/workflows/actions/run-engine-benchmark
if: ${{ steps.changes.outputs.weaviate == 'true' || github.event_name == 'workflow_dispatch' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion engine/servers/qdrant-billion-scale/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
qdrant_bench:
image: qdrant/qdrant:v1.7.3
image: qdrant/qdrant:${QDRANT_VERSION:-v1.11.0}
ports:
- "6333:6333"
- "6334:6334"
Expand Down
6 changes: 3 additions & 3 deletions engine/servers/qdrant-cluster-mode/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
qdrant-node-0:
image: qdrant/qdrant:v1.7.3
image: qdrant/qdrant:${QDRANT_VERSION:-v1.11.0}
environment:
- QDRANT__SERVICE__GRPC_PORT=6334
- QDRANT__CLUSTER__ENABLED=true
Expand All @@ -18,7 +18,7 @@ services:


qdrant-node-1:
image: qdrant/qdrant:v1.7.3
image: qdrant/qdrant:${QDRANT_VERSION:-v1.11.0}
environment:
- QDRANT__SERVICE__GRPC_PORT=6334
- QDRANT__CLUSTER__ENABLED=true
Expand All @@ -36,7 +36,7 @@ services:


qdrant-node-2:
image: qdrant/qdrant:v1.7.3
image: qdrant/qdrant:${QDRANT_VERSION:-v1.11.0}
environment:
- QDRANT__SERVICE__GRPC_PORT=6334
- QDRANT__CLUSTER__ENABLED=true
Expand Down
2 changes: 1 addition & 1 deletion engine/servers/qdrant-limit-ram/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
qdrant_bench:
image: qdrant/qdrant:v1.7.3
image: qdrant/qdrant:${QDRANT_VERSION:-v1.11.0}
ports:
- "6333:6333"
- "6334:6334"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
qdrant_bench:
image: qdrant/qdrant:${QDRANT_VERSION:-v1.7.3}
image: qdrant/qdrant:${QDRANT_VERSION:-v1.11.0}
network_mode: host
logging:
driver: "json-file"
Expand Down
2 changes: 1 addition & 1 deletion engine/servers/qdrant-single-node/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.7'

services:
qdrant_bench:
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:v1.9.5
image: ${CONTAINER_REGISTRY:-docker.io}/qdrant/qdrant:${QDRANT_VERSION:-v1.11.0}
ports:
- "6333:6333"
- "6334:6334"
Expand Down
13 changes: 7 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Qdrant Team <[email protected]>"]

[tool.poetry.dependencies]
python = ">=3.8,<3.12"
qdrant-client = "^1.9.0"
qdrant-client = "^1.11.0"
typer = "^0.6.1"
jsons = "^1.6.3"
h5py = "^3.7.0"
Expand Down

0 comments on commit 4ffc3ce

Please sign in to comment.