jtibshirani opened a new issue, #11858:
URL: https://github.com/apache/lucene/issues/11858

   I ran a test on Lucene 9.4 where I tried to force merge 2 million vectors 
with
   dimension 768. It failed with
   
   ```
   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 to an int: #1054. This error doesn't occur before version 
9.4.


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