-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(compute): add compute disk regional replicated sample #9697
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
4b66ae8
Implemented compute_disk_regional_replicated sample, created test
TetyanaYahodska db90f7f
Fixed zone
TetyanaYahodska ab9cc42
Fixed test
TetyanaYahodska 918587e
Resolved merge conflict
TetyanaYahodska 1a23697
Fixed test
TetyanaYahodska 1fea549
Fixed disk size
TetyanaYahodska 277d663
Fixed code as requested in the comment
TetyanaYahodska 83413f2
Merge branch 'main' into compute_disk_regional_replicated
TetyanaYahodska File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
87 changes: 87 additions & 0 deletions
87
compute/cloud-client/src/main/java/compute/disks/CreateReplicatedDisk.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,87 @@ | ||
/* | ||
* 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 compute.disks; | ||
|
||
// [START compute_disk_regional_replicated] | ||
import com.google.cloud.compute.v1.Disk; | ||
import com.google.cloud.compute.v1.InsertRegionDiskRequest; | ||
import com.google.cloud.compute.v1.Operation; | ||
import com.google.cloud.compute.v1.RegionDisksClient; | ||
import java.io.IOException; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import java.util.concurrent.ExecutionException; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.concurrent.TimeoutException; | ||
|
||
public class CreateReplicatedDisk { | ||
|
||
public static void main(String[] args) | ||
throws IOException, InterruptedException, ExecutionException, TimeoutException { | ||
// TODO(developer): Replace these variables before running the sample. | ||
// Project ID or project number of the Cloud project you want to use. | ||
String projectId = "YOUR_PROJECT_ID"; | ||
// The region for the replicated disk to reside in. | ||
// The disk must be in the same region as the VM that you plan to attach it to. | ||
String region = "us-central1"; | ||
// The zones within the region where the two disk replicas are located | ||
List<String> replicaZones = new ArrayList<>(); | ||
replicaZones.add(String.format("projects/%s/zones/%s", projectId, "us-central1-a")); | ||
replicaZones.add(String.format("projects/%s/zones/%s", projectId, "us-central1-b")); | ||
// Name of the disk you want to create. | ||
String diskName = "YOUR_DISK_NAME"; | ||
// Size of the new disk in gigabytes. | ||
int diskSizeGb = 100; | ||
// The type of replicated disk. This value uses the following format: | ||
// "regions/{region}/diskTypes/(pd-standard|pd-ssd|pd-balanced|pd-extreme)". | ||
// For example: "regions/us-west3/diskTypes/pd-ssd" | ||
String diskType = String.format("regions/%s/diskTypes/%s", region, "pd-standard"); | ||
|
||
createReplicatedDisk(projectId, region, replicaZones, diskName, diskSizeGb, diskType); | ||
} | ||
|
||
// Create a disk for synchronous data replication between two zones in the same region | ||
public static Operation.Status createReplicatedDisk(String projectId, String region, | ||
List<String> replicaZones, String diskName, int diskSizeGb, String diskType) | ||
throws IOException, InterruptedException, ExecutionException, TimeoutException { | ||
// Initialize client that will be used to send requests. This client only needs to be created | ||
// once, and can be reused for multiple requests. | ||
try (RegionDisksClient regionDisksClient = RegionDisksClient.create()) { | ||
Disk disk = Disk.newBuilder() | ||
.setSizeGb(diskSizeGb) | ||
.setName(diskName) | ||
.setType(diskType) | ||
.addAllReplicaZones(replicaZones) | ||
.build(); | ||
|
||
InsertRegionDiskRequest insertRegionDiskRequest = InsertRegionDiskRequest.newBuilder() | ||
.setProject(projectId) | ||
.setRegion(region) | ||
.setDiskResource(disk) | ||
.build(); | ||
|
||
Operation response = regionDisksClient.insertAsync(insertRegionDiskRequest) | ||
.get(3, TimeUnit.MINUTES); | ||
|
||
if (response.hasError()) { | ||
throw new Error("Error creating disk! " + response.getError()); | ||
} | ||
return response.getStatus(); | ||
} | ||
} | ||
} | ||
// [END compute_disk_regional_replicated] |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I remember seeing this method in another PR as well. Kindly ensure to resolve merge conflicts in the PRs before merging.