Re: Multi-node emulator?

2009-09-30 Thread Eric Evans
On Tue, 2009-09-29 at 20:56 -0700, Ryan Cunningham wrote: As part of some internal Cassandra development we were doing, we developed code that wraps Cassandra, sets up and launches multiple Cassandra instances on the local machine (using virtual ips), and executes test cases to validate

Binary Loading Question

2009-09-30 Thread Dan Di Spaltro
I was trying to binary load some data into an instance and ran into a null exception in the process. So I began looking at the code, and it looks like around Table.java:653 of trunk, that piece of code doesn't really make sense. I don't understand the internals of Cassandra all that well, but

Re: Binary Loading Question

2009-09-30 Thread Jonathan Ellis
So it looks like it takes multiple rows, one per column in the rowmutation. Which is confusing and weird if you ask me. On Wed, Sep 30, 2009 at 1:57 PM, Jonathan Ellis jbel...@gmail.com wrote: Yeah, just eyeballing it                ColumnFamilyStore cfStore =

Re: Binary Loading Question

2009-09-30 Thread Chris Goffinet
It's very jank. I kinda understand where they were coming from on that. Let me think through it some more and open a ticket to improve some of that code. On Wed, Sep 30, 2009 at 12:22 PM, Jonathan Ellis jbel...@gmail.com wrote: So it looks like it takes multiple rows, one per column in the

Re: Binary Loading Question

2009-09-30 Thread Dan Di Spaltro
Okay i get what its doing now... its pretty confusing until I saw jbellis' comments. now when i flush binary it is throwing on the key.toString line because the token is null. When i setup the rowmutation on the client i used StringToken as opposed to big integer but thats because i am not sure

Re: Logo Design Contest

2009-09-30 Thread Eric Evans
On Wed, 2009-09-23 at 11:39 -0500, Eric Evans wrote: A logo design contest is now underway at 99designs.com. http://99designs.com/contests/28940 The contest brief can be found here: http://99designs.com/contests/28940/brief. If you're worried that it's missing something critical (or

Re: Binary Loading Question

2009-09-30 Thread Chris Goffinet
It would be helpful if you could attach your example. Also did you look at the example in contrib by chance? On Sep 30, 2009, at 2:05 PM, Dan Di Spaltro wrote: Okay i get what its doing now... its pretty confusing until I saw jbellis' comments. now when i flush binary it is throwing on the