-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
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
[Feature]: More informative error messages on inserting to collection #16536
Comments
@jmugan Good advice! |
Emmm, feel free to send pull request, the current error message is confusing~ |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
keep it open |
See also: milvus-io/milvus#16536, milvus-io#914 Signed-off-by: XuanYang-cn <[email protected]>
See also: milvus-io/milvus#16536, milvus-io#914 Signed-off-by: XuanYang-cn <[email protected]>
See also: milvus-io/milvus#16536, #914 Signed-off-by: XuanYang-cn <[email protected]> Signed-off-by: XuanYang-cn <[email protected]>
fixed at pymilvus==2.2.0, Feel free to reopen this if anything similar occurs again |
Is there an existing issue for this?
Is your feature request related to a problem? Please describe.
Inserting vectors into a collection requires a lot of fumbling in the dark.
Describe the solution you'd like.
My vectors are in numpy and I have to convert them to a list, but I keep getting errors like
pymilvus.orm.exceptions.DataTypeNotSupportException: <DataTypeNotSupportException: (code=0, message=Data type is not support.)>
orpymilvus.orm.exceptions.SchemaNotReadyException: <SchemaNotReadyException: (code=0, message=The types of schema and data do not match.)>
.It reminds me of the matrix size mismatch problem in deep learning, but PyTorch and TensorFlow will say something like "expected xyz" and got "xyk" to help clue you in on what is going on.
Describe an alternate solution.
No response
Anything else? (Additional Context)
No response
The text was updated successfully, but these errors were encountered: