1 Answer

0 votes
by
HBase Write

When a write is made, by default, it goes into two places:

write-ahead log (WAL), HLog, and

in-memory write buffer, MemStore.

Clients don't interact directly with the underlying HFiles during writes, rather writes goes to WAL & MemStore in parallel. Every write to HBase requires confirmation from both the WAL and the MemStore.

Related questions

0 votes
asked Sep 7, 2019 in Big Data | Hadoop by john ganales
0 votes
asked Oct 12, 2019 in Big Data | Hadoop by GeorgeBell
...