Re: Right Way to Read vectors from Index

2024-02-12 Thread Michael Wechner
it is good, that you asked this question, because it made me realize, that there is some room for improvement for our own application :-) Thanks Michael Am 12.02.24 um 11:35 schrieb Uthra: @Gautam - Thanks for your response. Our leaf reader API approach is the one you mentioned. I wanted to

Re: Right Way to Read vectors from Index

2024-02-12 Thread Uwe Schindler
Hi, reading information from the inverted index (and also vectors) is always slow, because the data is not stored "as is" for easy reconsumption. To allow easy reindexing, there input data must be serialized to a "stored" field in parallel to the indexed value. Elasticearch is using the

Re: Right Way to Read vectors from Index

2024-02-12 Thread Uthra
@Gautam - Thanks for your response. Our leaf reader API approach is the one you mentioned. I wanted to make sure the best way to read vectors for our case. @Michael - Yes Michael that’s the case here. Regards, Uthra > On 12-Feb-2024, at 1:23 PM, Michael Wechner wrote: > > thanks for