
Faster lookup of records using the row keys. It helped to fetch thousands of documents in a much faster way using the row keys
As it is a columnar data store, it helped us to improve the query performance and aggregations
Sharding helps us to optimise data storage and retrieval. HBase provides automatic or manual sharding of tables.
The dynamic addition of columns and column families helped us efficiently modify the schema. Review collected by and hosted on G2.com.
It cannot have multiple indexes as the row key is the only column which could be indexed.
HBase does not support partial row keys, which limits its query performance. Review collected by and hosted on G2.com.




