Return-Path: Delivered-To: apmail-incubator-cassandra-user-archive@minotaur.apache.org Received: (qmail 66485 invoked from network); 12 Mar 2010 06:11:24 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 12 Mar 2010 06:11:24 -0000 Received: (qmail 32317 invoked by uid 500); 12 Mar 2010 06:10:47 -0000 Delivered-To: apmail-incubator-cassandra-user-archive@incubator.apache.org Received: (qmail 32192 invoked by uid 500); 12 Mar 2010 06:10:46 -0000 Mailing-List: contact cassandra-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cassandra-user@incubator.apache.org Delivered-To: mailing list cassandra-user@incubator.apache.org Received: (qmail 32175 invoked by uid 99); 12 Mar 2010 06:10:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Mar 2010 06:10:46 +0000 X-ASF-Spam-Status: No, hits=2.5 required=10.0 tests=FREEMAIL_FROM,FREEMAIL_REPLY,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of alex.durgin@gmail.com designates 209.85.210.175 as permitted sender) Received: from [209.85.210.175] (HELO mail-yx0-f175.google.com) (209.85.210.175) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Mar 2010 06:10:39 +0000 Received: by yxe5 with SMTP id 5so377163yxe.12 for ; Thu, 11 Mar 2010 22:10:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:from:to :in-reply-to:content-type:content-transfer-encoding:x-mailer :mime-version:subject:date:references; bh=cKSQY9BNAkT9qN4H9qFnOyeP1xNDoXM+qLdyjDqYp+4=; b=uxhGhmhhBm9lKLsEW8BZjEW1F218rFlf4mUGUBwalvhciTt0GrZPFkUC1UCoaWAady NWfqI0X2UYzyREvWgjxFrt8Rk2rf8n+n1iqL9anfoPzeBcaD72dgx4RVOe2+6pNDfZXD FazNWHmWS/aUQU6Iv+Y7UHN3wLXZFw5xsUNWQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:from:to:in-reply-to:content-type :content-transfer-encoding:x-mailer:mime-version:subject:date :references; b=lfjI5lQ/L9QzZfm1jVJG+kt+etvNylfq3ooxTEvyOmNuGmTWln5wtwAcJUqkqG7ZgC J0xZ+sBpA2gd5XTkpSTxTeLOF/HeDBibg1OFb4C4A4wyVmgQV9J9I7MXabieF69l+C1K I6rY5JXV0mN5M8zCdpll3cKlV73VEMrjoK7DM= Received: by 10.231.152.75 with SMTP id f11mr683278ibw.50.1268374217898; Thu, 11 Mar 2010 22:10:17 -0800 (PST) Received: from [10.114.247.98] ([166.137.11.166]) by mx.google.com with ESMTPS id 7sm274142yxd.8.2010.03.11.22.10.14 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 11 Mar 2010 22:10:16 -0800 (PST) Message-Id: From: Alex Durgin To: "cassandra-user@incubator.apache.org" In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Mailer: iPhone Mail (7A400) Mime-Version: 1.0 (iPhone Mail 7A400) Subject: Re: libcassandra - C++ Cassandra Client Date: Fri, 12 Mar 2010 00:10:03 -0600 References: X-Virus-Checked: Checked by ClamAV on apache.org On Mar 11, 2010, at 10:51 PM, "Padraig O'Sullivan" wrote: > On Thu, Mar 11, 2010 at 11:31 PM, Avinash Lakshman > wrote: >> How is Drizzle being integrated with Cassandra? Are there any >> resources on >> the Internet that I could read up? > > The idea is to create a storage engine (along with some > INFORMATION_SCHEMA tables probably) in drizzle on top of cassandra but > we are just starting to think about it so there is no resources > available right now. > > Keep an eye on the blueprints and code branches of drizzle for work on > it. Any tasks we are working on, we will likely create a blueprint for > it. Blueprints and code branches are available on launchpad - > http://launchpad.net/drizzle > >> >> Thanks >> Avinash >> >> On Thu, Mar 11, 2010 at 8:12 PM, Padraig O'Sullivan >> wrote: >>> >>> We have developed a C++ client library based on the hector Java >>> client >>> for Cassandra that we intend on using for Drizzle integration. This >>> library is still very much alpha and more features will be added >>> while >>> we work on drizzle integration. Connection pooling or failover is >>> currently not implemented but will likely be added in the very near >>> future. >>> >>> The source is available on github at: >>> http://github.com/posulliv/libcassandra >>> >>> -Padraig >> >> Interesting. What would be an example use case? Would this be more appropriate for a static set of columns? I can imagine having access to a mysql dialect would make for easy access to some simple orm mapping using existing libraries among other things.