Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jyane/gae-cron
GAE Cron for Cloud PubSub
https://github.com/jyane/gae-cron
cloud-functions gae gcp pubsub
Last synced: 23 days ago
JSON representation
GAE Cron for Cloud PubSub
- Host: GitHub
- URL: https://github.com/jyane/gae-cron
- Owner: jyane
- License: apache-2.0
- Created: 2017-05-31T17:04:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-23T08:28:32.000Z (over 2 years ago)
- Last Synced: 2024-06-21T19:53:36.990Z (5 months ago)
- Topics: cloud-functions, gae, gcp, pubsub
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ~GAE Cron for Cloud PubSub~ Obsolete
GCP now provides a cron service.Original: https://github.com/GoogleCloudPlatform/reliable-task-scheduling-compute-engine-sample
The Google App Engine Application which publishes 4 publications to 4 topics,
every mintes, every hours, every days and every weeks.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.
## Topics
```
projects/:project_id/topics/daily-tick
projects/:project_id/topics/hourly-tick
projects/:project_id/topics/minutely-tick
projects/:project_id/topics/weekly-tick
```## Usage
``` sh
gcloud app deploy app.yaml \cron.yaml# check
gcloud app browse
```