Package org.apache.drill.exec.store.dfs.shim.fallback

Examples of org.apache.drill.exec.store.dfs.shim.fallback.FallbackFileSystem


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);
  }
View Full Code Here


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);
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.store.dfs.shim.fallback.FallbackFileSystem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.