Re: Slow inserts when using Solr Cloud

2014-08-04 Thread ian
.nabble.com/Slow-inserts-when-using-Solr-Cloud-tp4146087p4150963.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Slow inserts when using Solr Cloud

2014-07-28 Thread Shalin Shekhar Mangar
forwarding to replica that used too many CPU cycles inefficiently - see SOLR-6136. Tim -- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud-tp4146087p4149219.html Sent from the Solr - User mailing list

Re: Slow inserts when using Solr Cloud

2014-07-27 Thread Erick Erickson
/Slow-inserts-when-using-Solr-Cloud-tp4146087p4149219.html Sent from the Solr - User mailing list archive at Nabble.com. -- Regards, Shalin Shekhar Mangar.

Re: Slow inserts when using Solr Cloud

2014-07-26 Thread Shalin Shekhar Mangar
. Not sure if this is related but we recently fixed an issue in the area of leader forwarding to replica that used too many CPU cycles inefficiently - see SOLR-6136. Tim -- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud

Re: Slow inserts when using Solr Cloud

2014-07-25 Thread ian
that used too many CPU cycles inefficiently - see SOLR-6136. Tim -- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud-tp4146087p4149219.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Slow inserts when using Solr Cloud

2014-07-17 Thread ian
inefficiently - see SOLR-6136. Tim -- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud-tp4146087p4147645.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Slow inserts when using Solr Cloud

2014-07-16 Thread ian
using the same hashing logic as Solr, and working out in advance which shard my inserts should be sent to. Do you know whether that's an approach that others have used? Thanks again Ian -- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud

Re: Slow inserts when using Solr Cloud

2014-07-16 Thread Timothy Potter
-- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud-tp4146087p4147183.html Sent from the Solr - User mailing list archive at Nabble.com. -- Regards, Shalin Shekhar Mangar. -- View this message in context: http://lucene.472066.n3

Re: Slow inserts when using Solr Cloud

2014-07-15 Thread ian
as Solr, and working out in advance which shard my inserts should be sent to. Do you know whether that's an approach that others have used? Thanks again Ian -- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud-tp4146087p4147183.html Sent from

Re: Slow inserts when using Solr Cloud

2014-07-15 Thread Shalin Shekhar Mangar
whether that's an approach that others have used? Thanks again Ian -- View this message in context: http://lucene.472066.n3.nabble.com/Slow-inserts-when-using-Solr-Cloud-tp4146087p4147183.html Sent from the Solr - User mailing list archive at Nabble.com. -- Regards, Shalin Shekhar

Slow inserts when using Solr Cloud

2014-07-08 Thread Ian Williams (NWIS - Applications Design)
Hi I'm encountering a surprisingly high increase in response times when I insert new documents into a SolrCloud, compared with a standalone Solr instance. I have a SolrCloud set up for test and evaluation purposes. I have four shards, each with a leader and a replica, distributed over four

Re: Slow inserts when using Solr Cloud

2014-07-08 Thread Mark Miller
Updates are currently done locally before concurrently being sent to all replicas - so on a single update, you can expect 2x just from that. As for your results, it sounds like perhaps there is more overhead than we would like in the code that sends to replicas and forwards updates? Someone