issues
search
techmango-org
/
techmango
A technical blog for mango developers
0
stars
0
forks
source link
Hbase - Why we should keep column names minimal (1-2 letters)
#30
Open
sachinjain024
opened
6 years ago
sachinjain024
commented
6 years ago
Items
Column names are stored at every row since this is nosql key value store. If you are storing a schema based data, it is highly inefficient.
More data fits into memstore => less flushing
Less flushing => less hfiles
less hfiles => lesser compaction work and faster scan
small column names means more data fits into one block
More data fits into memory, faster scan.
Items