Re: how to quickly export data from SolrCloud

2013-05-06 Thread Kevin Osborn
This is actually something I will do quite frequently. I basically export from Solr into a CSV file as part of a workflow sequence. CSV is nice and fast, but does not have the ZooKeeper integration that I like with SolrJ. On Mon, May 6, 2013 at 10:11 AM, Shawn Heisey wrote: > On 5/6/2013 10:48

Re: how to quickly export data from SolrCloud

2013-05-06 Thread Shawn Heisey
On 5/6/2013 10:48 AM, Kevin Osborn wrote: I am looking to export a large amount of data from Solr. This export will be done by a Java application and then written to file. Initially, I was thinking of using direct HTTP calls and using the CSV response writer. And then my Java application can quic

how to quickly export data from SolrCloud

2013-05-06 Thread Kevin Osborn
I am looking to export a large amount of data from Solr. This export will be done by a Java application and then written to file. Initially, I was thinking of using direct HTTP calls and using the CSV response writer. And then my Java application can quickly parse each line from a stream. But, wit