solrconfig.xml in riak

2016-04-26 Thread Fasil K
Hello Everyone, Do any one know how we can update the solrconfig.xml file for solr in riak search? The issue is I need to change a date format from '-MM-DD' format to '-MM-DDThh:mm:ssZ' for indexing . ( Cant index 'YYY-MM-DD' format directly to solr.TrieDateField ) . I am planning to use

Re: solrconfig.xml in riak

2016-04-26 Thread Fred Dushin
Hi Fasil, Riak does not provide any administrative operations for this file. You can, however, edit the file for each Solr core on each riak node. You will find it under: /yz//conf You will need to restart either riak on that node, the Solr on that node, or the Yokozuna application on that

Re: solrconfig.xml in riak

2016-04-26 Thread Luke Bakken
Fasil - As Fred pointed out, editing this file is not a simple matter. I recommend providing the date you need to be indexed to Solr in the expected format. Generally I do so by providing another accessor for the date that does the correct conversion. -- Luke Bakken Engineer lbak...@basho.com O

Solr http endpoint and POST

2016-04-26 Thread Alexander Popov
Does it possible? if yes - which encoding? form-data or multipart? if no - does it possible to enlarge GET query length? (looks like maximum is around 6500) ___ riak-users mailing list riak-users@lists.basho.com http://lists.basho.com/mailman/listinfo/r

Re: Solr http endpoint and POST

2016-04-26 Thread Fred Dushin
Hi Alexander, Do you mean, is it possible to run a Yokozuna query through Riak using a HTTP POST, instead of a GET? Have you tried the pattern used here? https://github.com/basho/yokozuna/blob/2.1.2/riak_test/yz_search_http.erl#L68