Return-Path: Delivered-To: apmail-cassandra-user-archive@www.apache.org Received: (qmail 77696 invoked from network); 1 Dec 2010 23:07:07 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Dec 2010 23:07:07 -0000 Received: (qmail 65437 invoked by uid 500); 1 Dec 2010 23:07:02 -0000 Delivered-To: apmail-cassandra-user-archive@cassandra.apache.org Received: (qmail 65344 invoked by uid 500); 1 Dec 2010 23:07:02 -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 65334 invoked by uid 99); 1 Dec 2010 23:07:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Dec 2010 23:07:02 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: 76.96.62.80 is neither permitted nor denied by domain of mikee@m410.us) Received: from [76.96.62.80] (HELO qmta08.westchester.pa.mail.comcast.net) (76.96.62.80) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Dec 2010 23:06:52 +0000 Received: from omta16.westchester.pa.mail.comcast.net ([76.96.62.88]) by qmta08.westchester.pa.mail.comcast.net with comcast id dpKv1f0041uE5Es58z6XvN; Wed, 01 Dec 2010 23:06:31 +0000 Received: from [192.168.0.12] ([69.180.25.179]) by omta16.westchester.pa.mail.comcast.net with comcast id dz6W1f0073rr8PZ3cz6Wi9; Wed, 01 Dec 2010 23:06:31 +0000 From: Michael Fortin Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: thrift error Date: Wed, 1 Dec 2010 18:06:29 -0500 Message-Id: <0F203D72-C871-40E8-B310-26AE3CE9A541@m410.us> To: user@cassandra.apache.org Mime-Version: 1.0 (Apple Message framework v1082) X-Mailer: Apple Mail (2.1082) X-Virus-Checked: Checked by ClamAV on apache.org Hello, I'm trying to insert a super column but I can't get passed this error. =20= the error: InvalidRequestException(why:column name must not be empty) at = org.apache.cassandra.thrift.Cassandra$insert_result.read(Cassandra.java:14= 408) at = org.apache.cassandra.thrift.Cassandra$Client.recv_insert(Cassandra.java:82= 8) at = org.apache.cassandra.thrift.Cassandra$Client.insert(Cassandra.java:800) Family def: - {name: Super, column_type: Super, compare_with: TimeUUIDType, = compare_subcolumns_with: LongType} this is the code I'm calling: ... client =3D new Cassandra.Client(protocol, protocol) client.insert(key, columnParent, c, level) And the values from the debugger: key =3D {java.nio.HeapByteBuffer@3168} "java.nio.HeapByteBuffer[pos=3D0 = lim=3D16 cap=3D16]" columnParent =3D {org.apache.cassandra.thrift.ColumnParent@3169} = "ColumnParent(column_family:Super, super_column:00 00 00 00 00 00 00 = 0C)" c =3D {org.apache.cassandra.thrift.Column@3170} "Column(name:63 6F 6C = 75 6D 6E, value:76 61 6C 75 65, timestamp:1291243840220)" I can insert a standard column without any issues with the same = codebase.. What column name must not be empty?? Clearly it's not. = What am I missing? =20 Thanks Mike