> by a multiget will not find the just inserted data. Can you explain how the data is not found. Does it not find new columns or does it return stale columns ? If the read is run again does it return the expected value?
if you are getting stale data double check the the nodes / clients have their clocks synchronised. If you are doing reads and writes using QUOURM double check that your code is correct. If it is provide some more info on what you are seeing. Cheers ----------------- Aaron Morton Freelance Cassandra Consultant New Zealand @aaronmorton http://www.thelastpickle.com On 11/03/2013, at 12:50 PM, André Cruz <andre.c...@co.sapo.pt> wrote: > On Mar 11, 2013, at 5:02 PM, Tyler Hobbs <ty...@datastax.com> wrote: > >> What kind of inserts and multiget queries are you running? > > I use the ColumnFamily objects. The pool is initialised with > "write_consistency_level=ConsistencyLevel.QUORUM". > > The insert is a regular insert, so the QUORUM is used. When fetching I use: > > CF.multiget(blocks, columns=['size'], > read_consistency_level=ConsistencyLevel.QUORUM) > > I have 6 nodes and a RF 3. > > André > >