Skip to content

Commit

Permalink
Updated milvus from 2.3.1 to 2.4.1 (#144)
Browse files Browse the repository at this point in the history
* updated milvus from 2.3.1 to 2.4.1

* Fixed json logging numeric/text issue on docker composes of milvus
  • Loading branch information
filipecosta90 authored Aug 5, 2024
1 parent 7140d3c commit d82c2dc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion engine/servers/milvus-limit-ram/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:

standalone:
container_name: milvus-standalone
image: milvusdb/milvus:v2.3.1
image: milvusdb/milvus:v2.4.1
command: ["milvus", "run", "standalone"]
environment:
ETCD_ENDPOINTS: etcd:2379
Expand Down
14 changes: 7 additions & 7 deletions engine/servers/milvus-single-node/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ services:
logging:
driver: "json-file"
options:
max-file: 1
max-size: 10m
max-file: "1"
max-size: "10m"
command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd

minio:
Expand All @@ -29,8 +29,8 @@ services:
logging:
driver: "json-file"
options:
max-file: 1
max-size: 10m
max-file: "1"
max-size: "10m"
command: minio server /minio_data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
Expand All @@ -40,16 +40,16 @@ services:

standalone:
container_name: milvus-standalone
image: milvusdb/milvus:v2.3.1
image: milvusdb/milvus:v2.4.1
command: ["milvus", "run", "standalone"]
environment:
ETCD_ENDPOINTS: etcd:2379
MINIO_ADDRESS: minio:9000
logging:
driver: "json-file"
options:
max-file: 1
max-size: 10m
max-file: "1"
max-size: "10m"
ports:
- "19530:19530"
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jsons = "^1.6.3"
h5py = "^3.7.0"
weaviate-client = "^4.5.0"
elasticsearch = "^8.10.0"
pymilvus = "^2.3.1"
pymilvus = "^2.4.1"
redis = "^5.0.1"
ipdb = "^0.13.9"
stopit = "^1.1.2"
Expand Down

0 comments on commit d82c2dc

Please sign in to comment.