Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 14825 invoked from network); 19 Aug 2010 17:50:38 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 19 Aug 2010 17:50:38 -0000 Received: (qmail 74938 invoked by uid 500); 19 Aug 2010 17:50:38 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 74908 invoked by uid 500); 19 Aug 2010 17:50:37 -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 74900 invoked by uid 99); 19 Aug 2010 17:50:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Aug 2010 17:50:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Aug 2010 17:50:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 299E923888E8; Thu, 19 Aug 2010 17:49:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r987248 - in /cassandra/trunk: CHANGES.txt NEWS.txt Date: Thu, 19 Aug 2010 17:49:18 -0000 To: commits@cassandra.apache.org From: gdusbabek@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100819174918.299E923888E8@eris.apache.org> Author: gdusbabek Date: Thu Aug 19 17:49:17 2010 New Revision: 987248 URL: http://svn.apache.org/viewvc?rev=987248&view=rev Log: CHANGES.txt and NEWS.txt update explaining the ramifications of CASSANDRA-1377 Modified: cassandra/trunk/CHANGES.txt cassandra/trunk/NEWS.txt Modified: cassandra/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/cassandra/trunk/CHANGES.txt?rev=987248&r1=987247&r2=987248&view=diff ============================================================================== --- cassandra/trunk/CHANGES.txt (original) +++ cassandra/trunk/CHANGES.txt Thu Aug 19 17:49:17 2010 @@ -19,6 +19,8 @@ dev * rename column family mbeans. 'type' will now include either 'IndexColumnFamilies' or 'ColumnFamilies' depending on the CFS type. (CASSANDRA-1385) + * disallow invalid keyspace and column family names. This includes name that + matches a '^\w+' regex. (CASSANDRA-1377) 0.7-beta1 Modified: cassandra/trunk/NEWS.txt URL: http://svn.apache.org/viewvc/cassandra/trunk/NEWS.txt?rev=987248&r1=987247&r2=987248&view=diff ============================================================================== --- cassandra/trunk/NEWS.txt (original) +++ cassandra/trunk/NEWS.txt Thu Aug 19 17:49:17 2010 @@ -43,9 +43,11 @@ Upgrading 1) run "nodetool drain" on _each_ 0.6 node. When drain finishes (log message "Node is drained" appears), stop the process. 2) Convert your storage-conf.xml to the new cassandra.yaml using - "bin/config-converter". - 3) Stand up your cluster with the 0.7 version. - 4) Initialize your Keyspace and ColumnFamily definitions using + "bin/config-converter". + 3) Rename any of your keyspace or column family names that do not adhere + to the '^\w+' regex convention. + 4) Stand up your cluster with the 0.7 version. + 5) Initialize your Keyspace and ColumnFamily definitions using "bin/schematool import". _You only need to do this to one node_. @@ -74,6 +76,8 @@ Configuraton SimpleStrategy and OldNetworkTopologyStrategy, respectively. - RowWarningThresholdInMB replaced with in_memory_compaction_limit_in_mb - GCGraceSeconds is now per-ColumnFamily instead of global + - Keyspace and column family names that do not confirm to a '^\w+' regex + are considered illegal. JMX ---