[skip ci] Add comment for the collection name resolution on benchmark (#8578)

Signed-off-by: wangting0128 <ting.wang@zilliz.com>
This commit is contained in:
wt 2021-09-26 15:07:56 +08:00 committed by GitHub
parent cf573a2caa
commit 0b05afa4e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,15 @@ def operations_parser(operations):
def collection_parser(collection_name):
"""
Resolve the collection name to obtain the corresponding configuration
e.g.:
sift_1m_128_l2
sift: type of data set
1m: size of the data inserted in the collection
128: vector dimension
l2: metric type
"""
tmp = collection_name.split("_")
# if len(tmp) != 5:
# return None