PDavid commented on PR #7371: URL: https://github.com/apache/hbase/pull/7371#issuecomment-3386224950
I tested this locally in standalone mode after building with Maven (`mvn clean install -DskipTests && bin/start-hbase.sh`). I created some tables, adding data with the `ltt` tool (`bin/hbase ltt -num_keys 10000 -write 100:100 -num_tables 10 -multiput`) <img width="4002" height="3253" alt="image" src="https://github.com/user-attachments/assets/7ca972b4-1481-45ed-bbe8-5de5e5bd60c5" /> Also configured BlockCache accordiong to the example configuration https://hbase.apache.org/book.html#bc.example ``` conf/hbase-env.sh: ... export HBASE_HEAPSIZE=5G ... conf/hbase-site.xml: ... <property> <name>hbase.bucketcache.ioengine</name> <value>offheap</value> </property> <property> <name>hfile.block.cache.size</name> <value>0.2</value> </property> <property> <name>hbase.bucketcache.size</name> <value>4196</value> </property> ... ``` and checked the RS status page if the Block Cache details and the Hit ration periods are properly displayed: <img width="3948" height="2106" alt="image" src="https://github.com/user-attachments/assets/62124d7c-032d-4999-9447-25e1f3caba0c" /> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
