Unless something has changed recently, you will have a memory leak if you don't atleast soft commit during the load. This is due to the in-memory tlog data used for real-time get. This in-memory tlog data is released when a new searcher is opened.
So, if you're having memory issues while bulk loading data without a soft commit, then set autoSoftCommit to an interval that balances load performance with memory retention. Joel Bernstein http://joelsolr.blogspot.com/ On Fri, Sep 30, 2022 at 12:37 PM Andy Lester <a...@petdance.com> wrote: > I can’t imagine a case where the speed in parsing the input data won’t be > dwarfed by the time spent on everything else. You’re talking about an > in-memory operation that does a ton of I/O. > > It’s not going to make a noticeable difference once way or the other. > > > I have a followup question. Is JSON parsed faster than XML by Solr > >