2017-11-03 05:26:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2018-04-10 11:23:13 +00:00
|
|
|
| Default Queue Connection Name
|
2017-11-03 05:26:07 +00:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2024-07-04 05:03:11 +00:00
|
|
|
| Laravel's queue supports a variety of backends via a single, unified
|
|
|
|
| API, giving you convenient access to each backend using identical
|
|
|
|
| syntax for each. The default queue connection is defined below.
|
2017-11-03 05:26:07 +00:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2024-07-04 05:03:11 +00:00
|
|
|
'default' => env('QUEUE_CONNECTION', 'database'),
|
2017-11-03 05:26:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Queue Connections
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2024-07-04 05:03:11 +00:00
|
|
|
| Here you may configure the connection options for every queue backend
|
|
|
|
| used by your application. An example configuration is provided for
|
|
|
|
| each backend supported by Laravel. You're also free to add more.
|
2017-11-03 05:26:07 +00:00
|
|
|
|
|
2018-04-10 11:23:13 +00:00
|
|
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
|
|
|
|
|
2017-11-03 05:26:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
'connections' => [
|
|
|
|
|
|
|
|
'sync' => [
|
|
|
|
'driver' => 'sync',
|
|
|
|
],
|
|
|
|
|
|
|
|
'database' => [
|
|
|
|
'driver' => 'database',
|
2024-07-04 05:03:11 +00:00
|
|
|
'connection' => env('DB_QUEUE_CONNECTION'),
|
|
|
|
'table' => env('DB_QUEUE_TABLE', 'jobs'),
|
|
|
|
'queue' => env('DB_QUEUE', 'default'),
|
|
|
|
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
|
|
|
|
'after_commit' => false,
|
2017-11-03 05:26:07 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
'beanstalkd' => [
|
|
|
|
'driver' => 'beanstalkd',
|
2024-07-04 05:03:11 +00:00
|
|
|
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
|
|
|
|
'queue' => env('BEANSTALKD_QUEUE', 'default'),
|
|
|
|
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
|
2019-06-02 05:35:48 +00:00
|
|
|
'block_for' => 0,
|
2024-07-04 05:03:11 +00:00
|
|
|
'after_commit' => false,
|
2017-11-03 05:26:07 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
'sqs' => [
|
|
|
|
'driver' => 'sqs',
|
2019-06-02 05:35:48 +00:00
|
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
2018-04-10 11:23:13 +00:00
|
|
|
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
2024-07-04 05:03:11 +00:00
|
|
|
'queue' => env('SQS_QUEUE', 'default'),
|
|
|
|
'suffix' => env('SQS_SUFFIX'),
|
2019-06-02 05:35:48 +00:00
|
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
2024-07-04 05:03:11 +00:00
|
|
|
'after_commit' => false,
|
2017-11-03 05:26:07 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
'redis' => [
|
|
|
|
'driver' => 'redis',
|
2024-07-04 05:03:11 +00:00
|
|
|
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
2019-06-02 05:35:48 +00:00
|
|
|
'queue' => env('REDIS_QUEUE', 'default'),
|
2024-07-04 05:03:11 +00:00
|
|
|
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
2018-04-10 11:23:13 +00:00
|
|
|
'block_for' => null,
|
2024-07-04 05:03:11 +00:00
|
|
|
'after_commit' => false,
|
2017-11-03 05:26:07 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
],
|
|
|
|
|
2024-07-04 05:03:11 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Job Batching
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The following options configure the database and table that store job
|
|
|
|
| batching information. These options can be updated to any database
|
|
|
|
| connection and table which has been defined by your application.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'batching' => [
|
|
|
|
'database' => env('DB_CONNECTION', 'sqlite'),
|
|
|
|
'table' => 'job_batches',
|
|
|
|
],
|
|
|
|
|
2017-11-03 05:26:07 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Failed Queue Jobs
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| These options configure the behavior of failed queue job logging so you
|
2024-07-04 05:03:11 +00:00
|
|
|
| can control how and where failed jobs are stored. Laravel ships with
|
|
|
|
| support for storing failed jobs in a simple file or in a database.
|
|
|
|
|
|
|
|
|
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
2017-11-03 05:26:07 +00:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'failed' => [
|
2024-07-04 05:03:11 +00:00
|
|
|
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
|
|
|
'database' => env('DB_CONNECTION', 'sqlite'),
|
2017-11-03 05:26:07 +00:00
|
|
|
'table' => 'failed_jobs',
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|