Created
March 9, 2019 04:14
-
-
Save Ravenna/116f8c229e3cd7ed6e337076f22eb568 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//config/queue.php | |
<?php | |
return [ | |
'default' => env('QUEUE_CONNECTION', 'database'), | |
'connections' => [ | |
'sync' => [ | |
'driver' => 'redis', | |
], | |
'database' => [ | |
'driver' => 'database', | |
'table' => 'jobs', | |
'queue' => 'default', | |
'retry_after' => 90, | |
], | |
'beanstalkd' => [ | |
'driver' => 'beanstalkd', | |
'host' => 'localhost', | |
'queue' => 'default', | |
'retry_after' => 90, | |
], | |
'sqs' => [ | |
'driver' => 'sqs', | |
'key' => env('SQS_KEY', 'your-public-key'), | |
'secret' => env('SQS_SECRET', 'your-secret-key'), | |
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), | |
'queue' => env('SQS_QUEUE', 'your-queue-name'), | |
'region' => env('SQS_REGION', 'us-east-1'), | |
], | |
'redis' => [ | |
'driver' => 'redis', | |
'connection' => 'default', | |
'queue' => 'default', | |
'retry_after' => 90, | |
'block_for' => null, | |
], | |
], | |
/* | |
|-------------------------------------------------------------------------- | |
| Failed Queue Jobs | |
|-------------------------------------------------------------------------- | |
| | |
| These options configure the behavior of failed queue job logging so you | |
| can control which database and table are used to store the jobs that | |
| have failed. You may change them to any database / table you wish. | |
| | |
*/ | |
'failed' => [ | |
'database' => env('DB_CONNECTION', 'mysql'), | |
'table' => 'failed_jobs', | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment