pkumarsinha commented on a change in pull request #2121:
URL: https://github.com/apache/hive/pull/2121#discussion_r672048448
##########
File path: ql/src/java/org/apache/hadoop/hive/ql/exec/repl/ReplDumpWork.java
##########
@@ -119,16 +122,47 @@ int maxEventLimit() throws Exception {
return maxEventLimit;
}
+ public boolean isFirstDumpAfterFailover() {
+ return firstDumpAfterFailover;
+ }
+
+ public void setFirstDumpAfterFailover(boolean firstDumpAfterFailover) {
+ this.firstDumpAfterFailover = firstDumpAfterFailover;
+ }
+
+ FailoverMetaData getFailoverMetadata() {
+ return fmd;
+ }
+
+ void setFailoverMetadata(FailoverMetaData fmd) {
+ this.fmd = fmd;
+ }
+
+ public boolean isFailoverInProgress() {
+ return failoverInProgress;
+ }
+
+ public void setFailoverInProgress(boolean failoverInProgress) {
Review comment:
We don't need this
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]