saintstack commented on a change in pull request #820: HBASE-23286 Improve MTTR: Split WAL to HFile URL: https://github.com/apache/hbase/pull/820#discussion_r361720444
########## File path: hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java ########## @@ -51,11 +51,19 @@ /** Used as a magic return value while optimized index key feature enabled(HBASE-7845) */ public final static int INDEX_KEY_MAGIC = -2; + /* - * Name of directory that holds recovered edits written by the wal log - * splitting code, one per region - */ + * Name of directory that holds recovered edits written by the wal log + * splitting code, one per region + */ public static final String RECOVERED_EDITS_DIR = "recovered.edits"; + + /* + * Name of directory that holds recovered hfiles written by the wal log + * splitting code, one per region + */ + public static final String RECOVERED_HFILES_DIR = "recovered.hfiles"; Review comment: good ---------------------------------------------------------------- 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
