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 9E600180BC for ; Tue, 30 Jun 2015 18:18:05 +0000 (UTC) Received: (qmail 21147 invoked by uid 500); 30 Jun 2015 18:18:05 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 21116 invoked by uid 500); 30 Jun 2015 18:18:05 -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 20975 invoked by uid 99); 30 Jun 2015 18:18:05 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Jun 2015 18:18:05 +0000 Date: Tue, 30 Jun 2015 18:18:05 +0000 (UTC) From: "Philip Thompson (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CASSANDRA-9689) keyspace creation fails when one node in a cluster is down. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CASSANDRA-9689?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Philip Thompson updated CASSANDRA-9689: --------------------------------------- Description: Here is the snapshot of the overall issue : whiterabbit@whiterabbit:~/cassandra/bin$ ccm create 'demo2' -v binary:2.1.7 -n 3 -s -d Current cluster is now: demo2 whiterabbit@whiterabbit:~/cassandra/bin$ ccm list demo_1node *demo2 whiterabbit@whiterabbit:~/cassandra/bin$ ccm status Cluster: 'demo2' ---------------- node1: UP node3: UP node2: UP whiterabbit@whiterabbit:~/cassandra/bin$ ccm node2 nodetool version ReleaseVersion: 2.1.7 whiterabbit@whiterabbit:~/cassandra/bin$ ccm node2 stop whiterabbit@whiterabbit:~/cassandra/bin$ ccm status Cluster: 'demo2' ---------------- node1: UP node3: UP node2: DOWN whiterabbit@whiterabbit:~/cassandra/bin$ ccm node1 cqlsh Connected to demo2 at 127.0.0.1:9042. [cqlsh 5.0.1 | Cassandra 2.1.7 | CQL spec 3.2.0 | Native protocol v3] Use HELP for help. cqlsh> describe keyspaces; system_traces system cqlsh> create keyspace training with replication={'class':'SimpleStrategy','replication_factor':1}; OperationTimedOut: errors={}, last_host=127.0.0.1 cqlsh> create keyspace training with replication={'class':'SimpleStrategy','replication_factor':1}; AlreadyExists: Keyspace 'training' already exists cqlsh> describe keyspaces; system_traces system cqlsh> > keyspace creation fails when one node in a cluster is down. > ----------------------------------------------------------- > > Key: CASSANDRA-9689 > URL: https://issues.apache.org/jira/browse/CASSANDRA-9689 > Project: Cassandra > Issue Type: Bug > Components: Core > Reporter: Roopesh > Fix For: 2.1.x > > > Here is the snapshot of the overall issue : > whiterabbit@whiterabbit:~/cassandra/bin$ ccm create 'demo2' -v binary:2.1.7 -n 3 -s -d > Current cluster is now: demo2 > whiterabbit@whiterabbit:~/cassandra/bin$ ccm list > demo_1node > *demo2 > whiterabbit@whiterabbit:~/cassandra/bin$ ccm status > Cluster: 'demo2' > ---------------- > node1: UP > node3: UP > node2: UP > whiterabbit@whiterabbit:~/cassandra/bin$ ccm node2 nodetool version > ReleaseVersion: 2.1.7 > whiterabbit@whiterabbit:~/cassandra/bin$ ccm node2 stop > whiterabbit@whiterabbit:~/cassandra/bin$ ccm status > Cluster: 'demo2' > ---------------- > node1: UP > node3: UP > node2: DOWN > whiterabbit@whiterabbit:~/cassandra/bin$ ccm node1 cqlsh > Connected to demo2 at 127.0.0.1:9042. > [cqlsh 5.0.1 | Cassandra 2.1.7 | CQL spec 3.2.0 | Native protocol v3] > Use HELP for help. > cqlsh> describe keyspaces; > system_traces system > cqlsh> create keyspace training with replication={'class':'SimpleStrategy','replication_factor':1}; > OperationTimedOut: errors={}, last_host=127.0.0.1 > cqlsh> create keyspace training with replication={'class':'SimpleStrategy','replication_factor':1}; > AlreadyExists: Keyspace 'training' already exists > cqlsh> describe keyspaces; > system_traces system > cqlsh> -- This message was sent by Atlassian JIRA (v6.3.4#6332)