wangp-nhlab commented on code in PR #6544:
URL: https://github.com/apache/hudi/pull/6544#discussion_r965463084


##########
hudi-common/src/main/java/org/apache/hudi/common/table/view/RemoteHoodieTableFileSystemView.java:
##########
@@ -176,7 +178,8 @@ private <T> T executeRequest(String requestPath, 
Map<String, String> queryParame
         response = 
Request.Post(url).connectTimeout(timeout).socketTimeout(timeout).execute();
         break;
     }
-    String content = response.returnContent().asString();
+    Charset charset = Consts.UTF_8;
+    String content = response.returnContent().asString(charset);

Review Comment:
   Yes, it is found that only the append mode in Spark has this problem.



-- 
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: commits-unsubscr...@hudi.apache.org

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

Reply via email to