This simple tutorial demonstrates writing, deploying, and triggering a Background Cloud Function with a Cloud Storage trigger.
Objectives
- Write and deploy a Background Cloud Function.
- Trigger the function by uploading a file to Cloud Storage.
Costs
This tutorial uses billable components of Cloud Platform, including:
- Google Cloud Functions
- Google Cloud Storage
Use the Pricing Calculator to generate a cost estimate based on your projected usage.
New Cloud Platform users might be eligible for a free trial.Before you begin
-
Sign in to your Google Account.
If you don't already have one, sign up for a new account.
-
Select or create a Google Cloud Platform project.
-
Make sure that billing is enabled for your Google Cloud Platform project.
- Enable the Cloud Functions and Cloud Storage APIs.
- Install and initialize the Cloud SDK.
-
Update and install
gcloudcomponents:Node.js 6
gcloud components update
Node.js 8
gcloud components update
Python
gcloud components update
Go
gcloud components update
- Prepare your development environment:
Preparing the application
Create a Cloud Storage bucket to upload a test file, where
YOUR_TRIGGER_BUCKET_NAMEis a globally unique bucket name:gsutil mb gs://YOUR_TRIGGER_BUCKET_NAME
Clone the sample app repository to your local machine:
Node.js 6
git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git
Alternatively, you can download the sample as a zip file and extract it.
Node.js 8
git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git
Alternatively, you can download the sample as a zip file and extract it.
Python
git clone https://github.com/GoogleCloudPlatform/python-docs-samples.git
Alternatively, you can download the sample as a zip file and extract it.
Go
git clone https://github.com/GoogleCloudPlatform/golang-samples.git
Alternatively, you can download the sample as a zip file and extract it.
Change to the directory that contains the Cloud Functions sample code:
Node.js 6
cd nodejs-docs-samples/functions/helloworld/
Node.js 8
cd nodejs-docs-samples/functions/node8/
Python
cd python-docs-samples/functions/gcs/
Go
cd golang-samples/functions/helloworld/storage_generic/
Deploying and triggering the function
Currently, Cloud Storage functions are based on Pub/Sub notifications from Cloud Storage and support similar event types:
The following sections describe how to deploy and trigger a function for each of these event types.
Object Finalize
Object finalize events trigger when a "write" of a Cloud Storage Object is successfully finalized. In particular, this means that creating a new object or overwriting an existing object triggers this event. Archive and metadata update operations are ignored by this trigger.
Object Finalize: deploying the function
Take a look at the sample function, which handles Cloud Storage events:
Node.js 6
By default, Cloud Functions looks for your code in a file
named index.js.
Node.js 8
By default, Cloud Functions looks for your code in a file
named index.js.
Python
Cloud Functions looks for your code in a file
named main.py.
Go
To deploy the function, run the following command in the directory where the sample code is located:
Node.js 6
gcloud functions deploy helloGCSGeneric --runtime nodejs6 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.finalize
Node.js 8
gcloud functions deploy helloGCSGeneric --runtime nodejs8 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.finalize
Python
gcloud functions deploy hello_gcs_generic --runtime python37 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.finalize
Go
gcloud functions deploy HelloGCSInfo --runtime go111 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.finalize
where YOUR_TRIGGER_BUCKET_NAME is the name of the
Cloud Storage bucket that triggers the function.
Object Finalize: triggering the function
To trigger the function:
Create an empty
gcf-test.txtfile in the directory where the sample code is located.Upload the file to Cloud Storage in order to trigger the function:
gsutil cp gcf-test.txt gs://YOUR_TRIGGER_BUCKET_NAME
where
YOUR_TRIGGER_BUCKET_NAMEis the name of your Cloud Storage bucket where you will upload a test file.Check the logs to make sure the executions have completed:
gcloud functions logs read --limit 50
Object Delete
Object delete events are most useful for non-versioning buckets. They are triggered when an old version of an object is deleted. In addition, they are triggered when an object is overwritten. Object delete triggers can also be used with versioning buckets, triggering when a version of an object is permanently deleted.
Object Delete: deploying the function
Using the same sample code as in the finalize example, deploy the function with object delete as the trigger event. Run the following command in the directory where the sample code is located:
Node.js 6
gcloud functions deploy helloGCSGeneric --runtime nodejs6 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.delete
Node.js 8
gcloud functions deploy helloGCSGeneric --runtime nodejs8 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.delete
Python
gcloud functions deploy hello_gcs_generic --runtime python37 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.delete
Go
gcloud functions deploy HelloGCSInfo --runtime go111 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.delete
where YOUR_TRIGGER_BUCKET_NAME is the name of the
Cloud Storage bucket that triggers the function.
Object Delete: triggering the function
To trigger the function:
Create an empty
gcf-test.txtfile in the directory where the sample code is located.Make sure that your bucket is non-versioning:
gsutil versioning set off gs://YOUR_TRIGGER_BUCKET_NAME
Upload the file to Cloud Storage:
gsutil cp gcf-test.txt gs://YOUR_TRIGGER_BUCKET_NAME
where
YOUR_TRIGGER_BUCKET_NAMEis the name of your Cloud Storage bucket where you will upload a test file. At this point the function should not execute yet.Delete the file to trigger the function:
gsutil rm gs://YOUR_TRIGGER_BUCKET_NAME/gcf-test.txt
Check the logs to make sure the executions have completed:
gcloud functions logs read --limit 50
Note that the function may take some time to finish executing.
Object Archive
Object archive events can be used only with versioning buckets. They are triggered when an old version of an object is archived. In particular, this means that when an object is overwritten or deleted, an archive event is triggered.
Object Archive: deploying the function
Using the same sample code as in the finalize example, deploy the function with object archive as the trigger event. Run the following command in the directory where the sample code is located:
Node.js 6
gcloud functions deploy helloGCSGeneric --runtime nodejs6 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.archive
Node.js 8
gcloud functions deploy helloGCSGeneric --runtime nodejs8 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.archive
Python
gcloud functions deploy hello_gcs_generic --runtime python37 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.archive
Go
gcloud functions deploy HelloGCSInfo --runtime go111 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.archive
where YOUR_TRIGGER_BUCKET_NAME is the name of the
Cloud Storage bucket that triggers the function.
Object Archive: triggering the function
To trigger the function:
Create an empty
gcf-test.txtfile in the directory where the sample code is located.Make sure that your bucket has versioning enabled:
gsutil versioning set on gs://YOUR_TRIGGER_BUCKET_NAME
Upload the file to Cloud Storage:
gsutil cp gcf-test.txt gs://YOUR_TRIGGER_BUCKET_NAME
where
YOUR_TRIGGER_BUCKET_NAMEis the name of your Cloud Storage bucket where you will upload a test file. At this point the function should not execute yet.Archive the file to trigger the function:
gsutil rm gs://YOUR_TRIGGER_BUCKET_NAME/gcf-test.txt
Watch the logs to make sure the executions have completed:
gcloud functions logs read --limit 50
Object Metadata Update
Metadata update events are triggered when the metadata of existing object is updated.
Object Metadata Update: deploying the function
Using the same sample code as in the finalize example, deploy the function with metadata update as the trigger event. Run the following command in the directory where the sample code is located:
Node.js 6
gcloud functions deploy helloGCSGeneric --runtime nodejs6 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.metadataUpdate
Node.js 8
gcloud functions deploy helloGCSGeneric --runtime nodejs8 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.metadataUpdate
Python
gcloud functions deploy hello_gcs_generic --runtime python37 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.metadataUpdate
Go
gcloud functions deploy HelloGCSInfo --runtime go111 --trigger-resource YOUR_TRIGGER_BUCKET_NAME --trigger-event google.storage.object.metadataUpdate
where YOUR_TRIGGER_BUCKET_NAME is the name of the
Cloud Storage bucket that triggers the function.
Object Metadata Update: triggering the function
To trigger the function:
Create an empty
gcf-test.txtfile in the directory where the sample code is located.Make sure that your bucket is non-versioning:
gsutil versioning set off gs://YOUR_TRIGGER_BUCKET_NAME
Upload the file to Cloud Storage:
gsutil cp gcf-test.txt gs://YOUR_TRIGGER_BUCKET_NAME
where
YOUR_TRIGGER_BUCKET_NAMEis the name of your Cloud Storage bucket where you will upload a test file. At this point the function should not execute yet.Update the metadata of the file:
gsutil -m setmeta -h "Content-Type:text/plain" gs://YOUR_TRIGGER_BUCKET_NAME/gcf-test.txt
Watch the logs to make sure the executions have completed:
gcloud functions logs read --limit 50
Cleaning up
To avoid incurring charges to your Google Cloud Platform account for the resources used in this tutorial:
Deleting the project
The easiest way to eliminate billing is to delete the project you created for the tutorial.
To delete the project:
- In the GCP Console, go to the Projects page.
- In the project list, select the project you want to delete and click Delete delete.
- In the dialog, type the project ID, and then click Shut down to delete the project.
Deleting the Cloud Function
Deleting Cloud Functions does not remove any resources stored in Cloud Storage.
To delete the Cloud Function you created in this tutorial, run the following command:
Node.js
gcloud functions delete helloGCSGeneric
Python
gcloud functions delete hello_gcs_generic
Go
gcloud functions delete HelloGCSInfo
You can also delete Cloud Functions from the Google Cloud Platform Console.

