Skip to content

Commit d82c2dc

Browse files
Updated milvus from 2.3.1 to 2.4.1 (qdrant#144)
* updated milvus from 2.3.1 to 2.4.1 * Fixed json logging numeric/text issue on docker composes of milvus
1 parent 7140d3c commit d82c2dc

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

engine/servers/milvus-limit-ram/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ services:
3939

4040
standalone:
4141
container_name: milvus-standalone
42-
image: milvusdb/milvus:v2.3.1
42+
image: milvusdb/milvus:v2.4.1
4343
command: ["milvus", "run", "standalone"]
4444
environment:
4545
ETCD_ENDPOINTS: etcd:2379

engine/servers/milvus-single-node/docker-compose.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ services:
1414
logging:
1515
driver: "json-file"
1616
options:
17-
max-file: 1
18-
max-size: 10m
17+
max-file: "1"
18+
max-size: "10m"
1919
command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd
2020

2121
minio:
@@ -29,8 +29,8 @@ services:
2929
logging:
3030
driver: "json-file"
3131
options:
32-
max-file: 1
33-
max-size: 10m
32+
max-file: "1"
33+
max-size: "10m"
3434
command: minio server /minio_data
3535
healthcheck:
3636
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
@@ -40,16 +40,16 @@ services:
4040

4141
standalone:
4242
container_name: milvus-standalone
43-
image: milvusdb/milvus:v2.3.1
43+
image: milvusdb/milvus:v2.4.1
4444
command: ["milvus", "run", "standalone"]
4545
environment:
4646
ETCD_ENDPOINTS: etcd:2379
4747
MINIO_ADDRESS: minio:9000
4848
logging:
4949
driver: "json-file"
5050
options:
51-
max-file: 1
52-
max-size: 10m
51+
max-file: "1"
52+
max-size: "10m"
5353
ports:
5454
- "19530:19530"
5555
depends_on:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jsons = "^1.6.3"
1212
h5py = "^3.7.0"
1313
weaviate-client = "^4.5.0"
1414
elasticsearch = "^8.10.0"
15-
pymilvus = "^2.3.1"
15+
pymilvus = "^2.4.1"
1616
redis = "^5.0.1"
1717
ipdb = "^0.13.9"
1818
stopit = "^1.1.2"

0 commit comments

Comments
 (0)