[ 
https://issues.apache.org/jira/browse/HIVE-24918?focusedWorklogId=626370&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-626370
 ]

ASF GitHub Bot logged work on HIVE-24918:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 21/Jul/21 23:54
            Start Date: 21/Jul/21 23:54
    Worklog Time Spent: 10m 
      Work Description: hmangla98 commented on a change in pull request #2121:
URL: https://github.com/apache/hive/pull/2121#discussion_r674418439



##########
File path: ql/src/java/org/apache/hadoop/hive/ql/exec/repl/ReplDumpTask.java
##########
@@ -242,6 +253,56 @@ public int execute() {
     return 0;
   }
 
+  private void rollbackFailover(Path failoverReadyMarker, Path 
failoverMetadataFile, Database db)
+          throws HiveException, IOException {
+    LOG.info("Rolling back failover initiated in previous dump iteration.");
+    FileSystem fs = failoverMetadataFile.getFileSystem(conf);
+    if (failoverMetadataFile != null) {
+      fs.delete(failoverMetadataFile, true);
+    }
+    if (failoverReadyMarker != null) {
+      fs.delete(failoverReadyMarker, true);
+    }
+    unsetReplFailoverEnabledIfSet(db);
+  }
+
+  private boolean checkFailoverStatus(Path previousValidHiveDumpPath) throws 
HiveException, IOException {

Review comment:
       Will refractor 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: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 626370)
    Time Spent: 6h 20m  (was: 6h 10m)

> Handle failover case during Repl Dump
> -------------------------------------
>
>                 Key: HIVE-24918
>                 URL: https://issues.apache.org/jira/browse/HIVE-24918
>             Project: Hive
>          Issue Type: New Feature
>            Reporter: Haymant Mangla
>            Assignee: Haymant Mangla
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 6h 20m
>  Remaining Estimate: 0h
>
> To handle:
>  a) Whenever user wants to go ahead with failover, during the next or 
> subsequent repl dump operation upon confirming that there are no pending open 
> transaction events, It should create a _failover_ready marker file in the 
> dump dir. This marker file would contain scheduled query name
> that has generated this dump.
> b) Skip next repl dump instances once we have the marker file placed.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to