任何对象都有它的生命周期,所以jvm需要定时地回收掉不用的内存,防止内存耗完。GC的时候必须暂停所有的java线程,不可以出现在分析过程中对象引用关系还在不停变化的情况。否则分析结果的准确性无法保证。
这种暂停线程的现象叫"stop the world",它给用户带去了不良体验,但无法完全避免。
...
[译]HBase2.0官方文档翻译-RegionServer Sizing Rules of Thumb
36. On the number of column families
HBase currently does not do well with anything above two or three column families so keep the number of column f...