Jenkins build is back to normal : Cassandra-quick #59

2011-10-11 Thread Apache Jenkins Server
See

Re: [VOTE] Release Apache Cassandra 1.0.0 (Final) - Strike 2

2011-10-11 Thread Sylvain Lebresne
The artifacts for this vote happen to have https://issues.apache.org/jira/browse/CASSANDRA-3343. This is a purely cosmetic issue, and clearly I don't want to reroll the vote for this, which would delay the release. But I also think that fixing this issue has zero chance of screwing anything up, s

Re: [VOTE] Release Apache Cassandra 1.0.0 (Final) - Strike 2

2011-10-11 Thread Sylvain Lebresne
@Todd You're likely doing something wrong with your ByteBuffers. It's *very* easy to screw up with those. -- Sylvain On Tue, Oct 11, 2011 at 7:30 AM, Todd Burruss wrote: > This is a bit preliminary, but wanted to get this to you guys knowing the > vote is in progress > > using these artifac

Re: [VOTE] Release Apache Cassandra 1.0.0 (Final) - Strike 2

2011-10-11 Thread Brandon Williams
On Tue, Oct 11, 2011 at 8:29 AM, Sylvain Lebresne wrote: > So I have created new artifacts, based on the previous ones but with the > infamous 'echo $CLASSPATH' removed from cassandra.in.sh. And what I'm > proposing is to simply switch to those last artifacts for the release instead > of the initi

Re: [VOTE] Release Apache Cassandra 1.0.0 (Final) - Strike 2

2011-10-11 Thread Jonathan Ellis
+1 On Tue, Oct 11, 2011 at 8:32 AM, Brandon Williams wrote: > On Tue, Oct 11, 2011 at 8:29 AM, Sylvain Lebresne > wrote: >> So I have created new artifacts, based on the previous ones but with the >> infamous 'echo $CLASSPATH' removed from cassandra.in.sh. And what I'm >> proposing is to simply

Re: REST API?

2011-10-11 Thread Nick Telford
There are no plans to move to Maven for 2 reasons: 1) a majority of committers favour Ant; 2) if it aint broke, don't fix it. On 11 October 2011 03:33, Brian O'Neill wrote: > Will do. I've picked up where Gary left off. It is good starting point, > with a good mapping between REST and get/set

Re: REST API?

2011-10-11 Thread Matt Kennedy
I have one based on restlet: https://github.com/stinkymatt/Helena On Mon, Oct 10, 2011 at 9:12 PM, Brian O'Neill wrote: > My team desperately needs a REST API for Cassandra. > > I saw the following: > http://code.google.com/p/restish/ > from > http://crlog.info/2011/01/29/restish-wrapper-for-hect

RE: REST API?

2011-10-11 Thread declan
Please take me OFF this email...thanks All the Best Declan -Original Message- From: Matt Kennedy [mailto:stinkym...@gmail.com] Sent: Tuesday, October 11, 2011 10:09 AM To: dev@cassandra.apache.org Subject: Re: REST API? I have one based on restlet: https://github.com/stinkymatt/Helena O

Re: [VOTE] Release Apache Cassandra 1.0.0 (Final) - Strike 2

2011-10-11 Thread Brandon Williams
On Mon, Oct 10, 2011 at 11:24 AM, Sylvain Lebresne wrote: > As said while closing previous vote, CASSANDRA-3338 felt important enough to > warrant a reroll. So here it is: I propose the following artifacts for release > as 1.0.0 (those are the same as the previous + the patch for CASSANDRA-3338 >

Re: [VOTE CLOSE] Release Apache Cassandra 1.0.0 (Final) - Strike 2

2011-10-11 Thread Sylvain Lebresne
Alright, that sucks. But with 3338, 3346 and 3345 (that is kind of a regression with respect to what the changelog says), I'm closing this vote and will start a new in a jiff. Sorry everyone. -- Sylvain On Tue, Oct 11, 2011 at 4:53 PM, Brandon Williams wrote: > On Mon, Oct 10, 2011 at 11:24 AM,

[VOTE] Release Apache Cassandra 1.0.0 (Final) - Strike 3

2011-10-11 Thread Sylvain Lebresne
Let's hope third times will be the charm. With #3343, #3345 and #3346 in, I propose the following artifacts for release as 1.0.0. SVN: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-1.0.0@r1181820 Artifacts: https://repository.apache.org/content/repositories/orgapachecassandra-055

Re: [VOTE] Release Apache Cassandra 1.0.0 (Final) - Strike 2

2011-10-11 Thread Todd Burruss
That was exactly the problem, thx. (I'm starting a new thread to chat about it) On 10/11/11 6:31 AM, "Sylvain Lebresne" wrote: >@Todd You're likely doing something wrong with your ByteBuffers. It's >*very* easy >to screw up with those. > >-- >Sylvain > >On Tue, Oct 11, 2011 at 7:30 AM, Todd Bur

ByteBuffers and StorageProxy

2011-10-11 Thread Todd Burruss
My recent bug was that I was sending a zero length ByteBuffer (because I forgot to flip) for a column name. The problem I have is that the insert was accepted by the server. Should an exception be thrown? The end result of allowing the insert is that the server will not restart if the data is

Re: ByteBuffers and StorageProxy

2011-10-11 Thread Jonathan Ellis
These checks are done in ThriftValidation. If you decide to use StorageProxy directly, the training wheels are off. On Oct 11, 2011 11:26 AM, "Todd Burruss" wrote: > My recent bug was that I was sending a zero length ByteBuffer (because I > forgot to flip) for a column name. The problem I have i

Re: ByteBuffers and StorageProxy

2011-10-11 Thread Edward Capriolo
On Tue, Oct 11, 2011 at 12:25 PM, Todd Burruss wrote: > My recent bug was that I was sending a zero length ByteBuffer (because I > forgot to flip) for a column name. The problem I have is that the insert > was accepted by the server. Should an exception be thrown? The end result > of allowing

Re: REST API?

2011-10-11 Thread Brian O'Neill
To give everyone an update... I was able to take what Gary had and update it to run on trunk. I like the native integration, as opposed to layering it on top of Hector. It's working out well. I layered in JAX-RS to replace the hand parsing of the url, and the handlers. I have reads and writes wor