Return-Path: Delivered-To: apmail-incubator-cassandra-dev-archive@minotaur.apache.org Received: (qmail 741 invoked from network); 29 Jan 2010 18:07:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 Jan 2010 18:07:20 -0000 Received: (qmail 6699 invoked by uid 500); 29 Jan 2010 18:07:20 -0000 Delivered-To: apmail-incubator-cassandra-dev-archive@incubator.apache.org Received: (qmail 6675 invoked by uid 500); 29 Jan 2010 18:07:20 -0000 Mailing-List: contact cassandra-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cassandra-dev@incubator.apache.org Delivered-To: mailing list cassandra-dev@incubator.apache.org Received: (qmail 6665 invoked by uid 99); 29 Jan 2010 18:07:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jan 2010 18:07:20 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of jbellis@gmail.com designates 209.85.219.212 as permitted sender) Received: from [209.85.219.212] (HELO mail-ew0-f212.google.com) (209.85.219.212) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jan 2010 18:07:09 +0000 Received: by ewy4 with SMTP id 4so2372267ewy.27 for ; Fri, 29 Jan 2010 10:06:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=GJFSNGeK2LYUAKWgj84/nvn2R+TKWr/DL3qHkAjaVZ0=; b=jt3fJc5eeqNMgPx/44Pw4Xh9FsCLFyVE/BDXngUsX6dUeuntVUt2YaZyVygsb7BkId tgtSHm8FvgX+bi92i5RiROESl/4O8a2nP7EbO76m56EaAAQHGuat8+xoBXIKVBL200pt 7gtSbOaWOIBIumogFzMnUOqd2tO5pB+1FOzcs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=ap9dbuHRRXon/udK9+Rc8Kj7JJoSsyvM/7AADFxqR3VS/aeQr/Y6tBww5/GB1OKSxb HaW3xf+NH/a6ZP7HGPhXuVseXaspi7cfb7CI1DuWtrWcaz2ERyHWv2aJIftLs6JgXM/8 lWMXTnGEbTMIZWHdKp0Q+GEThFnZRALkf2Xoc= MIME-Version: 1.0 Received: by 10.216.87.134 with SMTP id y6mr766617wee.20.1264788408201; Fri, 29 Jan 2010 10:06:48 -0800 (PST) In-Reply-To: <2d864a8c1001290709t6bf9afd1hb0c3f26eabccfacd@mail.gmail.com> References: <2d864a8c1001290416g723270efxb79ac1831c159c9@mail.gmail.com> <2d864a8c1001290709t6bf9afd1hb0c3f26eabccfacd@mail.gmail.com> From: Jonathan Ellis Date: Fri, 29 Jan 2010 12:06:28 -0600 Message-ID: Subject: Re: Is this possible with cassandra To: cassandra-dev@incubator.apache.org Cc: Susheel Zaveri Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Fri, Jan 29, 2010 at 9:09 AM, Mehar Chaitanya wrote: > =A0 1. This would lead to enourmous amount of duplication of data, in sho= rt > =A0 if I now want to view the data from IS_PUBLISHED dimenstion then my d= atabase > =A0 size would scale up tremendously. Yes. But disk space is so cheap it's worth using a lot of it to make other things fast. > =A0 2. Above way of reprensting the data would suffice if I want to retri= eve > =A0 something like, get me all the articles whose category is WORLDNEWS. = But > =A0 what if I want to find out something like: Get me all the articles wh= ose > =A0 Section is BASEBALL and Category is WORLDNEWS. For addressing queries= taht > =A0 depend on multiple parameter how do we do it? Hope I am clear with my > =A0 problem statement :( You have to do the intersection client-side (or use something like http://github.com/tjake/Lucandra to do it for you). -Jonathan