Checkpoints
Create a cloud storage bucket
/ 50
Deploy the function
/ 50
Cloud Functions: Qwik Start - Command Line
GSP080
Overview
A cloud function is a piece of code that runs in response to an event, such as an HTTP request, a message from a messaging service, or a file upload. Cloud events are things that happen in your cloud environment. These might be things like changes to data in a database, files added to a storage system, or a new virtual machine instance being created.
Since cloud functions are event-driven, they only run when something happens. This makes them a good choice for tasks that need to be done quickly or that don't need to be running all the time.
For example, you can use a cloud function to:
- automatically generate thumbnails for images that are uploaded to Cloud Storage.
- send a notification to a user's phone when a new message is received in Cloud Pub/Sub.
- process data from a Cloud Firestore database and generate a report.
You can write your code in any language that supports Node.js, and you can deploy your code to the cloud with a few clicks. Once your cloud function is deployed, it will automatically start running in response to events.
This hands-on lab shows you how to create, deploy, and test a cloud function using the Google Cloud console.
This hands-on lab shows you how to create, deploy, and test a cloud function using the Google Cloud Shell command line.
What you'll do
- Create a simple cloud function
- Deploy and test the function
- View logs
Setup
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 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 Console. 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 from the Lab Details panel and paste it into the Sign in dialog. Click Next.
-
Copy the Password from the Lab Details panel and paste it into the Welcome dialog. Click Next.
Important: You must use the credentials from the left panel. Do not use your Google Cloud Skills Boost 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 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. The output contains a line that declares the PROJECT_ID for this session:
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.
-
Your output should now look like this:
Output:
- (Optional) You can list the project ID with this command:
Output:
Example output:
gcloud
, in Google Cloud, refer to the gcloud CLI overview guide.
Task 1. Create a function
First, you're going to create a simple function named helloWorld. This function writes a message to the Cloud Functions logs. It is triggered by cloud function events and accepts a callback function used to signal completion of the function.
For this lab the cloud function event is a cloud pub/sub topic event. A pub/sub is a messaging service where the senders of messages are decoupled from the receivers of messages. When a message is sent or posted, a subscription is required for a receiver to be alerted and receive the message. To learn more about pub/subs, in Cloud Pub/Sub Guides, see Google Cloud Pub/Sub: A Google-Scale Messaging Service.
To learn more about the event parameter and the callback parameter, in Cloud Functions Documentation, see Background Functions.
To create a cloud function:
- In Cloud Shell, run the following command to set the default region:
- Create a directory for the function code:
- Move to the
gcf_hello_world
directory:
- Create and open
index.js
to edit:
- Copy the following into the
index.js
file:
- Exit nano (Ctrl+x) and save (Y) the file.
Task 2. Create a cloud storage bucket
- Use the following command to create a new cloud storage bucket for your function:
-
PROJECT_ID is the Project ID in the lab details panel on the left of this lab:
-
BUCKET_NAME is the name you give to the bucket. You can use the Project ID as the bucket name to ensure a globally unique name:
To learn more about naming buckets, In Cloud Storage Documentation, see Bucket naming guidelines.
Test Completed Task
Click Check my progress to verify your performed task. If you have completed the task successfully you will be granted with an assessment score.
Task 3. Deploy your function
When deploying a new function, you must specify --trigger-topic
, --trigger-bucket
, or --trigger-http
. When deploying an update to an existing function, the function keeps the existing trigger unless otherwise specified.
For this lab, you'll set the --trigger-topic
as hello_world
.
- Deploy the function to a pub/sub topic named hello_world, replacing
[BUCKET_NAME]
with the name of your bucket:
If prompted, enter Y
to allow unauthenticated invocations of a new function.
- Verify the status of the function:
An ACTIVE status indicates that the function has been deployed.
Every message published in the topic triggers function execution, the message contents are passed as input data.
Test Completed Task
Click Check my progress to verify your performed task. If you have completed the task successfully you will receive an assessment score.
Task 4. Test the function
After you deploy the function and know that it's active, test that the function writes a message to the cloud log after detecting an event.
- Enter this command to create a message test of the function:
The cloud tool returns the execution ID for the function, which means a message has been written in the log.
Example output:
View logs to confirm that there are log messages with that execution ID.
Task 5. View logs
- Check the logs to see your messages in the log history:
If the function executed successfully, messages in the log appear as follows:
Your application is deployed, tested, and you can view the logs.
Task 6. Test your understanding
Below are multiple-choice questions to reinforce your understanding of this lab's concepts. Answer them to the best of your abilities.
Congratulations!
Finish your quest
This self-paced lab is part of the Baseline: Deploy & Develop, Baseline: Infrastructure, and Optimizing your Google Cloud Costs quests. A quest is a series of related labs that form a learning path. Completing this quest earns you a badge to recognize your achievement. You can make your badge or badges public and link to them in your online resume or social media account. Enroll in any quest that contains this lab and get immediate completion credit. See the Google Cloud Skills Boost catalog to see all available quests.
Take your next lab
This lab is also part of a series of labs called Qwik Starts. These labs are designed to give you a little taste of the many features available with Google Cloud. Search for "Qwik Starts" in the lab catalog to find the next lab you'd like to take!
Next steps / Learn more
- Now that you used the command line to start a Cloud Function, try the Cloud Functions: Qwik Start - Console lab to start a Cloud Function using the Cloud Console.
- For more information on creating triggers and associating them with your functions, see the Events and Triggers section of the Cloud Functions Guides.
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 August 10, 2023
Lab Last Tested August 10, 2023
Copyright 2023 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.