lukeyouell/craft-queue-manager

This package is abandoned and no longer maintained. No replacement package was suggested.

Job Queue Manager for Craft CMS.

Installs: 26 990

Dependents: 0

Suggesters: 0

Security: 0

Stars: 30

Watchers: 0

Forks: 3

Open Issues: 5

Language:JavaScript

Type:craft-plugin

1.1.0 2018-12-10 14:51 UTC

This package is not auto-updated.

Last update: 2019-11-16 17:14:59 UTC


README

icon

Queue Manager for Craft CMS 3

Job Queue Manager for Craft CMS.

cp

Installation

Requirements

This plugin requires Craft CMS 3.0.0, or later.

Plugin Store

Log into your control panel and click on 'Plugin Store'. Search for 'Queue Manager'.

Composer

  1. Open your terminal and go to your Craft project:
cd /path/to/project
  1. Then tell Composer to load the plugin:
composer require lukeyouell/craft-queue-manager
  1. In the Control Panel, go to Settings → Plugins and click the “Install” button for Queue Manager.

Features

  • View detailed job information
  • Retry or cancel individual jobs
  • Retry or cancel the full queue
  • Console commands that offer the same functionality as found in the CP

Console commands

Retrying jobs

Individual:

./craft queue-manager/queue/retry id

Full queue:

./craft queue-manager/queue/retry-all

Cancelling jobs

Individual:

./craft queue-manager/queue/cancel id

Full queue:

./craft queue-manager/queue/cancel-all

Overriding Plugin Settings

If you create a config file in your config folder called queue-manager.php, you can override the plugin’s settings in the Control Panel. Since that config file is fully multi-environment aware, this is a handy way to have different settings across multiple environments.

Here’s what that config file might look like along with a list of all of the possible values you can override.

<?php

return [
    'jobLimit' => 1000,
];
Parameter Expected Value
jobLimit Integer

Roadmap

Some things to do, and ideas for potential features:

  • Cron documentation
  • Responsive tables
  • Filter results
  • Automatically refresh jobs