Return-Path: Delivered-To: apmail-cassandra-commits-archive@www.apache.org Received: (qmail 47365 invoked from network); 24 May 2010 00:45:51 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 May 2010 00:45:51 -0000 Received: (qmail 61792 invoked by uid 500); 24 May 2010 00:45:51 -0000 Delivered-To: apmail-cassandra-commits-archive@cassandra.apache.org Received: (qmail 61776 invoked by uid 500); 24 May 2010 00:45:51 -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 61768 invoked by uid 99); 24 May 2010 00:45:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 May 2010 00:45:51 +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.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 May 2010 00:45:49 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o4O0jRlb002498 for ; Mon, 24 May 2010 00:45:28 GMT Message-ID: <30062892.2881274661927894.JavaMail.jira@thor> Date: Sun, 23 May 2010 20:45:27 -0400 (EDT) From: "Jonathan Ellis (JIRA)" To: commits@cassandra.apache.org Subject: [jira] Assigned: (CASSANDRA-1073) EOFException with Cassandra.Client.get_range_slices() API In-Reply-To: <10532249.301273515870350.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CASSANDRA-1073?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jonathan Ellis reassigned CASSANDRA-1073: ----------------------------------------- Assignee: Matthew F. Dennis Matt, can you see if you can turn this into a failing system test? > EOFException with Cassandra.Client.get_range_slices() API > --------------------------------------------------------- > > Key: CASSANDRA-1073 > URL: https://issues.apache.org/jira/browse/CASSANDRA-1073 > Project: Cassandra > Issue Type: Bug > Components: Core > Affects Versions: 0.6 > Reporter: Frank Du > Assignee: Matthew F. Dennis > Fix For: 0.6.2 > > > Below is the snippet I tried to run. The keyspace is named 'Keyspac1', with only 1 column family named 'CF1'. > ColumnParent cp = new ColumnParent("CF1"); > > SlicePredicate predicate = new SlicePredicate(); > SliceRange sliceRange = new SliceRange(); > sliceRange.setStart(new byte[0]); > sliceRange.setFinish(new byte[0]); > predicate.setSlice_range(sliceRange); > > KeyRange range = new KeyRange(10); > range.setStart_key("".getBytes()); > range.setEnd_key("".getBytes()); > > client.set_keyspace(keyspace); > List slices = client.get_range_slices(cp, predicate, range, ConsistencyLevel.ONE); > Then an EOFException was spit out. For readability, it is included in the next comment. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.