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 a Vector Database Service to allow stages to read and write to VDBs #1225

Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5d7b3cb
Added milvus vdb prototype impl
bsuryadevara Sep 26, 2023
4807f3d
Added milvus vdb prototype impl
bsuryadevara Sep 26, 2023
b1f94fb
Added llamaindex and langchain prototypes
bsuryadevara Sep 27, 2023
d912645
doc updates
bsuryadevara Sep 27, 2023
4ecd37f
updates to milvus vd service
bsuryadevara Sep 30, 2023
c18125a
updated search and upsert functions
bsuryadevara Oct 2, 2023
a6ef60e
Added write_to_vector_db stage
bsuryadevara Oct 3, 2023
7389542
Added tests to get started
bsuryadevara Oct 3, 2023
3a31cee
Added tests to get started
bsuryadevara Oct 3, 2023
4cfba55
Added MilvusClient extension class to support missing functions
bsuryadevara Oct 4, 2023
b83f517
Added tests for Milvus vector database serivce
bsuryadevara Oct 4, 2023
b7fee57
Added tests for Milvus vector database service
bsuryadevara Oct 4, 2023
cde18b2
Added tests for Milvus vector database service
bsuryadevara Oct 4, 2023
c9316c0
Added milvus lite to pipeline tests
bsuryadevara Oct 9, 2023
36f1f18
Added tests with milvus lite
bsuryadevara Oct 11, 2023
2f24cc2
Updated Milvus VDB tests
bsuryadevara Oct 11, 2023
9670c97
Merge remote-tracking branch 'upstream/branch-23.11' into 1177-fea-ad…
bsuryadevara Oct 11, 2023
e4b8a02
Updated Milvus VDB tests
bsuryadevara Oct 11, 2023
a5e742e
Added tests with milvus lite
bsuryadevara Oct 11, 2023
3d0e01b
Renamed a file
bsuryadevara Oct 11, 2023
cd52a5f
Feedback changes
bsuryadevara Oct 12, 2023
5ce3402
Feedback changes
bsuryadevara Oct 12, 2023
9e6989a
Removed register stage decorator
bsuryadevara Oct 12, 2023
cf327b5
Ignore pymilvus in the docs
bsuryadevara Oct 13, 2023
a6a6f43
Update variable names
bsuryadevara Oct 13, 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
1 change: 1 addition & 0 deletions docker/conda/environments/cuda11.8_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@ dependencies:
- databricks-connect
- pytest-kafka==0.6.0
- pymilvus==2.3.1
- milvus
bsuryadevara marked this conversation as resolved.
Show resolved Hide resolved
File renamed without changes.
41 changes: 36 additions & 5 deletions morpheus/service/milvus_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,24 @@

logger = logging.getLogger(__name__)


def handle_exceptions(method_name: str, error_message: str):
# Milvus data type mapping dictionary
MILVUS_DATA_TYPE_MAP = {
"int8": pymilvus.DataType.INT8,
"int16": pymilvus.DataType.INT16,
"int32": pymilvus.DataType.INT32,
"int64": pymilvus.DataType.INT64,
"bool": pymilvus.DataType.BOOL,
"float": pymilvus.DataType.FLOAT,
"double": pymilvus.DataType.DOUBLE,
"binary_vector": pymilvus.DataType.BINARY_VECTOR,
"float_vector": pymilvus.DataType.FLOAT_VECTOR,
"string": pymilvus.DataType.STRING,
"varchar": pymilvus.DataType.VARCHAR,
"json": pymilvus.DataType.JSON,
}


def handle_exceptions(method_name: str, error_message: str) -> typing.Callable:
"""
Decorator function to handle exceptions and log errors.

Expand All @@ -33,7 +49,7 @@ def handle_exceptions(method_name: str, error_message: str):

Returns
-------
Callable
typing.Callable
Decorated function.
"""

Expand Down Expand Up @@ -226,7 +242,22 @@ def drop_index(self, collection_name: str, field_name: str, index_name: str) ->
conn = self._get_connection()
conn.drop_index(collection_name=collection_name, field_name=field_name, index_name=index_name)

@handle_exceptions("get_collection", "Error getting collection")
def get_collection(self, collection_name: str, **kwargs: dict[str, typing.Any]) -> str:
@handle_exceptions("get_collection", "Error getting collection object")
def get_collection(self, collection_name: str, **kwargs: dict[str, typing.Any]) -> pymilvus.Collection:
"""
Returns `pymilvus.Collection` object associated with the given collection name.

Parameters
----------
collection_name : str
Name of the collection to delete from.
**kwargs : dict
Additional keyword arguments to get Collection instance.

Returns
-------
pymilvus.Collection
Returns pymilvus Collection instance.
"""
collection = pymilvus.Collection(name=collection_name, using=self._using, **kwargs)
return collection
Loading
Loading