Return-Path: X-Original-To: apmail-cassandra-commits-archive@www.apache.org Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A34D9923C for ; Thu, 2 Aug 2012 18:19:24 +0000 (UTC) Received: (qmail 51577 invoked by uid 500); 2 Aug 2012 18:19:24 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 51539 invoked by uid 500); 2 Aug 2012 18:19:24 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 51531 invoked by uid 500); 2 Aug 2012 18:19:24 -0000 Delivered-To: apmail-incubator-cassandra-commits@incubator.apache.org Received: (qmail 51528 invoked by uid 99); 2 Aug 2012 18:19:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2012 18:19:24 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.131] (HELO eos.apache.org) (140.211.11.131) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Aug 2012 18:19:23 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 52E00761 for ; Thu, 2 Aug 2012 18:19:03 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Thu, 02 Aug 2012 18:19:03 -0000 Message-ID: <20120802181903.31808.86345@eos.apache.org> Subject: =?utf-8?q?=5BCassandra_Wiki=5D_Update_of_=22VirtualNodes/Balance=22_by_Er?= =?utf-8?q?icEvans?= Auto-Submitted: auto-generated X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for= change notification. The "VirtualNodes/Balance" page has been changed by EricEvans: http://wiki.apache.org/cassandra/VirtualNodes/Balance?action=3Ddiff&rev1=3D= 5&rev2=3D6 Comment: shuffles as long running tasks = * "Shuffling node at a time means that for each node i for i in 0..N-1 (= where N is the cluster size), i/N of the ranges shuffled will, on average, = have been shuffled at least once already. So it's substantially less effici= ent than shuffling once, then assigning the vnodes out in one cluster-wide = pass." -- ''Jonathan Ellis''<> = + * Shuffling will entail moving a ''lot'' of data around the cluster and = so has the potential to consume a lot of disk and network I/O, and to take = a considerable amount of time. For this to be an online operation, the shu= ffle will need to operate on a lower priority basis to other streaming oper= ations, and should be expected to take days or weeks to complete. + = =3D=3D=3D Nodes / Cluster =3D=3D=3D The most straightforward method of effecting ownership is a token move (i= .e. relocating a range from one node to another). Exposing this with JMX w= ould allow implementing all of the required operations client-side. =20