Re: ExtendedDismaxQParser changes

2023-11-16 Thread elisabeth benoit
Thanks a lot for taking time to answer. I'll have to figure out a work around, decreasing mm is not an option for me, maybe use a boost for this extra field. Best regards, Elisabeth Le mar. 14 nov. 2023 à 12:05, Mikhail Khludnev a écrit : > Ok. Right > (one two three four five six seven)~7 mea

Re: G1GC not cleaning old gen

2023-11-16 Thread Shawn Heisey
On 11/16/23 00:14, bilal qureshi wrote: I'm running facet queries with G1GC, and Solr is crashing with OOM, not triggering GC. All caches are disabled in solrconfig.xml. The Java OutOfMemoryError exception can happen for resource depletions that are NOT memory. Until you know exactly what res

pivot vs json.facet

2023-11-16 Thread Vincenzo D'Amore
Hi all, I'm comparing pivot faceting to json sub-faceting. I read from the Yonik post about, very interesting indeed, that subfacets are superior in terms of flexibility. https://yonik.com/solr-subfacets/ I'm just curious to know what your opinion is and if in your experience there are differenc

Solr 8.11.2 - remote updates

2023-11-16 Thread Saur, Alexandre (ELS-AMS)
Hello, I have one question related to how delete calls are processed in a sharded Solr 8 collection. My setup is: 5 Nodes (NRT) 1 collection with 5 Shards Each shard has 3 replicas Each node has 3 replicas When I tried to delete a document I noticed this message in the logs: 16/11/2023, 16:35:0

Re: Solr 8.11.2 - remote updates

2023-11-16 Thread Shawn Heisey
On 11/16/23 09:38, Saur, Alexandre (ELS-AMS) wrote: When I tried to delete a document I noticed this message in the logs: 16/11/2023, 16:35:04 ERROR x:..._shard3_replica_n59 ErrorReportingConcurrentUpdateSolrClient Error when calling SolrCmdDistributor$Req: cmd=delete{_version_=-17827353375

Re: pivot vs json.facet

2023-11-16 Thread Chris Hostetter
: I'm comparing pivot faceting to json sub-faceting. JSON Faceting originally didn't support any sort of refinement -- at that point it was (IMO) really only useful for getting approximate information about the facet buckets -- it you needed hierarchical facets/stats and wanted any sort of co

facet query question

2023-11-16 Thread Vince McMahon
Hi, When working with large dataset and running a facet query, is there a way to run it in background and when the second time query run, it will be getting the result from cache? in RDBMS, there are two concepts that will allow long running query getting better chance to finish. 1) using materia

Re: facet query question

2023-11-16 Thread Andy Lester
> Does Solr have something caching results for facet queries over large > dataset? Is there example how to make facet query faster? Yes. There are many articles about query caching in Solr, plus the docs. https://solr.apache.org/guide/8_8/query-settings-in-solrconfig.html for one version

Re: facet query question

2023-11-16 Thread Mikhail Khludnev
On Fri, Nov 17, 2023 at 5:06 AM Vince McMahon wrote: > Hi, > > Does Solr have something caching results for facet queries over large > dataset? I'm not aware of anything like caching aggregated counts (facets) inside of Solr. It's up to app/client to do that if necessary. > Is there example h