Robert Korulczyk

Results 275 comments of Robert Korulczyk

Any idea how do you want to implement it? Most of backends does not allow to filter by anything except job ID, so the only way to do this would...

@Insolita I don't want to disable isolation. I still want to isolate batch of jobs.

I mean something like: In `yii\queue\Queue\handleMessage()` before job executing: ```php if ($job instanceof BatchableInterface) { $job = $this->generateBatch($job); } ``` And new method: ```php protected function generateBatch(BatchableInterface $job) { /*...

This does not fix this error, it hides it (unselect no longer works). I don't think it is worth to fix #19446, since by design you should not use typed...

IMO this should be optional (it is not needed in 99.999% cases and produces noise in processes list) and configurable in more flexible way, like `phpArguments` property that allows you...

> Also I believe it's a little weird to ask "should I use the .ini file you provided?". Of course it should. This is not how your PR works. You...

Next try should increment `$attempt`. Can you share logs of two sequential tries of the same job?

> Without this we can have Live Lock because some Jobs added first never wil be attendend if new jobs won't stop arriving This is not true. Expired/delayed job will...

You have `interactive_timeout` and `wait_timeout` set as `28800` (default value), but your job takes over 34k seconds, so DB connection is automatically terminated on main worker process (because it is...

`max_execution_time` should not affect console. Queue should kill the job after it exceeds TTR, I'm not sure why this is not the case here. Also, if it happens every day,...