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

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

Introduction

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

Usage

From source file org.gridgain.grid.kernal.processors.hadoop.fs.GridHadoopRawLocalFileSystem.java

/**
 * Local file system implementation for Hadoop.
 */
public class GridHadoopRawLocalFileSystem extends FileSystem {
    /** Working directory for each thread. */
    private final ThreadLocal<Path> workDir = new ThreadLocal<Path>() {

From source file org.kitesdk.morphline.hadoop.rcfile.SingleStreamFileSystem.java

/**
 * Very simple Filesystem Implementation which serves an InputStream for a given
 * path. This is used to serve the underlying input stream from a FileSystem
 * Interface. Only open() and getFileStatus() is implemented.
 */
public final class SingleStreamFileSystem extends FileSystem {

From source file org.lafs.hdfs.LAFS.java

public class LAFS extends FileSystem {

    private static final Logger logger = Logger.getLogger(LAFS.class.getName());

    private int writeChunkSize = 1024 * 1024 * 1024; // default 100 MB

From source file org.pentaho.hadoop.shim.common.fs.FileSystemProxy.java

public class FileSystemProxy extends org.apache.hadoop.fs.FileSystem implements FileSystem {

    private org.apache.hadoop.fs.FileSystem delegate;

    public FileSystemProxy(org.apache.hadoop.fs.FileSystem delegateParam) {
        if (delegateParam == null) {

From source file org.springframework.data.hadoop.fs.SimplerFileSystem.java

/**
 * FileSystem decorator that overloads methods to accept Strings instead of {@link Path}s.
 * 
 * @author Costin Leau
 */
@SuppressWarnings("deprecation")

From source file org.springframework.xd.hadoop.fs.StubFileSystem.java

/**
 * @author Mark Fisher
 */
public class StubFileSystem extends FileSystem {

    @Override

From source file org.xtreemfs.common.clients.hadoop.XtreemFSFileSystem.java

/**
 * 
 * @author PaulSeiferth
 */
public class XtreemFSFileSystem extends FileSystem {

From source file ras.test.hadoop.fs.InMemoryFileSystem.java

/**
 * An in-memory implementation of a {@link FileSystem}. This class was written
 * to support testing of code developed for the Hadoop environment.
 * <p>
 * The file system state is managed statically. Each call to
 * {@link #configure(Configuration)} creates a new file system context in static

From source file stargate.client.hdfs.StargateHDFS.java

/**
 *
 * @author iychoi
 */
public class StargateHDFS extends FileSystem {

From source file tachyon.hadoop.AbstractTFS.java

/**
 * Base class for Apache Hadoop based Tachyon {@link FileSystem}. This class really just delegates
 * to {@link tachyon.client.TachyonFS} for most operations.
 *
 * All implementing classes must define {@link #isZookeeperMode()} which states if fault tolerant is
 * used and {@link #getScheme()} for Hadoop's {@link java.util.ServiceLoader} support.