use of alluxio.fuse.AlluxioJniFuseFileSystem in project alluxio by Alluxio.
the class JNIFuseIntegrationTest method mountFuse.
@Override
public void mountFuse(FileSystem fileSystem, String mountPoint, String alluxioRoot) {
FuseMountOptions options = new FuseMountOptions(mountPoint, alluxioRoot, false, new ArrayList<>());
mFuseFileSystem = new AlluxioJniFuseFileSystem(fileSystem, options, ServerConfiguration.global());
mFuseFileSystem.mount(false, false, new String[] {});
}
Aggregations