mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 12:29:36 +08:00
[skip ci] Add new func of benchmark (#11244)
Signed-off-by: wangting0128 <ting.wang@zilliz.com>
This commit is contained in:
parent
23941954b1
commit
aa892b18eb
@ -148,6 +148,15 @@ def get_server_tag(deploy_params):
|
||||
return server_tag
|
||||
|
||||
|
||||
def dict_update(source, target):
|
||||
for key, value in source.items():
|
||||
if isinstance(value, dict) and key in target:
|
||||
dict_update(source[key], target[key])
|
||||
else:
|
||||
target[key] = value
|
||||
return target
|
||||
|
||||
|
||||
def search_param_analysis(vector_query, filter_query):
|
||||
""" Search parameter adjustment, applicable pymilvus version >= 2.0.0rc7.dev24 """
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user