Graph query from A to X[n] when number of hops is not known

2021-03-03 Thread Sravani Kambhampati
Hi, How to graph query from A to X where number of hops is not known, but when graph query for each hop remains same. For example: If my graph looks like this, id:A -> pk:A1 -> tgt:A2 id:B -> pk:B1 -> tgt:B2 ... id:X To get from A to B, 1. We query A to A2 using (id->pk) + (pk -> tgt)

Re: wordpress anyone?

2021-03-03 Thread Gora Mohanty
On Thu, 4 Mar 2021 at 01:50, dmitri maziuk wrote: > Hi all, > > does anyone use Solr with WP? It seems there is one for-pay-only > offering and a few defunct projects from a decade ago... a great web > search engine is particularly useful if it can actually be used in a > client. > > So has

wordpress anyone?

2021-03-03 Thread dmitri maziuk
Hi all, does anyone use Solr with WP? It seems there is one for-pay-only offering and a few defunct projects from a decade ago... a great web search engine is particularly useful if it can actually be used in a client. So has anyone heard about any active WP integration projects other than

Solr NRT Replicas Out of Sync

2021-03-03 Thread Anshuman Singh
Hi, In our Solr 7.4 cluster, we have noticed that some replicas of some of our Collections are out of sync, the slave replica has more number of records than the leader. This is resulting in different number of records on subsequent queries on the same Collection. Commit is also not helping in

Parallel SQL Interface and 'qt'

2021-03-03 Thread Jostein Elvaker Haande
Hi, I've just started to look into the Parallel SQL interface available in SOLR. I've done some tests across a few collections, and it works fairly well. However I've run into an issue with a few collections where the SQL interface does not return any data. Now according to the documentation, it

RE: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Subhajit Das
Thanks. This would be very helpful. From: Tomás Fernández Löbbe Sent: 04 March 2021 12:32 AM To: solr-user@lucene.apache.org Subject: Re: Programmatic Basic Auth on CloudSolrClient Maybe something like this (I omitted a lot of

Re: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Tomás Fernández Löbbe
Maybe something like this (I omitted a lot of things you'll have to do, like passing zk or the list of hosts): static class CustomCloudSolrClient extends CloudSolrClient { protected CustomCloudSolrClient(CustomCloudSolrClientBuilder builder) { super(builder); } @Override public

RE: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Subhajit Das
Hi Thomas, Thanks. Can you please also share a sample of code to configure the client with your workaround? From: Tomás Fernández Löbbe Sent: 04 March 2021 12:05 AM To: solr-user@lucene.apache.org Subject: Re: Programmatic Basic

Re: NPE in QueryComponent.mergeIds when using timeAllowed and sorting SOLR 8.7

2021-03-03 Thread Tomás Fernández Löbbe
Patch looks good to me. Since it's a bugfix it can be committed to 8_8 branch and released on the next bugfix release, though I don't think it should trigger one. In the meantime, if you can patch your environment and confirm that it fixes your problem, that's a good comment to leave in

Amazon Sponsor Product(Ads) Search team is looking for talents with expertise in Solr/Lucene at all levels

2021-03-03 Thread pxiong
Hi folks, Are you interested in Amazon’s Advertising (that employs state of art solutions involving Search, Digital Advertising, AWS technologies etc) but wondering which team can best leverage your expertise in Solr/Lucene? Please continue to read: My team is Sponsored Search Delivery

Re: Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Tomás Fernández Löbbe
As far as I know the current OOTB options are system properties or per-request (which would allow you to use different per collection, but probably not ideal if you do different types of requests from different parts of your code). A workaround (which I've used in the past) is to have a custom

Programmatic Basic Auth on CloudSolrClient

2021-03-03 Thread Subhajit Das
Hi There, Is there any way to programmatically set basic authentication credential on CloudSolrClient? The only documentation available is to use system property. This is not useful if two collection required two separate set of credentials and they are parallelly accessed. Thanks in

Solr backup no longer writes to a UNC path

2021-03-03 Thread Gell-Holleron, Daniel
Hi there, We've upgraded from Solr 7.7.1 to Solr 8.8.1 (running on Windows Operating System) and I've noticed that when running a Solr backup, it will no longer allow me to write to a UNC path. Is this something that has been purposely changed? I've noticed a new system property called

Increase in response time in case of collapse queries.

2021-03-03 Thread Parshant Kumar
Hi all, We have implemented collapse queries in place of grouped queries on our production solr. As mentioned in solr documentation collapse queries are recommended in place of grouped queries in terms of performance . But after switching to collapsed queries from grouped queries response time of

How can I get dynamicField in Solr 6.1.0.

2021-03-03 Thread vishal patel
I am using Solr 6.1.0. We have 2 shards and each has one replica. My schema field is below in one collection My data like FORM1065678510875540 2021-03-03T23:59:59Z false false £ No fdsfsfsfsf Yes 2021-03-03 yes 2021-03-01T06:55:29 12:00 PM no

FW: Graph traversal when nodes are indirectly connected with references

2021-03-03 Thread Sravani Kambhampati
I have a graph with disjoint sets of nodes connected indirectly with a reference as shown below. Given an id is it possible to get the leaf node when the depth is unknown? [ { id: A, child: { ref: B } }, { id: B, child: { ref: C } }, { id: C, child: { ref: D } }, . . {