RE: per-connection "read-after-my-write" consistency

2011-02-12 Thread Dan Hendry
mic...@gmail.com] Sent: February-12-11 17:37 To: user@cassandra.apache.org Subject: Re: per-connection "read-after-my-write" consistency Hi, I'm using .NET and I wrote my own client library (over Thrift) so I'm absolutely sure that both operations are performed using the

RE: per-connection "read-after-my-write" consistency

2011-02-12 Thread Dan Hendry
Are you using a higher level client (hector/pelops/pycassa/etc) or the actual thrift API? Higher level clients often pool connections and two subsequent operations (read then write) may be performed with connections to different nodes. If you are sure you are using the same connection (the actu

Re: per-connection "read-after-my-write" consistency

2011-02-12 Thread Michal Augustýn
Hi, I'm using .NET and I wrote my own client library (over Thrift) so I'm absolutely sure that both operations are performed using the same connection. I can handle the current issue in application but I'm sure that I will not be able to handle some future situation in application. So the suggest