busbey commented on a change in pull request #1232: HBASE-23198 Update ref guide for distributed MOB compaction. URL: https://github.com/apache/hbase/pull/1232#discussion_r387921388
########## File path: src/main/asciidoc/_chapters/hbase_mob.adoc ########## @@ -181,84 +323,59 @@ suit your environment, and restart or rolling restart the RegionServer. ---- ==== -=== MOB Optimization Tasks - ==== Manually Compacting MOB Files To manually compact MOB files, rather than waiting for the -<<mob.cache.configure,configuration>> to trigger compaction, use the -`compact` or `major_compact` HBase shell commands. These commands +periodic chore to trigger compaction, use the +`major_compact` HBase shell commands. These commands require the first argument to be the table name, and take a column -family as the second argument. and take a compaction type as the third argument. +family as the second argument. If used with a column family that includes MOB data, then +these operator requests will result in the MOB data being compacted. ---- -hbase> compact 't1', 'c1’, ‘MOB’ -hbase> major_compact 't1', 'c1’, ‘MOB’ +hbase> major_compact 't1' +hbase> major_compact 't2', 'c1’ Review comment: All the shell, java, and rpc stuff is still in place for talking about 'MOB' type compactions is still present. so it'll work just do something different. I'll try to make that clear in the upgrade consideration section. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
