Awesome tutorial series on Cassandra! Please keep going! We're learning so much!
@jumpstartCS5 жыл бұрын
Thanks Floating Sunfish, planing on making some more videos on Cassandra as well as some other topics in the future. Stay tuned!
@FabricioDestro4 жыл бұрын
This is the best Cassandra tutorial on KZbin
@mateustabaldi20803 жыл бұрын
Não posso discordar kk
@arkumar4 жыл бұрын
Thanks man. Beautifully explained the inner working behind the curtains. This is how muh in depth most other tutorials should be. Looking forward for more such Tech Series. Thanks again.
@Paarth20005 жыл бұрын
Excellent videos - looking forward to your next series.
@juliajin47323 жыл бұрын
Awesome material...Thanks a lot, looking forward to the advanced ones....
@saikatcse034 жыл бұрын
As you explian the read and write path. Could you explain how deletes works or what is tombstones. How this has impact on performance .
@nitinkarve36084 жыл бұрын
Simply Superb!!
@saikatcse034 жыл бұрын
Thanks . Also it would great if you could explain is the JVM GC could cause STW problem in cassandra
@cantwaittowatch5 жыл бұрын
great video. question: at frame 5:22, when the flush happens, I see that the data is removed from the mem table, and you say, reads are done via sstable. Reads in mem are faster than on disk, like cache, so am not clear why memtable is not updated correctly?
@rodrigomageste1454 жыл бұрын
Awesome..
@atul2115 жыл бұрын
superb
@paulfunigga6 ай бұрын
Not sure about earlier versions of cassandra, but in the latest versions, commit log is not durable. It is only flushed to disk every 10 seconds by default. If you want to make it durable, you have to switch the commitlog_sync setting to "batch" instead of "periodic", note, however, that it will drastically decrease write performance, even if you use the fastest SSD's.