Re: A user defined request handler is failing to fetch the data.

2018-07-03 Thread Adarsh_infor
Hi Shawn, thanks that helped. I modified the searchHandler as below and it started working *:* localhost:8983/solr/FI_idx /select Regards Adarsh -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: A user defined request handler is failing to fetch the data.

2018-07-03 Thread Shawn Heisey
On 7/3/2018 3:09 AM, Adarsh_infor wrote: > the below command works . > > http://localhost:8983/solr/FI_idx/select?q=*:*&indent=true&shards=localhost:8983/solr/FI_idx > > but the same will not work with filesearch new search handler. > > http://localhost:8983/solr/FI_idx/filesearch?q=*:*&indent=t

Re: A user defined request handler is failing to fetch the data.

2018-07-03 Thread Adarsh_infor
@Erick @Shawn Adding to my previous comment. the below command works . http://localhost:8983/solr/FI_idx/select?q=*:*&indent=true&shards=localhost:8983/solr/FI_idx but the same will not work with filesearch new search handler. http://localhost:8983/solr/FI_idx/filesearch?q=*:*&indent=tru

Re: A user defined request handler is failing to fetch the data.

2018-07-03 Thread Adarsh_infor
@Shawn Heisey-2 When we say recursive shards, what does that mean? My distributed node will not have any data in it it will be just used for searching all the shards(nodes) where the documents are indexed and try to get consolidated data from it. My only problem here is if i change the to LUCENE

Re: A user defined request handler is failing to fetch the data.

2018-07-02 Thread Shawn Heisey
On 7/2/2018 12:58 AM, Adarsh_infor wrote: > Yes am going to have the shards on 6 different servers which will be later > called in my searchHandler by specifying the shards list. But for that > initially i was testing the filesearch with the single shard which was > suppose to work. I know solr c

Re: A user defined request handler is failing to fetch the data.

2018-07-01 Thread Adarsh_infor
@Erick Erickson Thanks for the response. Yes am going to have the shards on 6 different servers which will be later called in my searchHandler by specifying the shards list. But for that initially i was testing the filesearch with the single shard which was suppose to work. I know solr could

Re: A user defined request handler is failing to fetch the data.

2018-06-28 Thread Erick Erickson
At a glance, you may really be seeing recursive calls. What does the solr log (rather than the client) say is happening? Any call that comes into /filesearch will make a call to... ./filesearch perhaps? What is your goal here? You say you're "testing distributed search". But what do you mean by t

A user defined request handler is failing to fetch the data.

2018-06-27 Thread Adarsh_infor
Hi All, I was running SOLR 4.6.1 in master slave architecture on Windows machine, Now am planning to migrate that to Linux and upgrade the SOLR 6.6.3 version(Remember only the Configs and schema will be migtrated not data). In the process of doing so i had to do some changes to Schema and Config i