coolify/config/queue.php

83 lines
2.7 KiB
PHP
Raw Normal View History

2023-03-17 14:33:48 +00:00
<?php
2025-03-29 15:20:45 +00:00
declare(strict_types=1);
2023-03-17 14:33:48 +00:00
2025-03-29 15:20:45 +00:00
return [
2023-03-17 14:33:48 +00:00
/*
|--------------------------------------------------------------------------
| Default Queue Connection Name
|--------------------------------------------------------------------------
|
2025-11-30 15:50:04 +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.
2023-03-17 14:33:48 +00:00
|
*/
2025-11-30 15:50:04 +00:00
'default' => env('QUEUE_CONNECTION', 'database'),
2023-03-17 14:33:48 +00:00
/*
|--------------------------------------------------------------------------
| Queue Connections
|--------------------------------------------------------------------------
|
2025-11-30 15:50:04 +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.
2023-03-17 14:33:48 +00:00
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
| "deferred", "background", "failover", "null"
2023-03-17 14:33:48 +00:00
|
*/
'connections' => [
'sync' => [
'driver' => 'sync',
],
2025-11-30 15:50:04 +00:00
2023-03-17 14:33:48 +00:00
'redis' => [
'driver' => 'redis',
2025-11-30 15:50:04 +00:00
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
2023-03-17 14:33:48 +00:00
'queue' => env('REDIS_QUEUE', 'default'),
2025-11-30 15:50:04 +00:00
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
2023-03-17 14:33:48 +00:00
'block_for' => null,
2025-11-30 15:50:04 +00:00
'after_commit' => false,
2023-03-17 14:33:48 +00:00
],
],
2025-11-30 15:50:04 +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',
],
2023-03-17 14:33:48 +00:00
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
2025-11-30 15:50:04 +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"
2023-03-17 14:33:48 +00:00
|
*/
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
2025-11-30 15:50:04 +00:00
'database' => env('DB_CONNECTION', 'sqlite'),
2023-03-17 14:33:48 +00:00
'table' => 'failed_jobs',
],
];