You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently utilizing the SetPayloadOperation method to update specific parts of the payload for existing points. Each SetPayloadOperation will have a single point ID. Even when using custom sharding and multiple workers, the performance of this operation is not as good as the upsert method. Theoretically, upsert should be slower since it requires pushing the full payload and vector. However, in practice, upsert is at least 5 times faster than SetPayloadOperation. I am wondering if this behavior is normal. Thank you!
The text was updated successfully, but these errors were encountered:
Hi @sebastiancojocariu97 , could you provide an example of your request?
How do you specify points?
What is the wait parameter value?
Do you use grpc or rest?
Hello!
I am currently utilizing the
SetPayloadOperation
method to update specific parts of the payload for existing points. EachSetPayloadOperation
will have a single point ID. Even when using custom sharding and multiple workers, the performance of this operation is not as good as theupsert
method. Theoretically,upsert
should be slower since it requires pushing the full payload and vector. However, in practice,upsert
is at least 5 times faster thanSetPayloadOperation
. I am wondering if this behavior is normal. Thank you!The text was updated successfully, but these errors were encountered: