Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor milvus cli #54

Merged
merged 58 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
53faebf
init new milvus connection
nameczz Jul 16, 2023
3758157
init connection
nameczz Jul 21, 2023
d24e223
add class connection and test
nameczz Jul 24, 2023
49ad822
support database
nameczz Jul 24, 2023
b6571ce
fix Ellipsis to Exception
nameczz Jul 24, 2023
cf98b9a
optimize connect
nameczz Jul 25, 2023
24c4d81
Merge pull request #33 from zilliztech/connection
nameczz Jul 25, 2023
2a507ec
add milvus_cli to test cli
nameczz Jul 28, 2023
6dc40fb
add connection obj;
nameczz Jul 30, 2023
ef77b0a
optimize connection and split cli file into mutiple files
nameczz Jul 31, 2023
f3c1436
remove print
nameczz Aug 1, 2023
ed1a3ad
Merge pull request #35 from zilliztech/optimize-connection
nameczz Aug 1, 2023
55267bb
support database cli
nameczz Aug 1, 2023
8141d2c
Merge pull request #36 from zilliztech/support-database
shanghaikid Aug 1, 2023
ac9ed49
add collection operations and tests
nameczz Aug 1, 2023
2854949
Merge pull request #37 from zilliztech/add-collection-operations
shanghaikid Aug 1, 2023
ccced19
add collection cli
nameczz Aug 14, 2023
3a572c8
add collection cli
nameczz Aug 14, 2023
dc321b4
Merge pull request #38 from zilliztech/collection-cli
nameczz Aug 14, 2023
09172dd
add index operation
nameczz Aug 15, 2023
7625db0
Merge pull request #40 from zilliztech/index-operation
nameczz Aug 15, 2023
8885402
add load/release/loading-progress for collection class
nameczz Aug 15, 2023
2a4b8e2
remove print
nameczz Aug 15, 2023
e2d294c
Merge pull request #41 from zilliztech/optimize-collection-operations
nameczz Aug 15, 2023
9dbf161
compelet index related cli
nameczz Aug 16, 2023
3b75922
Merge pull request #42 from zilliztech/add-index-cli
nameczz Aug 16, 2023
aeb151b
add data cli and tests
nameczz Aug 20, 2023
0bddd84
Merge pull request #43 from zilliztech/add-data-cli
shanghaikid Aug 21, 2023
790256a
support user cli and test
nameczz Aug 22, 2023
266edab
support alias operations
nameczz Aug 22, 2023
6c4ec18
remove print
nameczz Aug 22, 2023
a5faa79
Merge pull request #45 from zilliztech/support-alias-operation
nameczz Aug 22, 2023
725efba
add partition operations
nameczz Aug 22, 2023
fc07c2f
Merge branch 'main' of github.com:zilliztech/milvus_cli into add-part…
nameczz Aug 22, 2023
cd704ba
resolve conflict
nameczz Aug 22, 2023
4ab5ce8
Merge pull request #46 from zilliztech/add-partition-operations
nameczz Aug 22, 2023
5bb503d
resolve conflict
nameczz Aug 22, 2023
daefc8c
Merge pull request #44 from zilliztech/support-user-cli
nameczz Aug 22, 2023
1725c10
support partition cli
nameczz Aug 22, 2023
9e6205d
Merge pull request #47 from zilliztech/add-partition-cli
nameczz Aug 22, 2023
f43b7e8
delete alias param for connection
nameczz Aug 22, 2023
01deb3f
remove collection alias params
nameczz Aug 22, 2023
dd3f4ad
delete alias params for alias
nameczz Aug 22, 2023
87fd375
delete alias params for data
nameczz Aug 22, 2023
c6a8290
remove alias for index and fix index class
nameczz Aug 23, 2023
75af2f2
update database codes
nameczz Aug 23, 2023
70b2f9f
update user/partition codes
nameczz Aug 23, 2023
6c0183d
Merge pull request #48 from zilliztech/remove-connection-alias
nameczz Aug 23, 2023
12da447
optimize codes and support token
nameczz Aug 23, 2023
8d80705
Merge pull request #49 from zilliztech/optimize-codes
nameczz Aug 23, 2023
c32fea7
fix build path
nameczz Aug 25, 2023
567a843
Merge pull request #50 from zilliztech/fix-build
nameczz Aug 25, 2023
5ae6e7b
updater verion,readme and remove docs in repo
nameczz Aug 25, 2023
9f2cc88
Merge pull request #51 from zilliztech/update-readme
shanghaikid Aug 27, 2023
c1d0497
update setup and readme
nameczz Aug 28, 2023
998350c
Merge pull request #52 from zilliztech/update-setup
shanghaikid Aug 28, 2023
a408ef4
fix some comments
nameczz Aug 28, 2023
d8fe246
Merge pull request #53 from zilliztech/update-setup
nameczz Aug 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ __pycache__/
*.py[cod]
*$py.class
.vscode
.DS_Store

# C extensions
*.so
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@

### 🔝Install in a Python environment

#### Prerequisites

#### Prerequisites
Python >= 3.8.5

#### Install from PyPI (Recommended)

Run `pip install milvus-cli==0.3.2`
Run `pip install pymilvus==2.2.15`
Run `pip install milvus-cli==0.4.0`

#### Install from a tarball

Expand Down
986 changes: 0 additions & 986 deletions doc/en/cli_commands.md

This file was deleted.

33 changes: 0 additions & 33 deletions doc/en/cli_overview.md

This file was deleted.

72 changes: 0 additions & 72 deletions doc/en/install_cli.md

This file was deleted.

Loading