nsivabalan commented on a change in pull request #3887:
URL: https://github.com/apache/hudi/pull/3887#discussion_r790400915
##########
File path:
hudi-common/src/main/java/org/apache/hudi/common/table/HoodieTableMetaClient.java
##########
@@ -253,7 +265,16 @@ public TimelineLayoutVersion getTimelineLayoutVersion() {
*/
public HoodieWrapperFileSystem getFs() {
if (fs == null) {
- FileSystem fileSystem = FSUtils.getFs(metaPath, hadoopConf.newCopy());
+ FileSystem fileSystem;
+ if (fileSystemRetryConfig.isFileSystemActionRetryEnable()) {
Review comment:
Guess, what vinoth refers to is, we should add a property named
supportsRetry or something to each StorageScheme. So, only for those storage
schemes where retries are supported, we can check the config
(fileSystemRetryConfig.isFileSystemActionRetryEnable()) and then invoke our
retry Helper.
@vinothchandar : can you please clarify on your above suggestion.
--
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]