DEV Community

Cover image for Creating Golang CRON Jobs
Ravgeet Dhillon
Ravgeet Dhillon

Posted on • Originally published at ravgeet.in

Creating Golang CRON Jobs

Scheduled tasks allow you to run specific code at a specified interval of time and are primarily used within a CI/CD system to perform a variety of operations like nightly builds, GitHub repository cleanup, newsletters, and service monitoring, among others. You can use scheduled jobs to send notifications when a process succeeds or fails and to perform batch tasks without any human involvement.

In this article, you'll learn to create CRON jobs in Golang, a statically typed, compiled programming language designed by engineers at Google. Golang contains the best features from C and Python, like memory safety, automatic garbage collection, structural typing, and concurrency, to name a few. Specifically, you'll learn to use gocron and cron.v2 to schedule tasks, explore the limitations of using these packages, and then consider a serverless and easy-to-use approach to task scheduling using Airplane.

Read the full blog on Airplane.

Thanks for reading 💜


I publish a monthly newsletter in which I share personal stories, things that I am working on, what is happening in the world of tech, and some interesting dev-related posts which I come across while surfing on the web.

Connect with me through TwitterLinkedInGithub or send me an Email.

Ravgeet, Full Stack Developer and Technical Content Writer

Top comments (1)

Collapse
 
basallogams profile image
Gams Basallo

Seems that the Airplane blog URL link is broken.