Batch Jobs
In this document, you’ll learn what Batch Jobs are and how they work in Medusa.
What are Batch Jobs
Batch Jobs are tasks that can be performed asynchronously and iteratively. They can be created using the Admin API, then, once confirmed, they are processed asynchronously.
Batch jobs require Redis, which Medusa uses as a queuing system to register and handle events. Every status change of a batch job triggers an event that can be handled using subscribers.
Medusa uses batch jobs in its core to perform some asynchronous tasks. For example, the Export Products functionality uses batch jobs.
You can also create a custom batch job or overwrite Medusa’s batch jobs.
BatchJob Entity Overview
A batch job is stored in the database as a BatchJob entity. Some of its important attributes are:
status
Copy to Clipboard: A string that determines the current status of the Batch Job.context
Copy to Clipboard: An object that can be used to store configurations related to the batch job. For example, you can use it to store listing configurations such as the limit or offset of the list to be retrieved during the processing of the batch job.dry_run
Copy to Clipboard: A boolean value that indicates whether this batch job should actually produce an output. By default it’s false, meaning that by default it produces an output. It can be used to simulate a batch job.type
Copy to Clipboard: A string that is used to later resolve the batch job strategy that should be used to handle the batch job.result
Copy to Clipboard: An object that includes important properties related to the result of the batch job. Some of these properties are:errors
Copy to Clipboard: An error object that contains any errors that occur during the batch job’s execution.progress
Copy to Clipboard: A numeric value indicating the progress of the batch job.count
Copy to Clipboard: A number that includes the total count of records related to the operation. For example, in the case of product exports, it is used to indicate the total number of products exported.advancement_count
Copy to Clipboard: A number that indicates the number of records processed so far. Can be helpful when retrying a batch job.
What are Batch Job Strategies
Batch jobs are handled by batch job strategies. A batch job strategy is a class that extends the AbstractBatchJobStrategy
Copy to Clipboard abstract class and implements the methods defined in that class to handle the different states of a batch job.
A batch job strategy must implement the necessary methods to handle the preparation of a batch job before it is created, the preparation of the processing of the batch job after it is created, and the processing of the batch job once it is confirmed.
When you create a batch job strategy, the batchType
Copy to Clipboard class property indicates the batch job types this strategy handles. Then, when you create a new batch job, you set the batch job’s type to the value of batchType
Copy to Clipboard in your strategy.
How Batch Jobs Work
A batch job’s flow from creation to completion is:
- A batch job is created using the Create Batch Job API endpoint.
- Once the batch job is created, the batch job’s status is changed to
created
Copy to Clipboard and thebatch.created
Copy to Clipboard event is triggered by theBatchJobService
Copy to Clipboard. - The
BatchJobSubscriber
Copy to Clipboard handles thecreated
Copy to Clipboard event. It resolves the batch job strategy based on thetype
Copy to Clipboard of the batch job, then uses it to pre-process the batch job. After this, the batch job’s status is changed topre_processed
Copy to Clipboard. Only when the batch job has the statuspre_processed
Copy to Clipboard can be confirmed. - If
dry_run
Copy to Clipboard is not set in the Create Batch Job request in step one or if it is set tofalse
Copy to Clipboard, the batch job will automatically be confirmed after processing. Otherwise, ifdry_run
Copy to Clipboard is set totrue
Copy to Clipboard, the batch job can be confirmed using the Confirm Batch Job API endpoint. - Once the batch job is confirmed, the batch job’s status is changed to
confirmed
Copy to Clipboard and thebatch.confirmed
Copy to Clipboard event is triggered by theBatchJobService
Copy to Clipboard. - The
BatchJobSubscriber
Copy to Clipboard handles theconfirmed
Copy to Clipboard event. It resolves the batch job strategy, then uses it to process the batch job. - Once the batch job is processed succesfully, the batch job has the status
completed
Copy to Clipboard.
You can track the progress of the batch job at any point using the Retrieve Batch Job endpoint.

If the batch job fails at any point in this flow, its status is changed to failed
Copy to Clipboard.