Skip navigation links
A C D E F G I M O R S T U W 

A

abortMultiPartUpload() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
abortMultiPartUpload(AmazonS3, String) - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
Aborts multipart upload.
alluxio.underfs.s3a - package alluxio.underfs.s3a
 

C

cleanup() - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
close() - Method in class alluxio.underfs.s3a.S3AInputStream
 
close() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
close() - Method in class alluxio.underfs.s3a.S3AOutputStream
 
completeMultiPartUpload() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
completeMultiPartUpload(AmazonS3, String) - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
Completes multipart upload.
copyObject(String, String) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
create(String, UnderFileSystemConfiguration) - Method in class alluxio.underfs.s3a.S3AUnderFileSystemFactory
 
createAmazonS3(AWSCredentialsProvider, ClientConfiguration, AwsClientBuilder.EndpointConfiguration, UnderFileSystemConfiguration) - Static method in class alluxio.underfs.s3a.S3AUnderFileSystem
Create an AmazonS3 client.
createAwsCredentialsProvider(UnderFileSystemConfiguration) - Static method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
createEmptyObject(String) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
createInstance(AlluxioURI, UnderFileSystemConfiguration) - Static method in class alluxio.underfs.s3a.S3AUnderFileSystem
Constructs a new instance of S3AUnderFileSystem.
createObject(String) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 

D

deleteObject(String) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
deleteObjects(List<String>) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 

E

execUpload(UploadPartRequest) - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
execUpload(AmazonS3, UploadPartRequest) - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
Executes the upload part request.

F

flush() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
flush() - Method in class alluxio.underfs.s3a.S3AOutputStream
 

G

getClient() - Method in class alluxio.underfs.s3a.S3AInputStream
 
getClient() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
getFolderSuffix() - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
getObjectListingChunk(String, boolean) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
getObjectStatus(String) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
getPermissions() - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
getRootKey() - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
getTransferManager() - Method in class alluxio.underfs.s3a.S3AOutputStream
 
getUnderFSType() - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
getUploadPath() - Method in class alluxio.underfs.s3a.S3AOutputStream
 

I

initMultiPartUpload() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 

M

mBucketName - Variable in class alluxio.underfs.s3a.S3AInputStream
Name of the bucket the object resides in.
mClient - Variable in class alluxio.underfs.s3a.S3AInputStream
Client for operations with s3.
mClient - Variable in class alluxio.underfs.s3a.S3ALowLevelOutputStream
The Amazon S3 client to interact with S3.
mIn - Variable in class alluxio.underfs.s3a.S3AInputStream
The backing input stream from s3.
mKey - Variable in class alluxio.underfs.s3a.S3AInputStream
The path of the object to read.
mKey - Variable in class alluxio.underfs.s3a.S3ALowLevelOutputStream
Key of the file when it is uploaded to S3.
mKey - Variable in class alluxio.underfs.s3a.S3AOutputStream
Key of the file when it is uploaded to S3.
mManager - Variable in class alluxio.underfs.s3a.S3AOutputStream
A TransferManager to upload the file to S3 using Multipart Uploads.
mPos - Variable in class alluxio.underfs.s3a.S3AInputStream
The current position of the stream.
mRetryPolicy - Variable in class alluxio.underfs.s3a.S3AInputStream
Policy determining the retry behavior in case the key does not exist.

O

openObject(String, OpenOptions, RetryPolicy) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 

R

read() - Method in class alluxio.underfs.s3a.S3AInputStream
 
read(byte[]) - Method in class alluxio.underfs.s3a.S3AInputStream
 
read(byte[], int, int) - Method in class alluxio.underfs.s3a.S3AInputStream
 

S

S3AInputStream - Class in alluxio.underfs.s3a
A wrapper around an S3ObjectInputStream which handles skips efficiently.
S3AInputStream(String, String, AmazonS3, RetryPolicy) - Constructor for class alluxio.underfs.s3a.S3AInputStream
Constructor for an input stream of an object in s3 using the aws-sdk implementation to read the data.
S3AInputStream(String, String, AmazonS3, long, RetryPolicy) - Constructor for class alluxio.underfs.s3a.S3AInputStream
Constructor for an input stream of an object in s3 using the aws-sdk implementation to read the data.
S3ALowLevelOutputStream - Class in alluxio.underfs.s3a
[Experimental] A stream for writing a file into S3 using streaming upload.
S3ALowLevelOutputStream(String, String, AmazonS3, ListeningExecutorService, long, List<String>, boolean) - Constructor for class alluxio.underfs.s3a.S3ALowLevelOutputStream
Constructs a new stream for writing a file.
S3AOutputStream - Class in alluxio.underfs.s3a
A stream for writing a file into S3.
S3AOutputStream(String, String, TransferManager, List<String>, boolean) - Constructor for class alluxio.underfs.s3a.S3AOutputStream
Constructs a new stream for writing a file.
S3AUnderFileSystem - Class in alluxio.underfs.s3a
S3 UnderFileSystem implementation based on the aws-java-sdk-s3 library.
S3AUnderFileSystem(AlluxioURI, AmazonS3, String, ExecutorService, TransferManager, UnderFileSystemConfiguration, boolean) - Constructor for class alluxio.underfs.s3a.S3AUnderFileSystem
Constructor for S3AUnderFileSystem.
S3AUnderFileSystemFactory - Class in alluxio.underfs.s3a
Factory for creating S3AUnderFileSystem.
S3AUnderFileSystemFactory() - Constructor for class alluxio.underfs.s3a.S3AUnderFileSystemFactory
Constructs a new S3AUnderFileSystemFactory.
S3AUtils - Class in alluxio.underfs.s3a
Util functions for S3A under file system.
setMode(String, short) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
setOwner(String, String, String) - Method in class alluxio.underfs.s3a.S3AUnderFileSystem
 
skip(long) - Method in class alluxio.underfs.s3a.S3AInputStream
 
supportsPath(String) - Method in class alluxio.underfs.s3a.S3AUnderFileSystemFactory
 

T

translateBucketAcl(AccessControlList, String) - Static method in class alluxio.underfs.s3a.S3AUtils
Translates S3 bucket ACL to Alluxio owner mode.

U

uploadPart() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
Uploads part async.

W

waitForAllPartsUpload() - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
Waits for the submitted upload tasks to finish.
write(int) - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
write(byte[]) - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
write(byte[], int, int) - Method in class alluxio.underfs.s3a.S3ALowLevelOutputStream
 
write(int) - Method in class alluxio.underfs.s3a.S3AOutputStream
 
write(byte[]) - Method in class alluxio.underfs.s3a.S3AOutputStream
 
write(byte[], int, int) - Method in class alluxio.underfs.s3a.S3AOutputStream
 
A C D E F G I M O R S T U W 
Skip navigation links

Copyright © 2021. All Rights Reserved.