From 5bad88c5f4f27d73c8846731891e1d15ea168996 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Mon, 9 Dec 2024 14:08:02 +0100 Subject: [PATCH] Add config for job batching --- config/queue.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/config/queue.php b/config/queue.php index 56dbccbe..0570cef8 100644 --- a/config/queue.php +++ b/config/queue.php @@ -69,6 +69,23 @@ return [ ], + /* + |-------------------------------------------------------------------------- + | 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', 'mysql'), + 'table' => 'job_batches', + ], + + /* |-------------------------------------------------------------------------- | Failed Queue Jobs