2011/1/25 Patricio Echagüe <patric...@gmail.com> > Roshan, when a client invoke a write, the write goes first to commit log > and later to memtable. After that it returns to the client. > > After it reaches the memtable, that data is ready to be read. > > The reads consolidates de data from the memtables and sstables unless there > is a hit in the row cache. > > does it help? >
Yes, it helps very much. Because I was unsure when a client call returned. If it returns after data is pushed to memtable, then it all seems safe at that front. Thanks a lot.