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 650E7D46A for ; Mon, 30 Jul 2012 14:37:07 +0000 (UTC) Received: (qmail 34604 invoked by uid 500); 30 Jul 2012 14:37:04 -0000 Delivered-To: apmail-cassandra-user-archive@cassandra.apache.org Received: (qmail 34576 invoked by uid 500); 30 Jul 2012 14:37:04 -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 34561 invoked by uid 99); 30 Jul 2012 14:37:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jul 2012 14:37:04 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [209.85.215.172] (HELO mail-ey0-f172.google.com) (209.85.215.172) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jul 2012 14:36:55 +0000 Received: by eaaa11 with SMTP id a11so1131909eaa.31 for ; Mon, 30 Jul 2012 07:36:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding:x-gm-message-state; bh=tt/AfQvOVUPuVvZXnhJP8WeKs32xnJ3nDrCZ5gpk1eg=; b=hM6D5RCTMqUYtXIKBzZMbJgxILTPk/HMWytOgXJ8uX5x6nIpLfGW1fLMb8bB9PajdH JVxuPyXlGzP3IJqF0Te6IH1i84LdO1h/k5LW3us2/ArtH9V/Ma/18y+g/UAPNgTv3ab1 e16Ba7WX+uPuERTgUJAm7rNCo0AHRUyhIFfvn7MI0KwUVWp6ozoK8shY7GW9goq57KMQ nFSNfSmi+Jdno7YmOIFVMgzpBicFhLkG79MCq58DDULIpalROzBCaU+Re8twey16igGB FcoaU4DtrdVjy/2+8pYKyW12OtbxNraNSfLo/iZDglfsA17smqTahr81660UcRBpz/Xl mU/g== Received: by 10.14.210.132 with SMTP id u4mr11903731eeo.6.1343658995463; Mon, 30 Jul 2012 07:36:35 -0700 (PDT) Received: from [192.168.1.62] (78.128.126.78.rev.sfr.net. [78.126.128.78]) by mx.google.com with ESMTPS id c7sm28893939eem.9.2012.07.30.07.36.34 (version=SSLv3 cipher=OTHER); Mon, 30 Jul 2012 07:36:34 -0700 (PDT) Message-ID: <50169BF0.6070301@restlet.com> Date: Mon, 30 Jul 2012 16:36:32 +0200 From: Thierry Templier User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: user@cassandra.apache.org Subject: Problem when deleting a keyspace Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQkPYoIJBt2Fp2/N5CHqZ9cGBks6YSVFcEA5TSTNQNiNxXBzpkdPgOGetYaRtH/UKbPDT9go Hello, I have a problem when trying to delete a keyspace using cqlsh. It seems to remain existing even after executing a drop keyspace command: cqlsh> use teststore; cqlsh:teststore> drop keyspace teststore; cqlsh:teststore>describe keyspace teststore; CREATE KEYSPACE teststore WITH strategy_class = 'SimpleStrategy' AND strategy_options:replication_factor = '3'; USE teststore; CREATE TABLE TestEntity ( pk text PRIMARY KEY, name text ) WITH comment='' AND comparator=text AND read_repair_chance=0.100000 AND gc_grace_seconds=864000 AND default_validation=text 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'; Is there something else to do in order to actually delete the keyspace? Thanks very much for your help! Thierry