Git Product home page Git Product logo

functions-cron's Introduction

App Engine Cron with Google Cloud Functions for Firebase

Google App Engine provides a Cron service. Using this service for scheduling and Google Cloud Pub/Sub for distributed messaging, you can build an application to reliably schedule tasks which can trigger Google Cloud Functions.

This sample contains two components:

  • An App Engine application, that uses App Engine Cron Service to relay cron messages to Cloud Pub/Sub topics.

  • A sample Cloud Function which triggers hourly.

Configuration

By default this sample triggers hourly, daily, and weekly. If you want to customize this schedule for your app then you can modify the cron.yaml.

For details on configuring this, please see the cron.yaml Reference in the App Engine documentation.

Deploying

The overview for configuring and running this sample is as follows:

1. Prerequisites

2. Clone this repository

To clone the GitHub repository to your computer, run the following command:

$ git clone https://github.com/firebase/functions-cron

Change directories to the functions-cron directory. The exact path depends on where you placed the directory when you cloned the sample files from GitHub.

$ cd functions-cron

Leave the default cron.yaml as is for now to run through the sample.

3. Deploy to App Engine

  1. Configure the gcloud command-line tool to use the project your Firebase project.
$ gcloud config set project <your-project-id>
  1. Change directory to appengine/
$ cd appengine/
  1. Install the Python dependencies
$ pip install -t lib -r requirements.txt
  1. Create an App Engine App
$ gcloud app create
  1. Deploy the application to App Engine.
$ gcloud app deploy app.yaml \cron.yaml
  1. Open Google Cloud Logging and in the right dropdown select "GAE Application". If you don't see this option, it may mean that App Engine is still in the process of deploying.
  2. Look for a log entry calling /_ah/start. If this entry isn't an error, then you're done deploying the App Engine app.

3. Deploy to Google Cloud Functions for Firebase

  1. Ensure you're back the root of the repository (cd .., if you're coming from Step 2)
  2. Deploy the sample hourly_job function to Google Cloud Functions
$ firebase deploy --only functions --project <FIREBASE_PROJECT_ID>

Warning: This will remove any existing functions you have deployed. If you have existing functions, move the example from functions/index.js into your project's index.js

4. Verify your Cron Jobs

We can verify that our function is wired up correctly by opening the Task Queue tab in AppEngine and clicking on Cron Jobs. Each of these jobs has a Run Now button next to it.

The sample functions we deployed only has one function: hourly_job. To trigger this job, let's hit the Run Now button for the /publish/hourly-tick job.

Then, go to your terminal and run...

$ firebase functions:log --project <FIREBASE_PROJECT_ID>

You should see a successful console.log from your hourly_job.

5. You're Done!

Your cron jobs will now "tick" along forever. As I mentioned above, you're not limited to the hourly-tick, daily-tick and weekly-tick that are included in the AppEngine app. You can add more scheduled functions by modifying the cron.yaml file and re-deploying.

License

Copyright 2017 Google Inc. All Rights Reserved.

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.

functions-cron's People

Contributors

abeisgoat avatar fengkiej avatar jyane avatar ptone avatar synemitchell avatar tswast avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.