Re: Solr 8 autocommit confirmation

2021-10-10 Thread Shankar R
Hi Alex, You can set the autocommit time limit to 5 seconds. From your client code, index some content without issuing explicit commit. From admin UI if you search for the content which u indexed recently you will be able to find it. It shows that Solr is inssuing autocommit automatically after 5 s

Re: Solr 8 autocommit vs client commits

2021-10-13 Thread Shankar R
Yes they will get committed as well. Commutwithin takes highest priority On Tue, Oct 12, 2021, 6:29 PM Saur, Alexandre (ELS-AMS) wrote: > Sorry for the noobie question guys, but I want to make sure I understand > the autocommit behaviour in Solr 8. > > Supposing I have an autocommit time of 5 mi

How to authenticate when using solr jdbc

2021-12-06 Thread Shankar R
Hi All, can anyone let me know how to authenticate solr (basic) when using jdbc approach.when padding uid and owd in drivermanager.getconbection zookeeper is throwing SaSl error Thanks Ravi

how to use solr streaming expressions without using zkhost

2022-09-02 Thread Shankar R
Hi All, Want to know how we can use httpSolrClient where we don't need to pass ZK HOST details for streaming expressions using solrJ client. Any sample code will really help. Regards Ravi

Re: how to use solr streaming expressions without using zkhost

2022-09-05 Thread Shankar R
Thanks a lot Joel. it works On Mon, Sep 5, 2022 at 5:36 AM Joel Bernstein wrote: > This blog explains how to use the SolrStream to send a streaming expression > to a Solr endpoint without zkhost information > > https://lucidworks.com/post/streaming-expressions-in-solrj/ > > > > > Joel Bernstein

using multiple level facets in streaming expressions

2022-09-05 Thread Shankar R
Hi, Is it possible to use mult-level facet queries in streaming expressions. Any sample will help. Regards Ravi

Re: using multiple level facets in streaming expressions

2022-09-06 Thread Shankar R
ple here: > > https://solr.apache.org/guide/8_9/search-sample.html#facet > > And also here: > > https://solr.apache.org/guide/8_9/search-sample.html#facet2d > > > Joel Bernstein > http://joelsolr.blogspot.com/ > > > On Mon, Sep 5, 2022 at 11:07 AM Shankar R w

Re: using multiple level facets in streaming expressions

2022-09-06 Thread Shankar R
Hi Joel, I am looking for nested faceted queries supported by JSON Facet API as part of streaming expressions. The above link I already checked. sth like this facet : child_facet: grand_child_facet: On Tue, Sep 6, 2022 at 3:36 PM Shankar R wrote: > Tha

Re: using multiple level facets in streaming expressions

2022-09-06 Thread Shankar R
; > On Tue, Sep 6, 2022 at 8:19 AM t sornin wrote: > > > Joel send me this a while back: > > > > https://issues.apache.org/jira/browse/SOLR-9103 > > > > You can write your own plugin to make the multiple facet stream tuples > > nested as required. &g

Re: using multiple level facets in streaming expressions

2022-09-07 Thread Shankar R
Thanks Joel.Any sample will help to try out. Regards Ravi On Wed, 7 Sep, 2022, 19:30 Joel Bernstein, wrote: > You could upack the tree from the fields in the tuples but that would be > extra work. > > Joel Bernstein > http://joelsolr.blogspot.com/ > > > On Wed, Sep 7, 2

Using substring functionality to reach field value in solt

2022-09-15 Thread Shankar R
Hi All, My solr field is defined like this It contains avalue in this format "bkgs_as_of":"2022-09-15 06:31:52 AM", When reading the value I just want to read it as 2022-09-15 and not the time value. Want to understand how can i do it in solr query. Regards Ravi

Fastest way to index data to solr

2022-09-29 Thread Shankar R
Hi, We are having nearly 70-80 millions of data which need to be indexed in solr 8.6.1. We want to choose between Java BInary format or direct JSON format. Our source data is DBMS which is a structured data. Regards Ravi