Optimal size for queries?

2020-04-10 Thread Mark H. Wood
I need to pull a *lot* of records out of a core, to be statistically analyzed and the stat.s presented to the user, who is sitting at a browser waiting. So far I haven't seen a way to calculate the stat.s I need in Solr itself. It's difficult to know the size of the total result, so I'm running

Re: entity in DIH for partial update?

2020-04-10 Thread matthew sporleder
Do you mean something along the lines of this (hackish?) https://stackoverflow.com/questions/21006045/can-solr-dih-do-atomic-updates method? On Fri, Apr 10, 2020 at 10:19 AM Jörn Franke wrote: > > You could use atomic updates in DIH. However, there is a bug in > current/potentially also old

Re: entity in DIH for partial update?

2020-04-10 Thread Jörn Franke
You could use atomic updates in DIH. However, there is a bug in current/potentially also old Solr version that this leaks a searcher (which means the index data is infinitely growing until you restart the server). You can also export from the database to Jsonline, post it to the json update

entity in DIH for partial update?

2020-04-10 Thread matthew sporleder
I have an field I would like to add to my schema which is stored in a different database from my primary data. Can I use a separate entity in my DIH to update a single field of my documents? Thanks, Matt