my index state is green still there are left over indexed vectors why ? #5852
Unanswered
vihariazure
asked this question in
Q&A
Replies: 1 comment 2 replies
-
10k points is a relatively low amount. In that case it's entirely possible that not all points are indexed, because the current state it is in is already fast enough. You could reduce the indexing threshold which will likely increase the number of indexed points. Though with just 10k points it'd also be fine to leave as is, and see what happens once you insert a lot more points. Note that |
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
-
hi team
below are the get collection details
i inserted 10k , after data insert , i changed the indexing_threshold=10000
i got below get collection details
status=<CollectionStatus.YELLOW: 'yellow'> vectors_count=None, indexed_vectors_count=0, points_count=10000
after 1hr i check it again. below are the details
Status: green, Indexed Vectors Count: 4000
i know when the status is green i can go for search. but the indexed vectors should equal to points_count right for ideal case.
the status is green. it means i can go for search which will drop some accuracy.
when will be the left over vectors also will be indexed.
what are the parameters or steps i need to make for getting indexed_vectors_count=points_count
Beta Was this translation helpful? Give feedback.
All reactions