Return-Path: Delivered-To: apmail-cassandra-user-archive@www.apache.org Received: (qmail 80988 invoked from network); 3 Feb 2011 14:44:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Feb 2011 14:44:38 -0000 Received: (qmail 15616 invoked by uid 500); 3 Feb 2011 14:44:37 -0000 Delivered-To: apmail-cassandra-user-archive@cassandra.apache.org Received: (qmail 15465 invoked by uid 500); 3 Feb 2011 14:44:34 -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 15457 invoked by uid 99); 3 Feb 2011 14:44:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Feb 2011 14:44:33 +0000 X-ASF-Spam-Status: No, hits=2.2 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [209.85.161.172] (HELO mail-gx0-f172.google.com) (209.85.161.172) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Feb 2011 14:44:28 +0000 Received: by gxk27 with SMTP id 27so542893gxk.31 for ; Thu, 03 Feb 2011 06:44:07 -0800 (PST) MIME-Version: 1.0 Received: by 10.150.178.8 with SMTP id a8mr13280009ybf.337.1296744246621; Thu, 03 Feb 2011 06:44:06 -0800 (PST) Received: by 10.147.41.10 with HTTP; Thu, 3 Feb 2011 06:44:06 -0800 (PST) X-Originating-IP: [88.183.33.171] In-Reply-To: References: Date: Thu, 3 Feb 2011 15:44:06 +0100 Message-ID: Subject: Re: Do supercolumns have a purpose? From: Sylvain Lebresne To: user@cassandra.apache.org Content-Type: multipart/alternative; boundary=000e0cd6a92a2f3b9e049b61ccd4 --000e0cd6a92a2f3b9e049b61ccd4 Content-Type: text/plain; charset=ISO-8859-1 On Thu, Feb 3, 2011 at 3:00 PM, David Boxenhorn wrote: > The advantage would be to enable secondary indexes on supercolumn families. > Then I suggest opening a ticket for adding secondary indexes to supercolumn families and voting on it. This will be 1 or 2 order of magnitude less work than getting rid of super column internally, and probably a much better solution anyway. > I understand from this thread that indexes are supercolumn families are not > going to be: > > http://www.mail-archive.com/user@cassandra.apache.org/msg09527.html > I should maybe let Jonathan answer this one, but the way I understand it is that adding secondary indexes to super column is not a top priority to actual active developers. Not that it will never ever happen. And voting for tickets in JIRA is one way to help make it raise its priority. In any case, if the goal you're pursuing is adding secondary indexes to super column, then that's the ticket you should open, and if after careful consideration it is decided that getting rid of super column is the best way to reach that goal then so be it (spoiler: it is not). > Which, it seems to me, effectively deprecates supercolumn families. (I > don't see any of the three problems you brought up as overcoming this > problem, except, perhaps, for special cases.) > You're untitled to your opinions obviously but I doubt everyone share that feeling (I don't for instance). Before 0.7, there was no secondary indexes at all and still a bunch of people managed to do pretty nice stuffs with Cassandra. In particular denormalized views are sometimes (often?) preferable to secondary indexes for performance reasons. For that super columns are quite handy. -- Sylvain > > > On Thu, Feb 3, 2011 at 3:32 PM, Sylvain Lebresne wrote: > >> On Thu, Feb 3, 2011 at 1:33 PM, David Boxenhorn wrote: >> >>> Thanks Sylvain! >>> >>> Can I vote for internally implementing supercolumn families as regular >>> column families? (With a smooth upgrade process that doesn't require >>> shutting down a live cluster.) >>> >> >> I forgot to add that I don't know if this make a lot of sense. That would >> be a fairly major refactor (so error prone), you'd still have to deal with >> the point I mentioned in my previous mail (for range deletes you would have >> to change the on-disk format for instance), and all this for no actual >> benefits, even downsides actually (encoded supercolumn will take more space >> on-disk (and on-memory)). Super columns are there and work fairly well, so >> what would be the point ? >> >> I'm only just saying that 'in theory', super columns are not the super >> shiny magical feature that give you stuff you can't hope to have with only >> regular column family. That doesn't make then at least nice. >> >> That being said, you are free to create whatever ticket you want and vote >> for it. Don't expect too much support tough :) >> >> >>> What if supercolumn families were supported as regular column families + >>> an index (on what used to be supercolumn keys)? Would that solve some >>> problems? >>> >> >> You'd still have to remember for each CF if it has this index on what used >> to be supercolumn keys and handle those differently. Really not convince >> this would make the code cleaner that how it is now. And making the code >> cleaner is really the only reason I can thing of for wanting to get rid of >> super columns internally, so ... >> >> >>> >>> >>> On Thu, Feb 3, 2011 at 2:00 PM, Sylvain Lebresne wrote: >>> >>>> > Is there any advantage to using supercolumns >>>> > (columnFamilyName[superColumnName[columnName[val]]]) instead of >>>> regular >>>> > columns with concatenated keys >>>> > (columnFamilyName[superColumnName@columnName[val]])? >>>> > >>>> > When I designed my data model, I used supercolumns wherever I needed >>>> two >>>> > levels of key depth - just because they were there, and I figured that >>>> they >>>> > must be there for a reason. >>>> > >>>> > Now I see that in 0.7 secondary indexes don't work on supercolumns or >>>> > subcolumns (is that right?), which seems to me like a very serious >>>> > limitation of supercolumn families. >>>> > >>>> > It raises the question: Is there anything that supercolumn families >>>> are good >>>> > for? >>>> >>>> There is a bunch of queries that you cannot do (or less conveniently) if >>>> you >>>> encode super columns using regular columns with concatenated keys: >>>> >>>> 1) If you use regular columns with concatenated keys, the count argument >>>> count simple columns. With super columns it counts super columns. It >>>> means >>>> that you can't do "give me the 10 first super columns of this row". >>>> >>>> 2) If you need to get x super columns by name, you'll have to issue x >>>> get_slice query (one of each super column). On the client side it sucks. >>>> Internally in Cassandra we could do it reasonably well though. >>>> >>>> 3) You cannot remove entire super columns since there is no support for >>>> range >>>> deletions. >>>> >>>> Moreover, the encoding with concatenated keys uses more disk space (and >>>> less >>>> disk used for the same information means less things to read so it may >>>> have >>>> a slight impact on read performance too -- it's probably really slight >>>> on most >>>> usage but nevertheless). >>>> >>>> > And here's a related question: Why can't Cassandra implement >>>> supercolumn >>>> > families as regular column families, internally, and give you that >>>> > functionality? >>>> >>>> For the 1) and 2) above, we could deal with those internally fairly >>>> easily I >>>> think and rather well (which means it wouldn't be much worse >>>> performance-wise >>>> than with the actual implementaion of super columns, not that it would >>>> be >>>> better). For 3), range deletes are harder and would require more >>>> significant >>>> changes (that doesn't mean that Cassandra will never have it). Even >>>> without >>>> that, there would be the disk space lost. >>>> >>>> -- >>>> Sylvain >>>> >>>> >>> >> > --000e0cd6a92a2f3b9e049b61ccd4 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Thu, Feb 3, 2011 at 3:00 PM, David Boxenhorn <david@lookin2.com> wrote:
=
The advantage would be to enable secondary indexes on supe= rcolumn families.

Then I suggest = opening a ticket for adding secondary indexes to supercolumn families and v= oting on it. This will be 1 or 2 order of magnitude less work than getting = rid of super column internally, and probably a much better solution anyway.=
=A0
I understand= from this thread that indexes are supercolumn families are not going to be= :

http://www.mail-archive.com/user@cassandra.apach= e.org/msg09527.html

I should = maybe let Jonathan answer this one, but the way I understand it is that add= ing secondary indexes to super column is not a top priority to actual activ= e developers. Not that it will never ever happen. And voting for tickets in= JIRA is one way to help make it raise its priority.

In any case, if the goal you're pursuing is adding = secondary indexes to super column, then that's the ticket you should op= en, and if after careful consideration it is decided that getting rid of su= per column is the best way to reach that goal then so be it (spoiler: it is= not).
=A0
Which, it se= ems to me, effectively deprecates supercolumn families. (I don't see an= y of the three problems you brought up as overcoming this problem, except, = perhaps, for special cases.)

You're untitled to your opinions obvio= usly but I doubt everyone share that feeling (I don't for instance). Be= fore 0.7, there was no secondary indexes at all and still a bunch of people= managed to do pretty nice stuffs with Cassandra. In particular denormalize= d views are sometimes (often?) preferable to secondary indexes for performa= nce reasons. For that super columns are quite handy.
=A0
--
Sylvain



On Thu, Feb 3, 2011 at 3:32 PM, Sylvain Lebresne <sylvain@datastax.com<= /a>> wrote:
<= david@lookin2.com> wrote:
I forgot to add that I don't kno= w if this make a lot of sense. That would be a fairly major refactor (so er= ror prone), you'd still have to deal with the point I mentioned in my p= revious mail (for range deletes you would have to change the on-disk format= for instance), and all this for no actual benefits, even downsides actuall= y (encoded supercolumn will take more space on-disk (and on-memory)).=A0Sup= er columns are there and work fairly well, so what would be the point ?

I'm only just saying that 'in theory', supe= r columns are not the super shiny magical feature that give you stuff you c= an't hope to have with only regular column family. That doesn't mak= e then at least nice.

That being said, you are free to create whatever ticket= you want and vote for it. Don't expect too much support tough :)
=
=A0
What if supercolumn families were supported as regular col= umn families + an index (on what used to be supercolumn keys)? Would that s= olve some problems?

You'd s= till have to remember for each CF if it has this index on what used to be s= upercolumn keys and handle those=A0differently. Really not convince this wo= uld make the code cleaner that how it is now. And making the code cleaner i= s really=A0the only reason I can thing of for wanting to get rid of super c= olumns internally, so ...
=A0


On Thu, Feb 3, 2011 at 2:00 PM, Sylvain Lebr= esne <sylvain@datastax.com> wrote:
> Is there any advantage to using supercolumns
> = (columnFamilyName[superColumnName[columnName[val]]]) instead of regular
> columns with concatenated keys
> (columnFamilyName= [superColumnName@columnName[val]])?
>
> When I designed my data model, I used supercolumns= wherever I needed two
> levels of key depth - just because th= ey were there, and I figured that they
> must be there for a r= eason.
>
> Now I see that in 0.7 secondary indexes don't = work on supercolumns or
> subcolumns (is that right?), which s= eems to me like a very serious
> limitation of supercolumn fam= ilies.
>
> It raises the question: Is there anything that sup= ercolumn families are good
> for?

There is a bunch of queries that you cannot do (or less conveniently) if= you
encode super columns using regular columns with concatenated keys:

1) If you use regular columns with concatenated keys,= the count argument
count simple columns. With super columns it c= ounts super columns. It means
that you can't do "give me the 10 first super columns of this= row".

2) If you need to get x super columns = by name, you'll have to issue x
get_slice query (one of each = super column). On the client side it sucks.
Internally in Cassandra we could do it reasonably well though.

3) You cannot remove entire super columns since there is = no support for range
deletions.

Moreover= , the encoding with concatenated keys uses more disk space (and less
disk used for the same information means less things to read so it may= have
a slight impact on read performance too -- it's probabl= y really slight on most
usage but nevertheless).

> And here's a related question: Why can't Cassandra = implement supercolumn
> families as regular column families, i= nternally, and give you that
> functionality?=A0

For the 1) and 2) above, we could deal with those internal= ly fairly easily I
think and rather well (which means it wouldn&#= 39;t be much worse performance-wise
than with the actual implemen= taion of super columns, not that it would be
better). For 3), range deletes are harder and would require more signi= ficant
changes (that doesn't mean that Cassandra will never h= ave it). Even without
that, there would be the disk space lost.

--
Sylvain





--000e0cd6a92a2f3b9e049b61ccd4--