Example usage for org.apache.hadoop.fs DelegateToFileSystem subclass-usage

List of usage examples for org.apache.hadoop.fs DelegateToFileSystem subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.fs DelegateToFileSystem subclass-usage.

Usage

From source file alluxio.hadoop.AlluxioFileSystem.java

/**
 * The Alluxio implementation of Hadoop AbstractFileSystem. The implementation delegates to the
 * existing Alluxio {@link alluxio.hadoop.FileSystem} and is only necessary for use with
 * Hadoop 2.x. Configuration example in Hadoop core-site.xml file:
 * <pre>
 * &lt;property&gt;

From source file com.netflix.bdp.inviso.fs.S3DelegateFS.java

/**
 * Delegate for NativeS3FileSystem
 *
 * @author dweeks
 */
public class S3DelegateFS extends DelegateToFileSystem {

From source file com.splicemachine.fs.localfs.RawSpliceFs.java

/**
 *
 * RawSpliceFs provided to wrap SpliceFileSystem for Yarn Implementaton.
 *
 */
public class RawSpliceFs extends DelegateToFileSystem {

From source file de.zib.sfs.StatisticsFileSystemDelegate.java

public class StatisticsFileSystemDelegate extends DelegateToFileSystem {

    protected StatisticsFileSystemDelegate(URI theUri, FileSystem theFsImpl, Configuration conf,
            String supportedScheme, boolean authorityRequired) throws IOException, URISyntaxException {
        super(theUri, theFsImpl, conf, supportedScheme, authorityRequired);
    }