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

Add Milvus integration for vector create and search #1269

Merged
merged 27 commits into from
Oct 27, 2023
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9fa1266
Added Milvus integration for vector create and search
RichardZhangRZ Oct 9, 2023
2793799
Merge branch 'staging' into milvus-integration
RichardZhangRZ Oct 9, 2023
0459817
Added docs and switched to using provided values for Milvus
RichardZhangRZ Oct 10, 2023
f1c6e6c
Fixed merge conflicts
RichardZhangRZ Oct 10, 2023
02d6d24
Skip Milvus integration test
RichardZhangRZ Oct 10, 2023
cc72ac5
Removed unnecessary required param
RichardZhangRZ Oct 10, 2023
f6d3202
Fixed linter errors
RichardZhangRZ Oct 10, 2023
11d9bc8
Fixed doc issues
RichardZhangRZ Oct 10, 2023
400aed6
Some quick changes
RichardZhangRZ Oct 10, 2023
8d69263
Removed value
RichardZhangRZ Oct 10, 2023
8965a8e
Merge branch 'staging' into milvus-integration
RichardZhangRZ Oct 16, 2023
3444f17
Added linting suppression
RichardZhangRZ Oct 17, 2023
a12c4ee
test commit
RichardZhangRZ Oct 17, 2023
1c17276
Added more words to diciontary
RichardZhangRZ Oct 17, 2023
4815828
Temp change
RichardZhangRZ Oct 17, 2023
0e38d3b
Formatting
RichardZhangRZ Oct 17, 2023
d0ef3e7
Revert "Temp change"
RichardZhangRZ Oct 17, 2023
410361b
Skip Milvus installation for testing:
RichardZhangRZ Oct 18, 2023
a71dd5d
Resolved merge conflicts
RichardZhangRZ Oct 23, 2023
790dc02
adopted to configuration management changes
RichardZhangRZ Oct 24, 2023
b7b5cb6
Add skip marker
RichardZhangRZ Oct 24, 2023
3e77b2e
Add temp change
RichardZhangRZ Oct 24, 2023
d67371a
Revert "Add temp change"
RichardZhangRZ Oct 24, 2023
e578ed0
formatting
RichardZhangRZ Oct 24, 2023
c5ea4e4
Merge branch 'staging' into milvus-integration
xzdandy Oct 27, 2023
c0206b1
Remove milvus from circle ci installation
xzdandy Oct 27, 2023
15b4791
Update the documentation to use the new `SET` statement
xzdandy Oct 27, 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
Prev Previous commit
Update the documentation to use the new SET statement
  • Loading branch information
xzdandy committed Oct 27, 2023
commit 15b47912977e2c1afd7e1bcaa81c95690b1aefbd
12 changes: 9 additions & 3 deletions docs/source/reference/vector_databases/milvus.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,17 @@ If you are running it locally, the Milvus instance should be running on ``http:/
* `MILVUS_DB_NAME` is the name of the database to be used. This will default to the `default` database if not provided.
* `MILVUS_TOKEN` is the authorization token for the Milvus instance.

The above values can either be set in the evadb.yml config file, or in the os environment fields "MILVUS_URI", "MILVUS_USER", "MILVUS_PASSWORD", "MILVUS_DB_NAME", and "MILVUS_TOKEN"
The above values can either be set via the ``SET`` statement, or in the os environment fields "MILVUS_URI", "MILVUS_USER", "MILVUS_PASSWORD", "MILVUS_DB_NAME", and "MILVUS_TOKEN"


.. code-block:: sql

SET MILVUS_URI = 'http://localhost:19530';


Create Index
-----------------

.. code-block:: text
.. code-block:: sql

CREATE INDEX index_name ON table_name (data) USING MILVUS;
CREATE INDEX index_name ON table_name (data) USING MILVUS;