david-sitsky commented on issue #13626:
URL: https://github.com/apache/lucene/issues/13626#issuecomment-2267855215

   @benwtrent - I am calling `IndexWriterConfig.setCodec(new 
Lucene99VectorCodec())` on the codec below:
   ```
   public class Lucene99VectorCodec extends FilterCodec
   {
       public Lucene99VectorCodec()
       {
           super("Lucene99VectorCodec", new Lucene99Codec());
       }
   
       @Override
       public KnnVectorsFormat knnVectorsFormat()
       {
           return new Lucene99HnswVectorsFormat(16, 250);
       }
   }
   ```
   This was a brand new index with this codec in place.  In this index, since 
each document can be associated with multiple vectors, I do have multiple child 
documents containing the vector fields associated with a single parent document.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to