如果我从不写入 table,我是否应该让 Hbase 内存存储非常小?

Should I make the Hbase memstore really tiny if I never write to the table?

我有一个table,table里面的数据是批量上传的。 table.

上没有看跌期权

这是否意味着我可以将 memstore 堆大小减小到非常小?

是的,继续,因为批量加载会跳过写入路径,并且不会写入 WAL 或 memstore,因为它直接写入 HFile 格式,因此 memstore 内存不是 utilised.For 参考,请参阅:http://blog.cloudera.com/blog/2013/09/how-to-use-hbase-bulk-loading-and-why/