drupal|March 18, 2018|2 min read

Drupal 7: How to implement cron tasks (hook_cron and hook_cron_queue_info) that takes much time

TL;DR

Use hook_cron_queue_info with a queue worker callback to handle resource-intensive cron tasks that exceed the default hook_cron timeout.

Drupal 7: How to implement cron tasks (hook_cron and hook_cron_queue_info) that takes much time

Problem Statement

I want certain data to be updated regularly. Cron job is the best place to have such code. The real issue is that the process might take much time that normal cron job's timeout value exceeds.

hook_cron() suggests to put tasks that executes in shorter time or non-resource intensive tasks.

Mine was neither executing in shorter time nor non-resource intensive!

Solution

In this article, I'm going to show how to use cron functionality of drupal to put resource intensive OR CPU intensive tasks.

Drupal provides two hooks:

  • hook_cron
  • hook_cron_queue_info

Create a Module

Create a module, say name: mytestmodule

Create a file: mytestmodule.module

function mytestmodule_cron() {
   $queue = DrupalQueue::get('name-of-my-queue'); //queue name can be any string you want
   $test = array('29102', '1322', '2322'); //some random numbers
   foreach ($test as $t) {
      $queue->createItem($t);
   }
}
function mytestmodule_cron_queue_info() {
   $info['name-of-my-queue'] = array(
      'worker callback' => 'mytestmodule_do_tasks',
      'time' => 60,
   );
   return $info;
}
function mytestmodule_do_tasks($data) {
   //do something with data
   //For each cron run, this function will get called number of times I have created tasks
}

In hook_cron function, I have defined a queue, and put 3 tasks to it. Note: a single task can be to save a node. Here, you should have all the data you require to initiate a task.

In hook_cron_queue_info function, I have defined a callback function which will receive each task separately. And, specified a timeout value in seconds.

My callback function will be called as many number of times, as the number of tasks.

So, in this example, mytestmodule_do_tasks will receive values: 29012, 1322, 2322 independently.

Hope it helps.

Related Posts

Drupal 8: How to Export and Import View

Drupal 8: How to Export and Import View

You have created some views, and want to port it to your production environment…

Drupal Code: Fetch Link, Title, Category names, tag names from every article

Drupal Code: Fetch Link, Title, Category names, tag names from every article

See the code below: The output will be 4 columns separated by comma. You can…

Drupal: How to block a user by email programatically

Drupal: How to block a user by email programatically

Many times, while administering your drupal website, you must have encountered…

Drupal 7: How to save a node programmatically and add an image field from a public URL

Drupal 7: How to save a node programmatically and add an image field from a public URL

Note: I have public URLs of these images, which I want to save. return…

Drupal Helpful codes for database queries

Drupal Helpful codes for database queries

Being a drupal user from last around 5 years, I used to know small codes for…

How to add alt attribute of images in all of my drupal articles or other content type

How to add alt attribute of images in all of my drupal articles or other content type

I have a custom content type, and there are around 2000 number of nodes in my…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…