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 4580110ED9 for ; Tue, 8 Oct 2013 21:28:44 +0000 (UTC) Received: (qmail 13665 invoked by uid 500); 8 Oct 2013 21:28:43 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 13590 invoked by uid 500); 8 Oct 2013 21:28:42 -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 13563 invoked by uid 99); 8 Oct 2013 21:28:42 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Oct 2013 21:28:42 +0000 Date: Tue, 8 Oct 2013 21:28:42 +0000 (UTC) From: "Jonathan Ellis (JIRA)" To: commits@cassandra.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CASSANDRA-6154) Inserts are blocked in 2.1 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-6154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13789716#comment-13789716 ] Jonathan Ellis commented on CASSANDRA-6154: ------------------------------------------- Suspect patch for 6165 will fix this too. > Inserts are blocked in 2.1 > -------------------------- > > Key: CASSANDRA-6154 > URL: https://issues.apache.org/jira/browse/CASSANDRA-6154 > Project: Cassandra > Issue Type: Bug > Reporter: Ryan McGuire > Assignee: Jonathan Ellis > Priority: Critical > Attachments: 6154.txt, 6154-v2.txt > > > With cluster sizes >1 inserts are blocked indefinitely: > {code} > $ ccm create -v git:trunk test > Fetching Cassandra updates... > Current cluster is now: test > $ ccm populate -n 2 > $ ccm start > $ ccm node1 cqlsh > Connected to test at 127.0.0.1:9160. > [cqlsh 4.0.1 | Cassandra 2.1-SNAPSHOT | CQL spec 3.1.1 | Thrift protocol 19.37.0] > Use HELP for help. > cqlsh> CREATE KEYSPACE timeline WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1}; > cqlsh> USE timeline; > cqlsh:timeline> CREATE TABLE user_events (userid text, event timestamp, value text, PRIMARY KEY (userid, event)); > cqlsh:timeline> INSERT INTO user_events (userid, event , value ) VALUES ( 'ryan', '2013-10-07', 'attempt'); > {code} > The last INSERT statement never returns.. -- This message was sent by Atlassian JIRA (v6.1#6144)