| Package | Description | 
|---|---|
| org.apache.hadoop.fs | 
 Implementations of  
AbstractFileSystem for hdfs
    over rpc and hdfs over web. | 
| 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,
       boolean isLastPart,
       Path filePath,
       InputStream inputStream,
       long lengthInBytes)
Put part as part of a multipart upload. 
 | 
Copyright © 2025 Apache Software Foundation. All rights reserved.