org.apache.hadoop.fs.contract.AbstractFSContract Java Examples

The following examples show how to use org.apache.hadoop.fs.contract.AbstractFSContract. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TestFTPContractOpen.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new FTPContract(conf);
}
 
Example #2
Source File: TestSwiftContractMkdir.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new SwiftContract(conf);
}
 
Example #3
Source File: TestHDFSContractRootDirectory.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new HDFSContract(conf);
}
 
Example #4
Source File: TestS3AContractSeek.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #5
Source File: TestS3AContractRootDir.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #6
Source File: TestSwiftContractDelete.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new SwiftContract(conf);
}
 
Example #7
Source File: TestHDFSContractOpen.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new HDFSContract(conf);
}
 
Example #8
Source File: TestHDFSContractRename.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new HDFSContract(conf);
}
 
Example #9
Source File: TestS3AContractMkdir.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #10
Source File: TestS3NContractSeek.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new NativeS3Contract(conf);
}
 
Example #11
Source File: TestHDFSContractConcat.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new HDFSContract(conf);
}
 
Example #12
Source File: TestLocalFSContractMkdir.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #13
Source File: TestS3AContractDelete.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #14
Source File: TestFTPContractMkdir.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new FTPContract(conf);
}
 
Example #15
Source File: TestLocalFSContractSeek.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #16
Source File: TestRawlocalContractSeek.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new RawlocalFSContract(conf);
}
 
Example #17
Source File: TestS3AContractRename.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #18
Source File: TestRawlocalContractRename.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new RawlocalFSContract(conf);
}
 
Example #19
Source File: TestLocalFSContractRename.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #20
Source File: TestLocalFSContractOpen.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #21
Source File: TestLocalFSContractDelete.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #22
Source File: TestLocalFSContractAppend.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #23
Source File: TestLocalFSContractLoaded.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #24
Source File: TestLocalFSContractSeek.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new LocalFSContract(conf);
}
 
Example #25
Source File: TestS3ABlocksize.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #26
Source File: TestS3NContractCreate.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new NativeS3Contract(conf);
}
 
Example #27
Source File: TestFTPContractMkdir.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new FTPContract(conf);
}
 
Example #28
Source File: TestS3AContractRename.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #29
Source File: TestS3AContractCreate.java    From hadoop with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new S3AContract(conf);
}
 
Example #30
Source File: TestS3NContractDelete.java    From big-c with Apache License 2.0 4 votes vote down vote up
@Override
protected AbstractFSContract createContract(Configuration conf) {
  return new NativeS3Contract(conf);
}