1
0

Hoodie operability with S3

This commit is contained in:
Yash Sharma
2017-03-24 14:42:10 +11:00
committed by vinoth chandar
parent a7cd021f26
commit d6f94b998d
4 changed files with 91 additions and 11 deletions

View File

@@ -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<>();
SUPPORT_SCHEMES.add("file");
SUPPORT_SCHEMES.add("hdfs");
SUPPORT_SCHEMES.add("s3");
}
private ConcurrentMap<String, SizeAwareFSDataOutputStream> openStreams =