On Thu, Dec 11, 2014 at 11:52 AM, Alexandre Rafalovitch <[email protected]> wrote: > On 11 December 2014 at 11:40, Yonik Seeley <[email protected]> wrote: >> So to Solr (server side), it looks like a single update request >> (assuming 1 thread) with a batch of multiple documents... but it was >> never actually "batched" on the client side. > > Does Solr also indexes them one-by-one as it parses them off the - > chunked - stream?
Yes, indexing is streaming (a document at a time is read off the stream and then immediately indexed). -Yonik
