Re: Indexing RestFul Json Service

2013-12-17 Thread William Bell
There is a patch that we use in production that works great. Name all the json fields ending in _json and String type. wt=json&json.fsuffix=_json And the json will not be escaped and work properly. On Sun, Dec 15, 2013 at 10:42 AM, Alfredo Serafini wrote: > Hi Pritesh > > other two options

Re: Indexing RestFul Json Service

2013-12-15 Thread Alfredo Serafini
Hi Pritesh other two options for indexing generic json could be at the moment: 1) implement a specific json datasource for Data import handler (this should not be so complex, and it will be useful for others) 2) use httpsource, then a line entityprocessor to acquire the full json text (if you don'

Re: Indexing RestFul Json Service

2013-12-13 Thread Ahmet Arslan
Hi, Solr accepts json. In the following form :  https://svn.apache.org/repos/asf/lucene/dev/trunk/solr/example/exampledocs/books.json On Friday, December 13, 2013 9:33 PM, Pritesh Patel wrote: Does anybody know how to index Json Data coming from a RestFul service?  I see I can use the DIH to

Indexing RestFul Json Service

2013-12-13 Thread Pritesh Patel
Does anybody know how to index Json Data coming from a RestFul service? I see I can use the DIH to index xml data, but what about Json? --Pritesh