-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add in Transfer Manager chunked upload/download samples (#2518)
- Loading branch information
1 parent
b7d673c
commit d1f6bcc
Showing
3 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
...pets/src/main/java/com/example/storage/transfermanager/AllowDivideAndConquerDownload.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package com.example.storage.transfermanager; | ||
|
||
// [START storage_transfer_manager_download_chunks_concurrently] | ||
import com.google.cloud.storage.BlobInfo; | ||
import com.google.cloud.storage.transfermanager.DownloadResult; | ||
import com.google.cloud.storage.transfermanager.ParallelDownloadConfig; | ||
import com.google.cloud.storage.transfermanager.TransferManager; | ||
import com.google.cloud.storage.transfermanager.TransferManagerConfig; | ||
import java.nio.file.Path; | ||
import java.util.List; | ||
|
||
class AllowDivideAndConquerDownload { | ||
|
||
public static void divideAndConquerDownloadAllowed(List<BlobInfo> blobs, | ||
String bucketName, Path destinationDirectory) { | ||
TransferManager transferManager = TransferManagerConfig.newBuilder() | ||
.setAllowDivideAndConquerDownload(true) | ||
.build() | ||
.getService(); | ||
ParallelDownloadConfig parallelDownloadConfig = ParallelDownloadConfig.newBuilder() | ||
.setBucketName(bucketName) | ||
.setDownloadDirectory(destinationDirectory) | ||
.build(); | ||
List<DownloadResult> results = transferManager | ||
.downloadBlobs(blobs, parallelDownloadConfig) | ||
.getDownloadResults(); | ||
|
||
for (DownloadResult result : results) { | ||
System.out.println("Download of " + result.getInput().getName() | ||
+ " completed with status " | ||
+ result.getStatus()); | ||
} | ||
|
||
} | ||
} | ||
// [END storage_transfer_manager_download_chunks_concurrently] |
51 changes: 51 additions & 0 deletions
51
...ppets/src/main/java/com/example/storage/transfermanager/AllowParallelCompositeUpload.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright 2024 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
package com.example.storage.transfermanager; | ||
|
||
// [START storage_transfer_manager_upload_chunks_concurrently] | ||
import com.google.cloud.storage.transfermanager.ParallelUploadConfig; | ||
import com.google.cloud.storage.transfermanager.TransferManager; | ||
import com.google.cloud.storage.transfermanager.TransferManagerConfig; | ||
import com.google.cloud.storage.transfermanager.UploadResult; | ||
import java.io.IOException; | ||
import java.nio.file.Path; | ||
import java.util.List; | ||
|
||
class AllowParallelCompositeUpload { | ||
|
||
public static void parallelCompositeUploadAllowed(String bucketName, List<Path> files) | ||
throws IOException { | ||
TransferManager transferManager = TransferManagerConfig | ||
.newBuilder() | ||
.setAllowParallelCompositeUpload(true) | ||
.build() | ||
.getService(); | ||
ParallelUploadConfig parallelUploadConfig = | ||
ParallelUploadConfig.newBuilder().setBucketName(bucketName).build(); | ||
List<UploadResult> results = | ||
transferManager.uploadFiles(files, parallelUploadConfig).getUploadResults(); | ||
for (UploadResult result : results) { | ||
System.out.println( | ||
"Upload for " | ||
+ result.getInput().getName() | ||
+ " completed with status " | ||
+ result.getStatus()); | ||
} | ||
} | ||
} | ||
// [END storage_transfer_manager_upload_chunks_concurrently] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters