The DB driver uses a database to store queue data.
It supports:
Configuration example:
return [
'bootstrap' => [
'queue', // The component registers its own console commands
],
'components' => [
'db' => [
'class' => \yii\db\Connection::class,
// ...
],
'queue' => [
'class' => \yii\queue\db\Queue::class,
'db' => 'db', // DB connection component or its config
'tableName' => '{{%queue}}', // Table name
'channel' => 'default', // Queue channel key
'mutex' => \yii\mutex\MysqlMutex::class, // Mutex used to sync queries
],
],
];
You have to add a table to the database. Example schema for:
MySQL:
CREATE TABLE `queue` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`channel` varchar(255) NOT NULL,
`job` longblob NOT NULL,
`pushed_at` int(11) NOT NULL,
`ttr` int(11) NOT NULL,
`delay` int(11) NOT NULL DEFAULT 0,
`priority` int(11) unsigned NOT NULL DEFAULT 1024,
`reserved_at` int(11) DEFAULT NULL,
`attempt` int(11) DEFAULT NULL,
`done_at` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `channel` (`channel`),
KEY `reserved_at` (`reserved_at`),
KEY `priority` (`priority`)
) ENGINE=InnoDB
and Postgresql
-- Necessary for creating Autoincrement field
CREATE SEQUENCE queue_seq;
CREATE TABLE queue (
id bigint NOT NULL DEFAULT NEXTVAL ('queue_seq'),
channel varchar(255) NOT NULL,
job bytea NOT NULL,
pushed_at bigint NOT NULL,
ttr bigint NOT NULL,
delay bigint NOT NULL DEFAULT 0,
priority bigint check (priority > 0) NOT NULL DEFAULT 1024,
reserved_at bigint ,
attempt bigint,
done_at bigint,
PRIMARY KEY (id)
);
-- Optional but good for speeding up queries
CREATE INDEX channel ON queue (channel);
CREATE INDEX reserved_at ON queue (reserved_at);
CREATE INDEX priority ON queue (priority);
You can use migrations which are available from src/drivers/db/migrations.
To add migrations to your application, edit the console config file to configure a namespaced migration:
'controllerMap' => [
// ...
'migrate' => [
'class' => 'yii\console\controllers\MigrateController',
'migrationPath' => null,
'migrationNamespaces' => [
// ...
'yii\queue\db\migrations',
],
],
],
Then issue the migrate/up
command:
yii migrate/up
Console commands are used to execute and manage queued jobs.
yii queue/listen [timeout]
The listen
command launches a daemon which infinitely queries the queue. If there are new tasks
they're immediately obtained and executed. The timeout
parameter specifies the number of seconds to sleep between
querying the queue. This method is most efficient when the command is properly daemonized via
supervisor or systemd.
yii queue/run
The run
command obtains and executes tasks in a loop until the queue is empty. This works well with
cron.
The run
and listen
commands have options:
--verbose
, -v
: print execution statuses to console.--isolate
: each task is executed in a separate child process.--color
: enable highlighting for verbose mode.yii queue/info
The info
command prints out information about the queue status.
yii queue/clear
The clear
command clears the queue.
yii queue/remove [id]
The remove
command removes a job from the queue.