You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@gobblin.apache.org by GitBox <gi...@apache.org> on 2021/11/17 23:02:19 UTC

[GitHub] [gobblin] arjun4084346 commented on a change in pull request #3430: [GOBBLIN-1577] change the multiplier used in ExponentialWaitStrategy to a reasonable…

arjun4084346 commented on a change in pull request #3430:
URL: https://github.com/apache/gobblin/pull/3430#discussion_r751711718



##########
File path: gobblin-compaction/src/main/java/org/apache/gobblin/compaction/mapreduce/MRCompactorJobRunner.java
##########
@@ -186,7 +186,7 @@
         ImmutableMap.<String, Object>builder()
             .put(RETRY_TIME_OUT_MS, TimeUnit.MINUTES.toMillis(2L))   //Overall retry for 2 minutes
             .put(RETRY_INTERVAL_MS, TimeUnit.SECONDS.toMillis(5L)) //Try to retry 5 seconds
-            .put(RETRY_MULTIPLIER, 2L) // Muliply by 2 every attempt
+            .put(RETRY_MULTIPLIER, TimeUnit.SECONDS.toMillis(2L))

Review comment:
       god catch. increased maximumWait




-- 
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: dev-unsubscribe@gobblin.apache.org

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