danny0405 commented on code in PR #5884:
URL: https://github.com/apache/hudi/pull/5884#discussion_r907118343


##########
hudi-common/src/main/java/org/apache/hudi/common/table/view/RemoteHoodieTableFileSystemView.java:
##########
@@ -165,17 +176,17 @@ private <T> T executeRequest(String requestPath, 
Map<String, String> queryParame
 
     String url = builder.toString();
     LOG.info("Sending request : (" + url + ")");
-    Response response;
     int timeout = this.timeoutSecs * 1000; // msec
-    switch (method) {
-      case GET:
-        response = 
Request.Get(url).connectTimeout(timeout).socketTimeout(timeout).execute();
-        break;
-      case POST:
-      default:
-        response = 
Request.Post(url).connectTimeout(timeout).socketTimeout(timeout).execute();
-        break;
-    }
+    RetryHelper.CheckedFunction<Response> checkedFun = () -> {
+      switch (method) {
+        case GET:
+          return 
Request.Get(url).connectTimeout(timeout).socketTimeout(timeout).execute();
+        case POST:
+        default:
+          return 
Request.Post(url).connectTimeout(timeout).socketTimeout(timeout).execute();

Review Comment:
   @nsivabalan , can you help with this part if you have time, the code is not 
efficient compared to the original, wondering if you have some good idea here ?



-- 
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]

Reply via email to