1

Laravel 8 introduced Job Batching, which allows to execute jobs in batches and perform actions on batch completion. However Laravel documentation does not have a section regarding configurations of Job Batching table and database connection.

How can different database for job_batching table can be specified, and is it possible to rename the job_batching table name?

Yerke
  • 2,187
  • 3
  • 19
  • 33

1 Answers1

5

Open queue.php file in the config/ folder.

You can specify custom database and table name by editing/adding the batching key:

return [
    /* Default Queue Connection Name */
    'default' => env('QUEUE_CONNECTION', 'sync'),
    ...

    // ADD THIS SECTION
    'batching' => [
        'database' => '<custom_database>',
        'table' => '<custom_job_batching>',
    ],

    ...
];
Yerke
  • 2,187
  • 3
  • 19
  • 33