Re: [CAUTION] Converting graph query to stream graph query

2019-10-20 Thread Rajeswari Natarajan
Hi Joel, Thanks for your reply. This is a little different issue. Here the root docs have parent_id as null. The parent_id of the child will be the docid of the parent. With the data above and for the query below nodes(s4, walk="1->parent_s", gather="docid_s",

Re: Help with Stream Graph

2019-10-20 Thread Rajeswari Natarajan
Thanks Joel. That fixed the problem. Regards, Rajeswari On Fri, Oct 18, 2019 at 12:50 PM Joel Bernstein wrote: > The query that is created to me looks looked good but it returns no > results. Let's just do a basic query using the select handler: > > product_s:product1 > > If this brings back

Re: solr 8.1.1 many time slower returning query results than solr 4.10.4 or solr 6.5.1

2019-10-20 Thread Russell Bahr
Hi Shawn, per your comments from before On Oct 15, 2019, 2:28 AM, Shawn Heisey wrote: > Java 12 is not recommended. It is one of the "new feature" releases > that only gets 6 months of support. We would recommend Java 8 or Java > 11. These are the versions with long term support.

Solr enabled kerberos and create collection failed

2019-10-20 Thread Lvyankui
SolrCloud mode, Solr and Zookeeper enabled kerberos, create collection failed with following command curl --negotiate -u : 'http:// noder27:8983/solr/admin/collections?action=CREATE=test01=1=1=_default=json' The error is: { "responseHeader":{ "status":0, "QTime":31818}, "failure":{

Re: solr UI collection dropdown sorting order

2019-10-20 Thread Erick Erickson
Unfortunately not, although if you’d like to add that functionality to the admin UI that’d be great. If you know the name, you can just start typing and not have to scroll. Best, Erick > On Oct 20, 2019, at 4:06 AM, Sotiris Fragkiskos wrote: > > Hi everyone! > > is there any way the

Re: WELCOME to solr-user@lucene.apache.org

2019-10-20 Thread Erick Erickson
In short, nothing that’s maintained as part of the Apache project. There may be commercial products, but I haven’t had occasion to look for one. Best, Erick > On Oct 20, 2019, at 7:42 AM, Wasim S Kazi wrote: > > Good day > > I would like to get some info or confirmation about configuring

Re: Solr Paryload example

2019-10-20 Thread Erick Erickson
You’d need to write one. Payloads are generally intended to hold numerics you can then use in a function query to factor into the score… Best, Erick > On Oct 20, 2019, at 4:57 PM, Vincenzo D'Amore wrote: > > Sorry, I just realized that I was wrong in how I'm using the payload > function. >

Solr Payload example

2019-10-20 Thread Vincenzo D'Amore
Hi all, I'm trying to understand what I did wrong with a payload query that returns error: { metadata: [ "error-class", "org.apache.solr.common.SolrException", "root-error-class", "org.apache.solr.common.SolrException" ], msg: "No payload decoder found for field: colorCode", code: 400 } I have

Re: Solr Payload example

2019-10-20 Thread Vincenzo D'Amore
Sorry, I just realized that I was wrong in how I'm using the payload function. Give that the payload function only handles a numeric (integer or float) payload, could you suggest me an alternative function that handles strings? If not, should I write one? On Sun, Oct 20, 2019 at 10:43 PM Vincenzo

Joins and text fields projection

2019-10-20 Thread Ahmed Adel
Hi, Is there a way to select text fields in a query with a join clause in Streaming Expressions or Parallel SQL? The following query: SELECT field_s, field_t FROM t1 INNER JOIN t2 ON t1.a = t2.a LIMIT 10 requires that field_t, which is of type text, have docValues enabled, which is not

RE: WELCOME to solr-user@lucene.apache.org

2019-10-20 Thread Wasim S Kazi
Good day I would like to get some info or confirmation about configuring Solr 8+ to get content from WCM (Websphere Content Management) Essentially, we have manually index data from WCM into Solr and this all works fine. We want to now automate this process, so checking is there is any well

solr UI collection dropdown sorting order

2019-10-20 Thread Sotiris Fragkiskos
Hi everyone! is there any way the collections available on the left-hand side of the solr UI can be sorted? I'm referring to the "collection selector" dropdown. But the same applies to the Collections button. The sorting seems kind of..random? Thanks in advance! Sotir

SolrCloud streaming innerJoin unexplained results

2019-10-20 Thread Joe Andaverde
I don't believe I am getting expected results when using a streaming expression that simply uses innerJoin. Here's the example: innerJoin( search(illuminate, q=(mrn:123) (*:*), fl="key,mrn", sort="mrn asc"), search(illuminate, q=(foo*), fl="key,mrn,*", sort="mrn asc"), on="mrn" )