Return-Path: X-Original-To: apmail-cassandra-user-archive@www.apache.org Delivered-To: apmail-cassandra-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7C5C6CB31 for ; Mon, 24 Jun 2013 17:28:36 +0000 (UTC) Received: (qmail 92259 invoked by uid 500); 24 Jun 2013 17:28:34 -0000 Delivered-To: apmail-cassandra-user-archive@cassandra.apache.org Received: (qmail 91419 invoked by uid 500); 24 Jun 2013 17:28:28 -0000 Mailing-List: contact user-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@cassandra.apache.org Delivered-To: mailing list user@cassandra.apache.org Received: (qmail 91411 invoked by uid 99); 24 Jun 2013 17:28:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jun 2013 17:28:27 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of rcoli@eventbrite.com designates 209.85.216.179 as permitted sender) Received: from [209.85.216.179] (HELO mail-qc0-f179.google.com) (209.85.216.179) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jun 2013 17:28:21 +0000 Received: by mail-qc0-f179.google.com with SMTP id e11so6492216qcx.38 for ; Mon, 24 Jun 2013 10:28:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:x-gm-message-state; bh=GhahsXvTN/vM+fG2/KnpRVj8BnDbmnhFQ54taRkEeFI=; b=d6RgNAzXPnh5Nv1ABMi1HuOlqxoz8vac1Ork8dlQVkDjnRq+F0C7wyjFg7AbTkN7cs BZsluxs4MQsEXxVx7DzbQ7jFjRal4XsSApn+Hcc/98NlfU625GXXJx5eprPqOjP8dMC1 Q8ExQca3X/DzkP9X6+H9VVQrH4FUKgfwOG1PsSl35lLHnIWRjPTOyUIpkOFe931rs131 A5vWvdzQHgExqP5LJ/1t3Qw4HFVMLJebcGh0YcA4+ZXBaxs4YaSNXF39ilQtkbeRAj+n HFa5SciSxRu0ZMu6Vc+3S7CbzFqBzpXNBJdtmgpwvHlgMmBSqTCiFCYTacKg8RvF/HmC szVg== MIME-Version: 1.0 X-Received: by 10.49.71.141 with SMTP id v13mr10317272qeu.36.1372094879927; Mon, 24 Jun 2013 10:27:59 -0700 (PDT) Received: by 10.49.129.131 with HTTP; Mon, 24 Jun 2013 10:27:59 -0700 (PDT) In-Reply-To: References: Date: Mon, 24 Jun 2013 10:27:59 -0700 Message-ID: Subject: Re: Upgrade from 1.1.10 to 1.2.4 From: Robert Coli To: user@cassandra.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQkhwSh53hMNy9+BCIi9jgrs8q410Yjja2b+WQhPhpM8Vo+hHdyGU3gIn06+4UQZF45lhfMh X-Virus-Checked: Checked by ClamAV on apache.org On Sun, Jun 23, 2013 at 2:31 AM, Ananth Gundabattula wrote: > Looks like the cause of the error was because of not specifying num_tokens > in the cassandra.yaml file. I was under the impression that setting a value > of num_tokens will override the initial_token value . Looks like we need to > set num_tokens to 1 to get around this error. Not specifying anything causes > the above error. My understanding is that the 1.2.x behavior here is : 1) initial_token set, num_tokens set = cassandra picks the num_tokens value, ignores initial_token 2) initial_token unset, num_tokens unset = cassandra (until 2.0) picks a single token via range bisection 3) initial_token unset, num_tokens set = cassandra uses num_tokens number of vnodes Are you saying this is not the behavior you saw? =Rob