I have a large number of documents that I am trying to load into SOLR. I am about to begin bench marking this effort, but I thought I would ask here. I have the documents in JSONArrays already.
I am most concerned with ingest rate on the server. So I don't mind performing extra work on the client to speed up the server... Assuming I am using ConcurrentUpdateSolrServer, will I get better ingest performance if I convert all my documents to SolrInputDocuments before sending, or if I use the JsonRequestHandler on the server and send the JSONArrays via a ContentStreamUpdateRequest? Thanks, George