Options
- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
how to run major compaction and how to monitor them while runnning ?
Labels:
- Labels:
-
Apache HBase
New Contributor
Created ‎10-23-2018 08:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1 REPLY 1
Contributor
Created ‎10-25-2018 07:55 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can run major compaction manually by running the following commands:
hbase shell major_compact 'TABLE_NAME'
You can also configure that compaction runs automatically by adding this properties in hbase-site.xml:
hbase.regionserver.compaction.enabled hbase.hregion.majorcompaction hbase.hregion.majorcompaction.jitter hbase.hstore.compactionThreshold
You can find more informations here:
https://hbase.apache.org/book.html#_enabling
But be careful, do only major compaction if all region are assigend. No Region should be in RIT (Region in Transition). Also major compaction is a heavyweight operation. So you should run it, when the cluster load is low.
You can monitor the compaction in the HBase Master UI.
Regards,
Michael
