binbin
binbin
/assign @weiliu1031
/unassign @yanliang567
@zhuwenxing Is this issue reproducible stably?
When create enabled dynamic collection, the result is: (not bytes format) ``` >>> res = collection.search(vectors[:nq], "float_vector", default_search_params, limit, "float in [1, 2, 3]", output_fields=["json_field"]) >>> res[0][0] id: 441895033600555812, distance:...
@czs007 Could you please have a look? thanks.
/unassign @xiaocai2333
Verified and fixed. pymilvus: 2.4.0.dev81 milvus: master-20230711-96c987ed ``` >>> res[0][0] id: 0, distance: 0.0, entity: {'json_field': {'number': 0, 'float': 1.1111111111111112, 'int64': 1000000000000000180980893038800089, 'string': 'milvus', 'bool': True, 'list': [], 'json': {'number':...
Now is_dynamic could not be set: pymilvus: 2.4.0.dev67 milvus: master-20230602-6b1712e0 ``` >>> int64_field = FieldSchema(name="int64", dtype=DataType.INT64, is_primary=True, is_dynamic=True) >>> dim = 128 >>> float_vector = FieldSchema(name="float_vector", dtype=DataType.FLOAT_VECTOR, dim=dim) >>> schema...
@xiaocai2333 "is_dynamic" still be kept, is it necessary to keep this property?