I am reading the book HBase: The Definitive Guide and it is mentioned that while traditional relational databases perform updates/deletes at seek rate (B-trees), HBase performs updates/deletes at transfer rate (LSM trees).
I am aware how LSM trees work, though I fail to understand why the author claims that updates happen at transfer rate. When a client issues a specific update operation then a corresponding entry will be written to the in-memory memstore and there will also be an entry that will be appended to the WAL. Periodically the memstore will be merged with the HFiles stored on disk.
How that translates to HBase performing updates/deletes at transfer rate?