On 8/13/2014 5:42 AM, tuxedomoon wrote: > Have you used a queue to intercept queries and if so what was your > implementation? We are indexing huge amounts of data from 7 SolrJ instances > which run independently, so there's a lot of concurrent indexing.
On my setup, the queries come from a java webapp that uses SolrJ, which is running on multiple servers in a cluster. The updates come from a custom SolrJ application that I wrote. There is no queue, Solr is more than capable of handling the load that we give it. Full rebuilds are done with the dataimport handler. The source of all our Solr data is a MySQL database. Thanks, Shawn