2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default Queue Driver
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2017-04-01 23:59:43 +02:00
|
|
|
| Laravel's queue API supports an assortment of back-ends via a single
|
2015-12-06 19:58:49 +01:00
|
|
|
| API, giving you convenient access to each back-end using the same
|
|
|
|
| syntax for each one. Here you may set the default queue driver.
|
|
|
|
|
|
2017-04-01 23:59:43 +02:00
|
|
|
| Supported: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
2015-12-06 19:58:49 +01:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2022-02-05 18:05:18 +01:00
|
|
|
'default' => env('QUEUE_CONNECTION', env('QUEUE_DRIVER', 'redis')),
|
2015-12-06 19:58:49 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Queue Connections
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may configure the connection information for each server that
|
|
|
|
| is used by your application. A default configuration has been added
|
|
|
|
| for each back-end shipped with Laravel. You are free to add more.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'connections' => [
|
|
|
|
'sync' => [
|
|
|
|
'driver' => 'sync',
|
|
|
|
],
|
|
|
|
|
|
|
|
'database' => [
|
|
|
|
'driver' => 'database',
|
|
|
|
'table' => 'jobs',
|
2016-10-30 23:34:50 +01:00
|
|
|
'queue' => env('QUEUE_STANDARD', 'standard'),
|
2017-04-01 23:59:43 +02:00
|
|
|
'retry_after' => 90,
|
2015-12-06 19:58:49 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
'sqs' => [
|
|
|
|
'driver' => 'sqs',
|
2017-08-22 05:10:48 +02:00
|
|
|
'key' => env('SQS_KEY'),
|
2016-10-27 23:16:47 +02:00
|
|
|
'secret' => env('SQS_SECRET'),
|
|
|
|
'prefix' => env('SQS_QUEUE_PREFIX'),
|
2017-08-22 05:10:48 +02:00
|
|
|
'queue' => env('QUEUE_STANDARD', 'standard'),
|
2016-10-27 23:16:47 +02:00
|
|
|
'region' => env('SQS_REGION', 'us-east-1'),
|
2015-12-06 19:58:49 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
'redis' => [
|
|
|
|
'driver' => 'redis',
|
|
|
|
'connection' => 'default',
|
2017-08-22 05:10:48 +02:00
|
|
|
'queue' => env('QUEUE_STANDARD', 'standard'),
|
2017-04-01 23:59:43 +02:00
|
|
|
'retry_after' => 90,
|
2015-12-06 19:58:49 +01:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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' => [
|
2017-04-01 23:59:43 +02:00
|
|
|
'database' => 'mysql',
|
|
|
|
'table' => 'failed_jobs',
|
2015-12-06 19:58:49 +01:00
|
|
|
],
|
|
|
|
];
|