JOB_TOO_BIG Pheanstalk - what can I do?

On Laravel 4.2 and Laravel Forge

I made a mistake and accidentally pressed some code on the serial number, but an error occurred and he moved the task to the queue without deleting it after completion. Now I can’t click anything else in the queue, I get:

Pheanstalk_Exception JOB_TOO_BIG: job data exceeds the limit set by the server

What can I do?

+4
source share
2 answers

This is because you are trying to store too much data in the queue itself. Try to shorten the data that you click on the queue.

, , , .

, .

+7

-z Beanstalkd: http://linux.die.net/man/1/beanstalkd

Forge, SSH /etc/default/beanstalkd.

( BEANSTALKD_EXTRA ): BEANSTALKD_EXTRA="-z 524280"

beanstalkd : sudo service beanstalkd restart

.

, - . .

+17

All Articles