Re: apache-lucene blowing up with large file

2025-02-28 Thread Daniel Cerqueira
> On Fri, Feb 28, 2025 at 10:30 AM Daniel Cerqueira > wrote: > >> Hi. I have apache-lucene version 10.1.0: >> ``` >> $ pacman -Qs apache-lucene >> local/apache-lucene 10.1.0-1 >> Apache Lucene is a high-performance, full-featured text search engine >> library written entirely in Java. >> ``` >

Re: apache-lucene blowing up with large file

2025-02-28 Thread Hrvoje Lončar
That's a school example of integer overflow. Perhaps Lucene is not designed to work with such a large single files. On Fri, 28 Feb 2025, 10:50 Dawid Weiss, wrote: > Split your large file into smaller fragments and index each fragment as a > document. > > D. > > On Fri, Feb 28, 2025 at 10:30 AM D

Re: apache-lucene blowing up with large file

2025-02-28 Thread Dawid Weiss
Split your large file into smaller fragments and index each fragment as a document. D. On Fri, Feb 28, 2025 at 10:30 AM Daniel Cerqueira wrote: > Hi. I have apache-lucene version 10.1.0: > ``` > $ pacman -Qs apache-lucene > local/apache-lucene 10.1.0-1 > Apache Lucene is a high-performance,

apache-lucene blowing up with large file

2025-02-28 Thread Daniel Cerqueira
Hi. I have apache-lucene version 10.1.0: ``` $ pacman -Qs apache-lucene local/apache-lucene 10.1.0-1 Apache Lucene is a high-performance, full-featured text search engine library written entirely in Java. ``` I am trying to build a lucene index for a large file. ``` $ ll total 2,3G -rw---