-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add cases for async milvus client
Signed-off-by: ThreadDao <[email protected]>
- Loading branch information
Showing
9 changed files
with
639 additions
and
19 deletions.
There are no files selected for viewing
176 changes: 176 additions & 0 deletions
176
tests/python_client/base/async_milvus_client_wrapper.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
import asyncio | ||
import sys | ||
from typing import Optional, List, Union, Dict | ||
|
||
from pymilvus import ( | ||
AsyncMilvusClient, | ||
AnnSearchRequest, | ||
RRFRanker, | ||
) | ||
from pymilvus.orm.types import CONSISTENCY_STRONG | ||
from pymilvus.orm.collection import CollectionSchema | ||
|
||
from check.func_check import ResponseChecker | ||
from utils.api_request import api_request, logger_interceptor | ||
|
||
|
||
class AsyncMilvusClientWrapper: | ||
async_milvus_client = None | ||
|
||
def __init__(self, active_trace=False): | ||
self.active_trace = active_trace | ||
|
||
def init_async_client(self, uri: str = "http://localhost:19530", | ||
user: str = "", | ||
password: str = "", | ||
db_name: str = "", | ||
token: str = "", | ||
timeout: Optional[float] = None, | ||
active_trace=False, | ||
check_task=None, check_items=None, | ||
**kwargs): | ||
self.active_trace = active_trace | ||
|
||
""" In order to distinguish the same name of collection """ | ||
func_name = sys._getframe().f_code.co_name | ||
res, is_succ = api_request([AsyncMilvusClient, uri, user, password, db_name, token, | ||
timeout], **kwargs) | ||
self.async_milvus_client = res if is_succ else None | ||
check_result = ResponseChecker(res, func_name, check_task, check_items, is_succ, **kwargs).run() | ||
return res, check_result | ||
|
||
@logger_interceptor() | ||
async def create_collection(self, | ||
collection_name: str, | ||
dimension: Optional[int] = None, | ||
primary_field_name: str = "id", # default is "id" | ||
id_type: str = "int", # or "string", | ||
vector_field_name: str = "vector", # default is "vector" | ||
metric_type: str = "COSINE", | ||
auto_id: bool = False, | ||
timeout: Optional[float] = None, | ||
schema: Optional[CollectionSchema] = None, | ||
index_params=None, | ||
**kwargs): | ||
kwargs["consistency_level"] = kwargs.get("consistency_level", CONSISTENCY_STRONG) | ||
|
||
return await self.async_milvus_client.create_collection(collection_name, dimension, | ||
primary_field_name, | ||
id_type, vector_field_name, metric_type, | ||
auto_id, | ||
timeout, schema, index_params, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def drop_collection(self, collection_name: str, timeout: Optional[float] = None, **kwargs): | ||
return await self.async_milvus_client.drop_collection(collection_name, timeout, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def load_collection(self, collection_name: str, timeout: Optional[float] = None, **kwargs): | ||
return await self.async_milvus_client.load_collection(collection_name, timeout, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def create_index(self, collection_name: str, index_params, timeout: Optional[float] = None, | ||
**kwargs): | ||
return await self.async_milvus_client.create_index(collection_name, index_params, timeout, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def insert(self, | ||
collection_name: str, | ||
data: Union[Dict, List[Dict]], | ||
timeout: Optional[float] = None, | ||
partition_name: Optional[str] = "", | ||
**kwargs): | ||
return await self.async_milvus_client.insert(collection_name, data, timeout, partition_name, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def upsert(self, | ||
collection_name: str, | ||
data: Union[Dict, List[Dict]], | ||
timeout: Optional[float] = None, | ||
partition_name: Optional[str] = "", | ||
**kwargs): | ||
kwargs["consistency_level"] = kwargs.get("consistency_level", CONSISTENCY_STRONG) | ||
|
||
return await self.async_milvus_client.upsert(collection_name, data, timeout, partition_name, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def search(self, | ||
collection_name: str, | ||
data: Union[List[list], list], | ||
filter: str = "", | ||
limit: int = 10, | ||
output_fields: Optional[List[str]] = None, | ||
search_params: Optional[dict] = None, | ||
timeout: Optional[float] = None, | ||
partition_names: Optional[List[str]] = None, | ||
anns_field: Optional[str] = None, | ||
**kwargs): | ||
return await self.async_milvus_client.search(collection_name, data, | ||
filter, | ||
limit, output_fields, search_params, | ||
timeout, | ||
partition_names, anns_field, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def hybrid_search(self, | ||
collection_name: str, | ||
reqs: List[AnnSearchRequest], | ||
ranker: RRFRanker, | ||
limit: int = 10, | ||
output_fields: Optional[List[str]] = None, | ||
timeout: Optional[float] = None, | ||
partition_names: Optional[List[str]] = None, | ||
**kwargs): | ||
return await self.async_milvus_client.hybrid_search(collection_name, reqs, | ||
ranker, | ||
limit, output_fields, | ||
timeout, partition_names, **kwargs) | ||
|
||
@logger_interceptor() | ||
async def query(self, | ||
collection_name: str, | ||
filter: str = "", | ||
output_fields: Optional[List[str]] = None, | ||
timeout: Optional[float] = None, | ||
ids: Optional[Union[List, str, int]] = None, | ||
partition_names: Optional[List[str]] = None, | ||
**kwargs): | ||
return await self.async_milvus_client.query(collection_name, filter, | ||
output_fields, timeout, | ||
ids, partition_names, | ||
**kwargs) | ||
|
||
@logger_interceptor() | ||
async def get(self, | ||
collection_name: str, | ||
ids: Union[list, str, int], | ||
output_fields: Optional[List[str]] = None, | ||
timeout: Optional[float] = None, | ||
partition_names: Optional[List[str]] = None, | ||
**kwargs): | ||
return await self.async_milvus_client.get(collection_name, ids, | ||
output_fields, timeout, | ||
partition_names, | ||
**kwargs) | ||
|
||
@logger_interceptor() | ||
async def delete(self, | ||
collection_name: str, | ||
ids: Optional[Union[list, str, int]] = None, | ||
timeout: Optional[float] = None, | ||
filter: Optional[str] = None, | ||
partition_name: Optional[str] = None, | ||
**kwargs): | ||
return await self.async_milvus_client.delete(collection_name, ids, | ||
timeout, filter, | ||
partition_name, | ||
**kwargs) | ||
|
||
@classmethod | ||
def create_schema(cls, **kwargs): | ||
kwargs["check_fields"] = False # do not check fields for now | ||
return CollectionSchema([], **kwargs) | ||
|
||
@logger_interceptor() | ||
async def close(self, **kwargs): | ||
return await self.async_milvus_client.close(**kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.