LSM Tree Vs B Tree

LSM Tree (Log Structured Merge Tree) is good for write intensive because write is much faster, you append an SSTable on the list.

B Tree and B+ Tree is good for read intensive because read is fast, you access to the read directly. However, writing is slow because we need to balance the tree, which is expensive.