Application of consistency level during collection creation versus query/search time #40392
Unanswered
deepns
asked this question in
Q&A and General discussion
Replies: 2 comments 2 replies
-
Sure, consistency level can be overridden by query/search.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks. Are the timestamps mentioned in unit of seconds? For e..g https://github.com/milvus-io/milvus-sdk-go/blob/master/client/meta_cache.go#L9C1-L14C2 // Magical timestamps for communicating with server
const (
StrongTimestamp uint64 = 0
EventuallyTimestamp uint64 = 1
BoundedTimestamp uint64 = 2
) Depending on the consistency level provided to the search/query request, GuaranteeT is set to one of the above. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If I create a collection with some consistency level (say default level of Bounded Staleness or something else), can the consistency level be overridden with a higher or lower consistency level during a query/search operation? Is there any restriction that consistency level specified in the query/search has to be same or lesser than what is specified during collection creation?
Beta Was this translation helpful? Give feedback.
All reactions