Answering my own question.
ContentStreamUpdateRequest (csur) needs to be within the while loop not
outside as I had it. Still not seeing any dramatic performance
improvements over perl though (the point of this exercise). Indexing
locks after about 30-45 minutes of activity, even a commit wo
This is a code fragment of how I am doing a ContentStreamUpdateRequest
using CommonHTTPSolrServer:
ContentStreamBase.URLStream csbu = new ContentStreamBase.URLStream(url);
InputStream is = csbu.getStream();
FastInputStream fis = new FastInputStream(is);
csur.addContentStream(csbu);
c