Triggering Cloud Functions With Cloud Storage In Java

A step-by-step guide.

Vivek Naskar
The Startup

--

Google Cloud Functions is a serverless execution environment for building and connecting cloud services. With Cloud Functions, you write simple, single-purpose functions that are attached to events emitted from your cloud infrastructure and services.

Your function is triggered when an event being watched is fired. Your code executes in a fully managed environment. There is no need to provision any infrastructure or worry about managing any servers.

  • Serverless execution environment for building and connecting cloud services
  • Write simple, single-purpose functions that are attached to events emitted from your cloud services
  • These functions execute code in response to events based on triggers

Key Terms used in Cloud Functions

Event

Events are the things that happen in the cloud environment. These can be:

  • changes to data in a database
  • files added to a storage system
  • a new virtual machine instance is created

Trigger

--

--

Vivek Naskar
The Startup

A software developer by the day and a writer by the night!