Re: Streaming Updates Using HttpSolrServer.add(Iterator) In Solr 4.3

2013-07-29 Thread Shawn Heisey
> I am indexing more than 300 million records, it takes less than 7 hours to > index all the records.. > > Send the documents in batches and also use CUSS > (ConcurrentUpdateSolrServer) > for multi threading support. > > Ex: > > ConcurrentUpdateSolrServer server= new > ConcurrentUpdateSolrServer(s

Re: Streaming Updates Using HttpSolrServer.add(Iterator) In Solr 4.3

2013-07-29 Thread SolrLover
I am indexing more than 300 million records, it takes less than 7 hours to index all the records.. Send the documents in batches and also use CUSS (ConcurrentUpdateSolrServer) for multi threading support. Ex: ConcurrentUpdateSolrServer server= new ConcurrentUpdateSolrServer(solrServer, queueSi

Streaming Updates Using HttpSolrServer.add(Iterator) In Solr 4.3

2013-07-29 Thread Paul, Terry
Hi all. We're in the midst of upgrading from Solr 1.4 to 4.3.1, and we've run into issues with memory on our client side during a mass index operation. We use the approach described on the SolrJ wiki at http://wiki.apache.org/solr/Solrj#Streaming_documents_for_an_update. In the Solr 1.4 days th