InterviewSolution
Saved Bookmarks
| 1. |
What are the step in writing something into Hbase by a client? |
|
Answer» In Hbase the client does not write directly into the HFile. The client first writes to WAL(Write Access Log), which then is accessed by Memstore. The Memstore Flushes the data into permanent memory from time to time. |
|