An overview of different ways to schedule REST API calls with IBM Cloud offerings.
IBM Workload Scheduler on IBM Cloud was deprecated in March of 2019, and some people worried that scenarios in which that service was used—in particular, scheduling REST API calls—would no longer be covered by IBM Cloud service offerings.
Fortunately, if you need to schedule a REST API call periodically (just to see the output without any post-process), you can still use IBM Cloud Kubernetes Service, Cloud Foundry on IBM Cloud, or IBM Cloud Functions. This post will outline how to use the different offerings.
CronJob in IBM Cloud Kubernetes Service
Kubernetes allows you to define a scheduled periodic job using a pre-defined controller: <a data-entity-substitution="" data-entity-type="" data-entity-uuid="" href="https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/" target="_blank">CronJob</a>.
CronJobs
work like Cron in Unix systems and are very simple to setup. Please see the example below:
In this example, we define a REST API call to http://www.example.com/bar/foo each minute.
CronJobs in Cloud Foundry
Cloud Foundry is not generally used to run periodic jobs, so there is no native solution to schedule REST API calls. However, you could define a silly application in whatever programming language you prefer to run this periodic job.
For example, using Node.js as runtime:
This approach for periodic jobs would be useful in some cases (e.g., tests), but it is not recommended. The application could face some issues due to the health check Cloud Foundry performs for each app.
To adopt this approach, it would be useful to disable health check during the application push phase by using the following command:
Periodic Actions in IBM Cloud Functions
The serverless computing approach allows for an easy way to create periodic jobs. With IBM Cloud Functions (based on the open source project Apache OpenWhisk), it is possible to create Actions (stateless code snippets) configured to execute a specific task, which can be triggered/invoked periodically.
For example, you could define an Action using Node.js as runtime with the following code:
Once the Action is created, you could transform it into a periodic job linking it to a “Periodic” type Trigger.
Summary
These are a few short examples that illustrate how to schedule REST API calls with different offerings in IBM Cloud.
The right approach depends on your knowledge and how complex the post-processing may be. As you can see, the serverless approach is the simplest one, and you can test it yourself by following the steps described here.
If you are looking for a more customized approach, try using CronJobs in the manner described here.