Re: Data model names, reloaded

2009-08-21 Thread Mark McBride
One question, how are super columns handled here? Is it just nested field sets? That's the only potential confusion I see. ---Mark On Fri, Aug 21, 2009 at 12:28 PM, Viktor Klangviktor.kl...@gmail.com wrote: +1, makes much more sense. On Fri, Aug 21, 2009 at 9:24 PM, Curt Micol

Re: Data model names, reloaded

2009-08-21 Thread Mark McBride
Ok, I missed that. The equivalents are Database - Keyspace Record set - Column Family Record (w/key) Field set - Super Column Field - Column Is that right? ---Mark On Fri, Aug 21, 2009 at 1:05 PM, Evan Weaverewea...@gmail.com wrote: The idea is that field set is the direct equivalent

Re: Build Failed

2009-08-09 Thread Mark McBride
Sorry, should have given a bit more background. The an command is just a shell script that sets up a Java environment and runs it. vi `which ant` will pull it up for you. On Sun, Aug 9, 2009 at 4:48 AM, Curt Micolasen...@gmail.com wrote: On Sat, Aug 8, 2009 at 7:48 PM, Mark

Re: Build Failed

2009-08-08 Thread Mark McBride
Ant does weird things with this sometimes. Which OS is this running on? Look at your ant script... it may be calling scripts that override your default environment, e.g. this snippet in the ant script Darwin*) darwin=true if [ -z $JAVA_HOME ] ; then

Re: EOFException in get_slice_super_by_names

2009-08-05 Thread Mark McBride
Excellent, thanks! I think the real problem was an abuse of super columns... I had some with ~100k items, and will switch those over to regular columns. ---Mark On Wed, Aug 5, 2009 at 7:58 AM, Jonathan Ellisjbel...@gmail.com wrote: I found the bug:

Re: EOFException in get_slice_super_by_names

2009-08-05 Thread Mark McBride
There's at least three actually... mine is http://wiki.github.com/mccv/scassandra, and viktorklang has cassidy at http://github.com/viktorklang/Cassidy/tree/master. I found out about the other two about halfway through mine... I'm hoping to get mine folded into viktor's at some point. ---Mark

EOFException in get_slice_super_by_names

2009-07-31 Thread Mark McBride
Has anybody run across an EOFException in get_slice_super_by_names? i'm running 0.3.0-rc3, OSX, nothing nonstandard that I know of... It happens on multiple rows. Removing the super column and reinserting data seems to resolve the issue, but it's not great to have the exceptions occur in the

Re: EOFException in get_slice_super_by_names

2009-07-31 Thread Mark McBride
Yeah, the DB has been clobbered a few times without ever changing the cassandra version. I'll try to reproduce (somewhat difficult... it only happens on a handful of rows), and if that fails I'll move to trunk. You say it's getting stable... if I'm working on language bindings, in, say, scala...