Re: For those using Cassandra from .Net

2013-05-23 Thread aaron morton
Thanks, when and were is the talk ? Cheers - Aaron Morton Freelance Cassandra Consultant New Zealand @aaronmorton http://www.thelastpickle.com On 23/05/2013, at 6:42 AM, Peter Lin wool...@gmail.com wrote: NativeX is giving a talk about using Cassandra with .Net. Our firm

For those using Cassandra from .Net

2013-05-22 Thread Peter Lin
NativeX is giving a talk about using Cassandra with .Net. Our firm created a port of Hector over to .Net late last year. Here is the abstract. *The Perils and Triumphs of using Cassandra at a .NET/Microsoft Shop* *Speakers:* Derek Bromenshenkel and Jeff Smoley, Infrastructure Architects

Re: insert data in cassandra from .net..

2012-04-14 Thread aaron morton
@aaronmorton http://www.thelastpickle.com On 13/04/2012, at 6:31 PM, puneet loya wrote: I m able to connect cassandra and fetch rows from the cassandra database. Now i want to insert the data from .net on to cassandra but using insert query of cql is not working because i have fields in my table

Re: insert data in cassandra from .net..

2012-04-14 Thread puneet loya
.net on to cassandra but using insert query of cql is not working because i have fields in my table which has null values for the columns and cassandra would not take null values. So now i have to query it the other way.. i.e, i can use set [key] [column name] = column value; but can i send

insert data in cassandra from .net..

2012-04-13 Thread puneet loya
I m able to connect cassandra and fetch rows from the cassandra database. Now i want to insert the data from .net on to cassandra but using insert query of cql is not working because i have fields in my table which has null values for the columns and cassandra would not take null values. So

Re: cassandra and .net

2012-04-10 Thread puneet loya
is using cassandra from datastax community center software an issue for not be able to connect with .net? On Tue, Apr 10, 2012 at 11:24 AM, Maki Watanabe watanabe.m...@gmail.comwrote: Check your cassandra log. If you can't find any interesting log, set cassandra log level to DEBUG and run

Re: cassandra and .net

2012-04-10 Thread Pierre Chalamet
Another tentative : try using TFramedTransport with an instance of TSocket directly. - Pierre -Original Message- From: puneet loya puneetl...@gmail.com Date: Tue, 10 Apr 2012 11:06:22 To: user@cassandra.apache.org Reply-To: user@cassandra.apache.org Subject: Re: cassandra and .net

Re: cassandra and .net

2012-04-10 Thread puneet loya
@cassandra.apache.org *ReplyTo: * user@cassandra.apache.org *Subject: *Re: cassandra and .net hi, sorry i posted the port as 7000. I m using 9160 but still has the same error. Cannot read, Remote side has closed. Can u guess whats happening?? On Tue, Apr 10, 2012 at 11:00 AM, Pierre Chalamet

Re: cassandra and .net

2012-04-10 Thread puneet loya
Log is showing the following exception DEBUG [ScheduledTasks:1] 2012-04-10 14:49:29,654 LoadBroadcaster.java (line 86) Disseminating load info ... DEBUG [Thrift:7] 2012-04-10 14:50:00,820 CustomTThreadPoolServer.java (line 197) Thrift transport error occurred during processing of message.

Re: cassandra and .net

2012-04-10 Thread Henrik Schröder
In your code you are using BufferedTransport, but in the Cassandra logs you're getting errors when it tries to use FramedTransport. If I remember correctly, BufferedTransport is gone, so you should only use FramedTransport. Like this: TTransport transport = new TFramedTransport(new TSocket(host,

Re: cassandra and .net

2012-04-10 Thread puneet loya
thankk :) :) it works :) On Tue, Apr 10, 2012 at 3:07 PM, Henrik Schröder skro...@gmail.com wrote: In your code you are using BufferedTransport, but in the Cassandra logs you're getting errors when it tries to use FramedTransport. If I remember correctly, BufferedTransport is gone, so

Re: cassandra and .net

2012-04-10 Thread Jake Luciani
You can also look at using a .net client wrapper like https://github.com/managedfusion/fluentcassandra On Tue, Apr 10, 2012 at 8:06 AM, puneet loya puneetl...@gmail.com wrote: thankk :) :) it works :) On Tue, Apr 10, 2012 at 3:07 PM, Henrik Schröder skro...@gmail.comwrote: In your

cassandra and .net

2012-04-09 Thread puneet loya
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Thrift.Collections; using Thrift.Protocol; using Thrift.Transport; using Apache.Cassandra; namespace ConsoleApplication1 { class Program { static void Main(string[] args) {

Re: cassandra and .net

2012-04-09 Thread Pierre Chalamet
hello, 9160 is probably the port to use if you use the default config. - Pierre On Apr 10, 2012, at 7:26 AM, puneet loya puneetl...@gmail.com wrote: using System; using System.Collections.Generic; using System.Linq; using System.Text; using Thrift.Collections; using Thrift.Protocol;

Re: cassandra and .net

2012-04-09 Thread puneet loya
hi, sorry i posted the port as 7000. I m using 9160 but still has the same error. Cannot read, Remote side has closed. Can u guess whats happening?? On Tue, Apr 10, 2012 at 11:00 AM, Pierre Chalamet pie...@chalamet.netwrote: hello, 9160 is probably the port to use if you use the default

Re: cassandra and .net

2012-04-09 Thread Maki Watanabe
Check your cassandra log. If you can't find any interesting log, set cassandra log level to DEBUG and run your program again. maki 2012/4/10 puneet loya puneetl...@gmail.com: hi, sorry i posted the port as 7000. I m using 9160 but still has the same error. Cannot read, Remote side has

Re: Apache Cassandra and Net::Cassandra::Easy

2010-05-12 Thread Scott Doty
Well, ain't that a kick in the tush. :-/ I grabbed the svn trunk, but build failed, probably because Fedora 11 is too old for this bleeding edge stuff. Server is upgrading itself now, but I wondered: is anyone using an rpm-based distro for Net::Cassandra::Easy and the svn Cassandra? Thanks

Apache Cassandra and Net::Cassandra::Easy

2010-05-11 Thread Scott Doty
Hi folks, I'm trying to wrap my head around Net::Cassandra::Easy, and it's making me cross-eyed. My prototype app can be seen here: http://bito.ponzo.net/Hatchet/ The idea is to index logfiles by various keys, using Cassandra's extreme write speed to keep up with the millions of lines

Re: Apache Cassandra and Net::Cassandra::Easy

2010-05-11 Thread Ted Zlatanov
On Tue, 11 May 2010 09:40:02 -0700 Scott Doty sc...@corp.sonic.net wrote: SD I'm trying to wrap my head around Net::Cassandra::Easy, and it's making SD me cross-eyed. SD My prototype app can be seen here: SD http://bito.ponzo.net/Hatchet/ SD The idea is to index logfiles by various keys

Re: Apache Cassandra and Net::Cassandra::Easy

2010-05-11 Thread Scott Doty
/THRIFT-758 I followed it hand-applied the suggested patch, so the application gets as far as: $VAR1 = bless( { 'code' = 1, 'message' = 'Invalid method name: \'set_keyspace\'' }, 'TApplicationException' ); This is using Net-Cassandra-Easy-0.14

Re: Apache Cassandra and Net::Cassandra::Easy

2010-05-11 Thread Jonathan Ellis
2010/5/11 Ted Zlatanov t...@lifelogs.com: The latest N::C::Easy will not work with Cassandra 0.6.x, the only target is SVN trunk.  I can't discover the API version on the server so there's no way to anticipate such breakage as you see (I suspect it's due to API mismatch).  The Cassandra