jtibshirani opened a new pull request, #11861:
URL: https://github.com/apache/lucene/pull/11861

   When reading large segments, the vectors format can fail with a validation
   error:
   
   ```
   java.lang.IllegalStateException: Vector data length 3070061568 not matching
   size=999369 * dim=768 * byteSize=4 = -1224905728
   ```
   
   The problem is that we use an integer to represent the size, which is too 
small
   to hold it. The bug snuck in during the work to enable int8 values, which
   switched a long value to an int.
   
   Closes #11858.


-- 
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