Re: [SolrJ] Indexing Java Map into Solr

2015-10-09 Thread Erick Erickson
Hmmm, what does the code look like for Java? One of the cardinal sins of indexing with SolrJ is sending docs one at a time rather than as batches of at least 100 (I usually use 1,000). See: https://lucidworks.com/blog/2015/10/05/really-batch-updates-solr-2/ One technique I often use to chase this

[SolrJ] Indexing Java Map into Solr

2015-10-09 Thread Alessandro Benedetti
Hi guys, I was evaluating an Indexer application. This application takes in input a Collection of Objects that are basically Java Maps. This is for covering Solr side a big group of dynamic fields basically and avoid that complexity java side. Let's go to the point, currently the indexing