We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
No response
Support Array DataType for milvus.
element_type
max_capacity
max_length
pk_field = FieldSchema(name="id", dtype=DataType.INT64, is_primary=True, auto_id=False) int_array_field = FieldSchema(name="int_array", dtype=DataType.ARRAY, element_type=DataType.INT64, max_capacity=100) str_array_field = FieldSchema(name="string_array", dtype=DataType.ARRAY, element_type=DataType.VARCHAR, max_capacity=100, max_length=100) float_vector = FieldSchema(name="float_vector", dtype=DataType.FLOAT_VECTOR, dim=dim) schema = CollectionSchema(fields=[pk_field, int_array_field, str_array_field, float_vector], enable_dynamic_field=True)
The text was updated successfully, but these errors were encountered:
/assign @xiaocai2333
Sorry, something went wrong.
xiaocai2333
No branches or pull requests
Is there an existing issue for this?
Is your feature request related to a problem? Please describe.
No response
Describe the solution you'd like
No response
Describe alternatives you've considered
No response
Anything else?
Support Array DataType for milvus.
element_type
field to represent the type of the actual element.max_capacity
. If element type is VARCHAR, it must containmax_length
.pymilvus example:
The text was updated successfully, but these errors were encountered: