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 z
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 zero results then we know we have a problem with the
data.
Joel Bernstein
http://joelsolr.blogspot.com/
On Fri, Oct 18, 2019
Hi Joel,
Do you see anything wrong in the config or data . I am using 7.6.
Thanks,
Rajeswari
On Thu, Oct 17, 2019 at 8:36 AM Rajeswari Natarajan
wrote:
> My config is from
>
>
> https://github.com/apache/lucene-solr/tree/branch_7_6/solr/solrj/src/test-files/solrj/solr/configsets/streaming/conf
My config is from
https://github.com/apache/lucene-solr/tree/branch_7_6/solr/solrj/src/test-files/solrj/solr/configsets/streaming/conf
Thanks,
Rajeswari
On Thu, Oct 17, 2019 at 8:16 AM Rajeswari Natarajan
wrote:
> I tried below query and it returns o results
>
>
> http://localho
I tried below query and it returns o results
http://localhost:8983/solr/knr/export?{!terms+f%3Dproduct_s}product1&distrib=false&fl=basket_s,product_s&sort=basket_s+asc,product_s+asc&wt=json&version=2.2
{
"responseHeader":{"status":0},
"response":{
"numFound":0,
"docs":[]}}
Regards,
Thanks Joel.
Here is the logs for below request
curl --data-urlencode
'expr=gatherNodes(knr,walk="product1->product_s",gather="basket_s")'
http://localhost:8983/solr/knr/stream
2019-10-17 15:02:06.969 INFO (qtp952486988-280) [c:knr s:shard1
r:core_node2 x:knr_shard1_replica_n1] o.a.s.c.S.Reques
Can you show the logs from this request. There will be a Solr query that
gets sent with product1 searched against the product_s field. Let's see how
many documents that query returns.
Joel Bernstein
http://joelsolr.blogspot.com/
On Thu, Oct 17, 2019 at 1:41 AM Rajeswari Natarajan
wrote:
> Hi,