Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ public class HoodieWrapperFileSystem extends FileSystem {
public static final String HOODIE_SCHEME_PREFIX = "hoodie-";

static {
SUPPORT_SCHEMES = new HashSet<>(2);
SUPPORT_SCHEMES = new HashSet<>(3);
SUPPORT_SCHEMES.add("file");
SUPPORT_SCHEMES.add("hdfs");
SUPPORT_SCHEMES.add("viewfs");
}

private ConcurrentMap<String, SizeAwareFSDataOutputStream> openStreams =
Expand Down Expand Up @@ -661,7 +662,7 @@ public static String getHoodieScheme(String scheme) {
newScheme = HOODIE_SCHEME_PREFIX + scheme;
} else {
throw new IllegalArgumentException(
"BlockAlignedAvroParquetWriter does not support schema " + scheme);
"BlockAlignedAvroParquetWriter does not support scheme " + scheme);
}
return newScheme;
}
Expand Down