Github user poornachandra commented on a diff in the pull request:
https://github.com/apache/incubator-tephra/pull/29#discussion_r98804704
--- Diff:
tephra-hbase-compat-1.1-base/src/main/java/org/apache/tephra/hbase/coprocessor/TransactionProcessor.java
---
@@ -324,9 +326,14 @@ public InternalScanner
preCompactScannerOpen(ObserverContext<RegionCoprocessorEn
TxConstants.TransactionPruning.DEFAULT_PRUNE_ENABLE);
String pruneTable =
conf.get(TxConstants.TransactionPruning.PRUNE_STATE_TABLE,
TxConstants.TransactionPruning.DEFAULT_PRUNE_STATE_TABLE);
- compactionState = new CompactionState(c.getEnvironment(),
TableName.valueOf(pruneTable));
- LOG.debug("Automatic invalid list pruning is enabled. Compaction
state will be recorded in table " +
- pruneTable);
+ long pruneFlushInterval = TimeUnit.SECONDS.toMillis(
--- End diff --
This line, and the line above getting `pruneTable` can also move into the
if condition, right?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---