public class FileSystemCreator {
static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(FileSystemCreator.class);
public static DrillFileSystem getFileSystem(DrillConfig config, Configuration fsConf) throws IOException{
FileSystem fs = FileSystem.get(fsConf);
return new FallbackFileSystem(config, fs);
}