Re: SimpleAuthenticator missing in Cassandra 1.0

2011-10-27 Thread Pete Warden
For what it's worth, here's where I ended up after digging into Cassandra security as a new user: http://petewarden.typepad.com/searchbrowser/2011/08/securing-cassandra-on-ec2.html On Thu, Oct 27, 2011 at 1:39 PM, RobinUs2 wrote: > Oke, that makes sense, even though I couldn't find it in the fir

Re: pig_cassandra problem - "Incompatible field schema" error

2011-10-17 Thread Pete Warden
JIRA filed, with a messy patch too: https://issues.apache.org/jira/browse/CASSANDRA-3371 cheers, Pete On Mon, Oct 17, 2011 at 2:27 AM, Pete Warden wrote: > I've dug deeper into this, since this got my script running but still left > me at sea when dealing with the actual

Re: pig_cassandra problem - "Incompatible field schema" error

2011-10-17 Thread Pete Warden
n downside I can see is the possible clash between the cassandra_key value and a column with the same name. cheers, Pete On Tue, Oct 11, 2011 at 11:59 PM, Pete Warden wrote: > For posterity, I ended up hacking around this by renaming the repeated > 'value' alias

Re: pig_cassandra problem - "Incompatible field schema" error

2011-10-11 Thread Pete Warden
Pig 0.8.1 instead, but I ran into https://cwiki.apache.org/confluence/display/PIG/FAQ#FAQ-Q%3AWhatshallIdoifIsaw%22FailedtocreateDataStorage%22%3F On Tue, Oct 11, 2011 at 10:34 PM, Pete Warden wrote: > Thanks for all your help Brandon and Jeremy, that got me to the point where > I could load data. &

Re: pig_cassandra problem - "Incompatible field schema" error

2011-10-11 Thread Pete Warden
On Tue, Oct 11, 2011 at 3:37 PM, Brandon Williams wrote: > On Tue, Oct 11, 2011 at 4:24 PM, Pete Warden wrote: > > I'm trying to run the most basic example for pig_cassandra, counting the > > number of rows in a column family, and I'm hitting the following error: > &g

pig_cassandra problem - "Incompatible field schema" error

2011-10-11 Thread Pete Warden
I'm trying to run the most basic example for pig_cassandra, counting the number of rows in a column family, and I'm hitting the following error: 2011-10-11 14:13:32,321 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1031: Incompatable field schema: left is "columns:bag{:tuple(name:bytearray

Re: TransportException when storing large values

2011-09-21 Thread Pete Warden
> # 0 disables TFramedTransport in favor of TSocket. This option > > # is deprecated; we strongly recommend using Framed mode. > > thrift_framed_transport_size_in_mb: 15 > > > > So you can either increase that limit, or split your write into multiple > > operations.

TransportException when storing large values

2011-09-20 Thread Pete Warden
I'm running into consistent problems when storing values larger than 15MB into Cassandra, and I was hoping for some advice on tracking down what's going wrong. From the FAQ it seems like what I'm trying to do is possible, so I assume I'm messing something up with my configuration. I have a minimal