yii2-queue
yii2-queue copied to clipboard
Yii2 Queue Extension. Supports DB, Redis, RabbitMQ, Beanstalk and Gearman
The host may crashed before`rpush` was executed | Q | A | ------------- | --- | Is bugfix? | ✔️/❌ | New feature? | ✔️/❌ | Breaks BC? | ✔️/❌...
### What steps will reproduce the problem? Twice now it has happened that my server, which automatically installs patches, has upgraded mysql, and before it stops the mysql service it...
OK, No problemo with starting a listener: php yii my-queue/listen --verbose But how to stop it? I press CTRL-C and... nothing! Is there any better way other than killing a...
We need to update the [aws/aws-sdk-php](https://github.com/aws/aws-sdk-php) dependencies to add PHP 8.4 support for the SQS driver.
From time to time sentry logs this error: `Unsupported operand types: int + string` Stacktrace: ``` $payload = $this->redis->hget("$this->channel.messages", $id); list($ttr, $message) = explode(';', $payload, 2); $this->redis->zadd("$this->channel.reserved", time() + $ttr,...
``` class DummyJob extends BaseObject implements RetryableJobInterface { public function execute($queue): void { sleep(5); } public function getTtr(): int { return 1; } public function canRetry($attempt, $error): bool { return...
Hello, We are running queue workers in a Kubernetes environment where pods are short-lived and can be interrupted at any time. Currently, the yii\queue\cli\Queue::listen() method continuously listens for new messages...
Hi, Great Extension! What about storing the user id of the user, who created the job a this time? Could be helpful in case of userstamp, grants etc. Best, Tobi