Skip to content

Commit

Permalink
[skip ci] Upgrade mishards for milvus 0.10.1 (#2933)
Browse files Browse the repository at this point in the history
Signed-off-by: yhz <[email protected]>
  • Loading branch information
BossZou authored Jul 20, 2020
1 parent bd02b19 commit 7a59447
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Please mark all change in change log and use the issue from GitHub
## Feature

## Improvement
- \#2932 Upgrade mishards for milvus 0.10.1

## Task

Expand Down
2 changes: 1 addition & 1 deletion shards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Follow below steps to start a standalone Milvus instance with Mishards from sour
3. Start Milvus server.

```shell
$ sudo nvidia-docker run --rm -d -p 19530:19530 -v /tmp/milvus/db:/var/lib/milvus/db milvusdb/milvus:0.10.0-gpu-d061620-5f3c00
$ sudo nvidia-docker run --rm -d -p 19530:19530 -v /tmp/milvus/db:/var/lib/milvus/db milvusdb/milvus:0.10.1-gpu-d072020-bd02b1
```

4. Update path permissions.
Expand Down
2 changes: 1 addition & 1 deletion shards/README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Python 版本为3.6及以上。
3. 启动 Milvus 服务。

```shell
$ sudo nvidia-docker run --rm -d -p 19530:19530 -v /tmp/milvus/db:/var/lib/milvus/db milvusdb/milvus:0.10.0-gpu-d061620-5f3c00
$ sudo nvidia-docker run --rm -d -p 19530:19530 -v /tmp/milvus/db:/var/lib/milvus/db milvusdb/milvus:0.10.1-gpu-d072020-bd02b1
```

4. 更改目录权限。
Expand Down
4 changes: 2 additions & 2 deletions shards/all_in_one/all_in_one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
milvus_wr:
runtime: nvidia
restart: always
image: milvusdb/milvus:0.10.0-gpu-d061620-5f3c00
image: milvusdb/milvus:0.10.1-gpu-d072020-bd02b1
ports:
- "0.0.0.0:19540:19530"
volumes:
Expand All @@ -13,7 +13,7 @@ services:
milvus_ro:
runtime: nvidia
restart: always
image: milvusdb/milvus:0.10.0-gpu-d061620-5f3c00
image: milvusdb/milvus:0.10.1-gpu-d072020-bd02b1
ports:
- "0.0.0.0:19541:19530"
volumes:
Expand Down
4 changes: 2 additions & 2 deletions shards/all_in_one_with_mysql/all_in_one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
milvus_wr:
runtime: nvidia
restart: always
image: milvusdb/milvus:0.10.0-gpu-d061620-5f3c00
image: milvusdb/milvus:0.10.1-gpu-d072020-bd02b1
volumes:
- /tmp/milvus/db:/var/lib/milvus/db
- ./wr_server.yml:/var/lib/milvus/conf/server_config.yaml
Expand All @@ -29,7 +29,7 @@ services:
milvus_ro:
runtime: nvidia
restart: always
image: milvusdb/milvus:0.10.0-gpu-d061620-5f3c00
image: milvusdb/milvus:0.10.1-gpu-d072020-bd02b1
volumes:
- /tmp/milvus/db:/var/lib/milvus/db
- ./ro_server.yml:/var/lib/milvus/conf/server_config.yaml
Expand Down
2 changes: 1 addition & 1 deletion shards/mishards/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
env.read_env()


SERVER_VERSIONS = ['0.9.0', '0.9.1', '0.10.0']
SERVER_VERSIONS = ['0.9.0', '0.9.1', '0.10.0', '0.10.1']
DEBUG = env.bool('DEBUG', False)
MAX_RETRY = env.int('MAX_RETRY', 3)

Expand Down
2 changes: 1 addition & 1 deletion shards/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ py==1.8.0
pyasn1==0.4.7
pyasn1-modules==0.2.6
pylint==2.5.0
pymilvus==0.2.13
pymilvus==0.2.14
#pymilvus-test==0.3.25
pyparsing==2.4.0
pytest==4.6.3
Expand Down

0 comments on commit 7a59447

Please sign in to comment.