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 158A6DA3D for ; Tue, 24 Jul 2012 14:33:36 +0000 (UTC) Received: (qmail 7716 invoked by uid 500); 24 Jul 2012 14:33:36 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 7525 invoked by uid 500); 24 Jul 2012 14:33:35 -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 7459 invoked by uid 99); 24 Jul 2012 14:33:35 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jul 2012 14:33:35 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id 9DF5C142855 for ; Tue, 24 Jul 2012 14:33:34 +0000 (UTC) Date: Tue, 24 Jul 2012 14:33:34 +0000 (UTC) From: "Pavel Yaskevich (JIRA)" To: commits@cassandra.apache.org Message-ID: <140656334.95808.1343140414651.JavaMail.jiratomcat@issues-vm> In-Reply-To: <2007476818.95141.1343126794957.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Commented] (CASSANDRA-4461) Schema no longer modifiable 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-4461?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13421441#comment-13421441 ] Pavel Yaskevich commented on CASSANDRA-4461: -------------------------------------------- Marco, can you try to apply CASSANDRA-4432 and test? I bet that is the problem... > Schema no longer modifiable > --------------------------- > > Key: CASSANDRA-4461 > URL: https://issues.apache.org/jira/browse/CASSANDRA-4461 > Project: Cassandra > Issue Type: Bug > Affects Versions: 1.1.2 > Environment: Ubuntu LTS 12.04, Java Sun Oracle 6 (jre1.6.0_33) > Reporter: Marco Matarazzo > Assignee: Pavel Yaskevich > Fix For: 1.1.3 > > Attachments: system.log > > > It seems that after a while, our keyspaces can't be modified. They accept data, read and write works, truncate works, just keyspace and every column family inside it can't be dropped, created or altered. > This happens both on our 3 nodes test cluster and on our single-node dev cluster. > With 1.1.1, a rolling restart of the cluster seemed to solve the issue. This no longer happens with 1.1.2 . > user@server:~$ cqlsh -3 -k goh_master cassandra1 > Connected to GOH Cluster at cassandra1:9160. > [cqlsh 2.2.0 | Cassandra 1.1.2 | CQL spec 3.0.0 | Thrift protocol 19.32.0] > Use HELP for help. > cqlsh:goh_master> drop columnfamily agents_blueprints; > cqlsh:goh_master> > user@server:~$ cqlsh -3 -k goh_master cassandra1 > Connected to GOH Cluster at cassandra1:9160. > [cqlsh 2.2.0 | Cassandra 1.1.2 | CQL spec 3.0.0 | Thrift protocol 19.32.0] > Use HELP for help. > cqlsh:goh_master> DESCRIBE COLUMNFAMILY agents_blueprints > CREATE TABLE agents_blueprints ( > agent_id ascii, > archetype ascii, > proto_id ascii, > PRIMARY KEY (agent_id, archetype) > ) WITH COMPACT STORAGE AND > comment='' AND > caching='KEYS_ONLY' AND > read_repair_chance=0.100000 AND > gc_grace_seconds=864000 AND > min_compaction_threshold=4 AND > max_compaction_threshold=32 AND > replicate_on_write='true' AND > compaction_strategy_class='SizeTieredCompactionStrategy' AND > compression_parameters:sstable_compression='SnappyCompressor'; > cqlsh:goh_master> -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira