drupal2 Min Read

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

Gorav Singal

March 18, 2018

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.

Share

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

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…