DtcQueueBundle icon indicating copy to clipboard operation
DtcQueueBundle copied to clipboard

Symfony2/3/4/5 Queue Bundle (for background jobs) supporting Mongo (Doctrine ODM), Mysql (and any Doctrine ORM), RabbitMQ, Beanstalkd, Redis, and ... {write your own}

Results 28 DtcQueueBundle issues
Sort by recently updated
recently updated
newest added

After upgrade the rabbitmq service to version 3.9.13 some long tasks leave the messages in the queue as unacknowledged, causing the same task repeats undefinitely... There is some solution for...

Hey! For now when you use supervisor or if you wanna try "soft stop" the queue worker by SIGTERM it will be killed/exited immediately. I think app should support SIGTERM...

When following https://github.com/mmucklo/DtcQueueBundle#rename-the-database-or-table-name, I get the error `The table with name 'dtc_queue_job' already exists.` __config/packages/dtc_queue.yaml__ ``` dtc_queue: class: job: App\Entity\DtcJob ``` __src/Entity/DtcJob.php__ ```

There is any way (or maybe it's need to be implemented) to launch worker in daemon mode? I want to run worker which will works infinite amount of time (if...

Any worker should return `Worker::RESULT_SUCCESS` or `Worker::RESULT_FAILURE` to define if it was successful or not (or not return anything if we want to count all executions as successful). In the...

The `setLoggerService` function in the run command calls the `getContainer()` function which no longer exists because the command no longer extends the ContainerAwareCommand class

Hi, is it possible to cancel/delete jobs, that have status "new"? I am using redis as job manager. Reason: On my website users can create hundreds of jobs with one...

enhancement

We are using redis and trying to implement a polling logic, so we need to tell if a job is currently being processed. Is there a way to do it?

I am not sure since when this is happening, but I think it has something to do with the latest upgrade. If I run ``` php bin/console dtc:queue:run -d 120...

Hi, My application doens't use migration, i'm using liquibase. I can't create migration because my application doens't prepare to migrate, when a i try to use migration many errors happens....