Until the data migration is done and organiztion_id is appended to document vectors we will need to rely on the provider for counting vectors.
This can count documents or vectors that VectorAdmin isn't aware of because we are reading from remote
The SQL query currently used is not great and with 50K documents results in an even larger ...IN(1,2,3,) query looking for document ids that are in document_vectors and would be easier to have a fixed organization_id key we can COUNT against since we will very easily reach the upper end of IN() parameters
Until the data migration is done and
organiztion_id
is appended todocument vectors
we will need to rely on the provider for counting vectors....IN(1,2,3,)
query looking for document ids that are indocument_vectors
and would be easier to have a fixedorganization_id
key we canCOUNT
against since we will very easily reach the upper end ofIN()
parameters