Контрольні точки
Enable the Cloud Scheduler API
/ 10
Create a Cloud Storage bucket
/ 10
Make bucket public
/ 10
Create another cloud storage bucket
/ 10
Deploy Cloud Run function
/ 30
Confirm the migration of bucket to Nearline.
/ 30
Optimizing Cost with Google Cloud Storage
- GSP649
- Overview
- Objectives
- Setup and requirements
- Task 1. Enable APIs and download the source code
- Task 2. Create the Cloud Storage buckets and add a file
- Task 3. Create a monitoring dashboard
- Task 4. Generate load on the serving bucket
- Task 5. Review and deploy the Cloud Run function
- Task 6. Test and validate alerting automation
- Congratulations!
GSP649
Overview
In this lab, you use Cloud Run functions and Cloud Scheduler to identify and clean up wasted cloud resources. You trigger a Cloud Run function to migrate a storage bucket from a Cloud Monitoring alerting policy to a less expensive storage class.
Google Cloud provides storage object lifecycle rules that automatically moves objects to different storage classes based on a set of attributes, such as their creation date or live state. However, these rules can’t take into account whether the objects have been accessed. Sometimes, you might want to move newer objects to Nearline storage if they haven’t been accessed for a certain period of time.
Objectives
In this lab, you will learn how to:
- Create two storage buckets, add a file to the
serving-bucket
, and generate traffic against it. - Create a Cloud Monitoring dashboard to visualize bucket utilization.
- Deploy a Cloud Run function to migrate the idle bucket to a less expensive storage class, and trigger the function by using a payload intended to mock a notification received from a Cloud alerting policy.
Setup and requirements
Before you click the Start Lab button
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.
This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
- Access to a standard internet browser (Chrome browser recommended).
- Time to complete the lab---remember, once you start, you cannot pause a lab.
How to start your lab and sign in to the Google Cloud console
-
Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is the Lab Details panel with the following:
- The Open Google Cloud console button
- Time remaining
- The temporary credentials that you must use for this lab
- Other information, if needed, to step through this lab
-
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
Note: If you see the Choose an account dialog, click Use Another Account. -
If necessary, copy the Username below and paste it into the Sign in dialog.
{{{user_0.username | "Username"}}} You can also find the Username in the Lab Details panel.
-
Click Next.
-
Copy the Password below and paste it into the Welcome dialog.
{{{user_0.password | "Password"}}} You can also find the Password in the Lab Details panel.
-
Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials. Note: Using your own Google Cloud account for this lab may incur extra charges. -
Click through the subsequent pages:
- Accept the terms and conditions.
- Do not add recovery options or two-factor authentication (because this is a temporary account).
- Do not sign up for free trials.
After a few moments, the Google Cloud console opens in this tab.
Activate Cloud Shell
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
- Click Activate Cloud Shell at the top of the Google Cloud console.
When you are connected, you are already authenticated, and the project is set to your Project_ID,
gcloud
is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
- (Optional) You can list the active account name with this command:
- Click Authorize.
Output:
- (Optional) You can list the project ID with this command:
Output:
gcloud
, in Google Cloud, refer to the gcloud CLI overview guide.
Architecture
In the following diagram, you trigger a Cloud Run function to migrate a storage bucket to a less expensive storage class from a Cloud Monitoring alerting policy.
Task 1. Enable APIs and download the source code
-
Click Activate Cloud Shell at the top of the Google Cloud console.
-
In Cloud Shell, enable the Cloud Scheduler API:
Click Check my progress to verify the objective.
- Download the source code for the lab:
- Set environment variables and make the repository folder your $WORKDIR where you run all commands related to this lab:
- Install Apache Bench, an open source load-generation tool:
Task 2. Create the Cloud Storage buckets and add a file
- In Cloud Shell, navigate to the
migrate-storage
directory:
- Create
serving-bucket
, the Cloud Storage bucket. You use this later to change storage classes:
Click Check my progress to verify the objective.
- Make the bucket public:
- Add a text file to the bucket:
- Make the file public:
- Confirm that you’re able to access the file:
Your output will be:
Click Check my progress to verify the objective.
- Create a second bucket called idle-bucket that won’t serve any data:
Click Check my progress to verify the objective.
Task 3. Create a monitoring dashboard
Create a Monitoring Metrics Scope
Set up a Monitoring Metrics Scope that's tied to your Google Cloud Project. The following steps create a new account that has a free trial of Monitoring.
- In the Cloud Console, click Navigation menu () > View All Products > Observability > Monitoring.
When the Monitoring Overview page opens, your metrics scope project is ready.
-
In the left panel, click Dashboards > +Create Dashboard.
-
Name the Dashboard
Bucket Usage
. -
Click +ADD WIDGET.
-
Click Line Chart.
-
For Widget Title, type
Bucket Access
. -
For select a metric > GCS Bucket > Api > Request count metric and click Apply.
- Click + Add Filter.
To filter by the method name:
- For Metric Labels, select method.
- For Comparator, select =(equals).
- For Value, select ReadObject.
- Click Apply.
- To group the metrics by bucket name, in the Group By drop-down list, select bucket_name and click ok.
You’ve configured Cloud Monitoring to observe object access in your buckets. There's no data in the chart because there's no traffic to the Cloud Storage buckets.
Task 4. Generate load on the serving bucket
Now that you configured monitoring, use Apache Bench to send traffic to serving-bucket
.
- In Cloud Shell, send requests to the object in the serving bucket:
- In the left panel, click Dashboards and then click the name of your Dashboard that is Bucket Usage to see the Bucket Access chart.
- View traffic details.
You may need to enter CTRL-C to return to the command prompt.
Task 5. Review and deploy the Cloud Run function
- In Cloud Shell, enter the following command to view the Cloud Run function code that migrates a storage bucket to the Nearline storage class:
The output is:
Notice that the Cloud Run function uses the bucket name passed in the request to change it's storage class to Nearline.
- Update the Python script to use your Project ID:
- Disable the Cloud Run functions API:
- Re-enable the Cloud Run functions API:
- Export the project number:
- Add the
artifactregistry.reader
permission for your developer service account:
- Deploy the Cloud Run function:
When prompted, enter Y
to allow unauthenticated invocations.
- Capture the trigger URL into an environment variable that you use in the next section:
Click Check my progress to verify the objective.
Task 6. Test and validate alerting automation
- Update the JSON file with the bucket name:
- Send a test notification to the Cloud Run function you deployed using the
incident.json
file:
The output is:
The output isn’t terminated with a newline and therefore is immediately followed by the command prompt.
- Confirm that the idle bucket was migrated to Nearline:
The output is:
Click Check my progress to verify the objective.
Congratulations!
Congratulations! In this lab, you successfully created two Cloud Storage buckets, added an object to one of them, configured Cloud Monitoring to track bucket access, reviewed and deployed a Cloud Run function to migrate objects to a Nearline bucket, and tested it using a Cloud Monitoring alert.
Google Cloud training and certification
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated October 15, 2024
Lab Last Tested October 15, 2024
Copyright 2024 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.