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:

apiVersion: batch/v1beta1
kind: CronJob
metadata:
  name: hello
spec:
  schedule: "*/1 * * * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: getFoo
            image: busybox
            args:
            - /bin/sh
            - -c
            - curl -X GET http://www.example.com/bar/foo
          restartPolicy: OnFailure

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:

const request = require(‘request’);

const doTheRequest = () => {
    request({
        uri: "http://www.example.com/bar/foo",
	 method: "GET"	
    }, function (error, response, body) {
        console.log('response', body); 
    });

setInterval(doTheRequest, 60000);

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: 

ibmcloud cf push <APPNAME> -u process --no-route

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:

/**
  *
  * main() will be run when you invoke this action
  *
  * @param Cloud Functions actions accept a single parameter, which must be a JSON object.
  *
  * @return The output of this action, which must be a JSON object.
  *
  */
function main(params) {
    const request = require(‘request’);
    request({
        uri: "http://www.example.com/bar/foo",
	 method: "GET"	
    }, function (error, response, body) {
        console.log('response', body);
        return { message: body };
    });
}

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.

Was this article helpful?
YesNo

More from Cloud

Serverless vs. microservices: Which architecture is best for your business?

7 min read - When enterprises need to build an application, one of the most important decisions their leaders must make is what kind of software development to use. While there are many software architectures to choose from, serverless and microservices architectures are increasingly popular due to their scalability, flexibility and performance. Also, with spending on cloud services expected to double in the next four years, both serverless and microservices instances should grow rapidly since they are widely used in cloud computing environments. While…

Serverless use cases: How enterprises are using the technology to let developers innovate

6 min read - Serverless, or serverless computing, is an approach to software development that empowers developers to build and run application code without having to worry about maintenance tasks like installing software updates, security, monitoring and more. With the rise of cloud computing, serverless has become a popular tool for organizations looking to give developers more time to write and deploy code. Despite its name, a serverless framework doesn’t mean computing without servers. In a serverless architecture, a cloud service provider (CSP) handles…

How a US bank modernized its mainframe applications with IBM Consulting and Microsoft Azure

9 min read - As organizations strive to stay ahead of the curve in today's fast-paced digital landscape, mainframe application modernization has emerged as a critical component of any digital transformation strategy. In this blog, we'll discuss the example of a fictional US bank which embarked on a journey to modernize its mainframe applications. This strategic project has helped it to transform into a more modern, flexible and agile business. In looking at the ways in which it approached the problem, you’ll gain insights…

IBM Newsletters

Get our newsletters and topic updates that deliver the latest thought leadership and insights on emerging trends.
Subscribe now More newsletters