Running a 'bulk update' with Django

Updating a bunch of database entries together can be tricky compared to updating a single row. This is because there are two things that need to be kept in mind.

  1. The operation needs to be atomic. You cannot have another process updating the same set of rows while running a bulk update on them.
  2. The operation needs to be efficient. Running multiple queries on the database for updating multiple rows should be avoided.

Another factor at play here is whether you want to update these entries with the same values or different ones. 

For instance, you might want to mark a bunch of old rows in your database as deleted. In this case you need to update all the rows with is_deleted = true. 

But what if you want to update each row differently based on a certain condition?

Suppose you have a python dictionary where keys are existing user ids and values are scores to be updated for those users.

The dictionary would look like this - {1: 150, 2: 200, 3:500 …….}. Each entry in the “User” table would have to be updated with their corresponding score without running multiple update queries. 

There are a couple of ways to achieve a bulk update efficiently. We will go through each of them, but first let's start with the most inefficient way to do this.

The inefficient way

Let us take the example of a table representing cake recipes where you want to delete all recipes older than March 1st 2021.

The most layman way to achieve this is as follows:


This operation will not be atomic because while this loop is running, there could be other processes trying to update the same rows.

This operation will not be efficient either because it will make an update query to the database for every single iteration of this loop.

Therefore, using this method should be avoided at all costs.

The efficient way

The same thing can be achieved by making a single update operation to the database while making sure this operation is atomic and no other operations run while this is in progress.

Here is how you do it:



As you can see, not only is this efficient but it also takes a lesser amount of code. 
This is the best way to achieve a bulk update when you want to update all the rows with the same value.

Using bulk_update

As you may have noticed, the above example does not work for cases where you want to update different rows with different values.

Thankfully there are ways to do this with a single operation using the bulk_update method that Django provides.

Let us take the example of having to update scores of each user with a different value. This can be done so as follows:



There is a problem with this approach though. You are running a select query on the database for each user ID before running the bulk update operation. 

This can be avoided using an atomic transaction instead.

Using an atomic transaction

There is another way to achieve the problem of updating multiple rows with different values. You can do this by running each update operation inside an atomic transaction block.

Doing this will ensure that all the update operations performed in the loop will be executed in the database as a single transaction as opposed to performing each of these operations separately.

To be clear, each update operation still runs as a separate query in the database, but it will be faster because the time needed to commit the transaction is amortized over all the enclosed update statements.

Code looks something like this:



As you can see, with this method there are no select queries being run at all. We are simply running multiple update queries in a single transaction.

This method is the most efficient way to achieve bulk update when your requirement is to update different rows with different values.

Closing notes

To bulk update rows with the same values based on a particular condition, use ModelName.objects.update(<condition>) instead of running a save operation on each row separately.

To bulk update rows where each row has to be updated with a different value, use an atomic transaction where you run update queries for each row within a transaction block.