Well, I am an "actual active developer" and I have "managed to do pretty
nice stuffs with Cassandra" - without secondary indexes so far. But I'm
looking forward to having secondary indexes in my arsenal when new
functional requirements come up, and I'm bummed out that my early design
decision to use supercolums wherever I could, instead of concatenating keys,
has closed off a whole lot of possibilities. I knew when I started that
secondary keys were in the future, if I had known that they would be only
for regular column families I wouldn't have used supercolumn families in the
first place, now I'm pretty much stuck (too late to go back - we're
launching in March).


On Thu, Feb 3, 2011 at 4:44 PM, Sylvain Lebresne <sylv...@datastax.com>wrote:

> On Thu, Feb 3, 2011 at 3:00 PM, David Boxenhorn <da...@lookin2.com> 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 
>> <sylv...@datastax.com>wrote:
>>
>>> On Thu, Feb 3, 2011 at 1:33 PM, David Boxenhorn <da...@lookin2.com>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 
>>>> <sylv...@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 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
>>>>>
>>>>>
>>>>
>>>
>>
>

Reply via email to