Package | Description |
---|---|
org.apache.hadoop.fs |
An abstract file system API.
|
org.apache.hadoop.fs.impl |
This package contains implementation classes for use inside
filesystems.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<UploadHandle> |
MultipartUploader.startUpload(Path filePath)
Initialize a multipart upload.
|
Modifier and Type | Method and Description |
---|---|
CompletableFuture<Void> |
MultipartUploader.abort(UploadHandle uploadId,
Path filePath)
Aborts a multipart upload.
|
CompletableFuture<PathHandle> |
MultipartUploader.complete(UploadHandle uploadId,
Path filePath,
Map<Integer,PartHandle> handles)
Complete a multipart upload.
|
CompletableFuture<PartHandle> |
MultipartUploader.putPart(UploadHandle uploadId,
int partNumber,
Path filePath,
InputStream inputStream,
long lengthInBytes)
Put part as part of a multipart upload.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractMultipartUploader.checkPutArguments(Path filePath,
InputStream inputStream,
int partNumber,
UploadHandle uploadId,
long lengthInBytes)
Check all the arguments to the
MultipartUploader.putPart(UploadHandle, int, Path, InputStream, long)
operation. |
Copyright © 2008–2022 Apache Software Foundation. All rights reserved.