- Home
- >
- Software Development
- >
- Finding and Fixing Django N+1 Problems – InApps Technology 2022
Finding and Fixing Django N+1 Problems – InApps Technology is an article under the topic Software Development Many of you are most interested in today !! Today, let’s InApps.net learn Finding and Fixing Django N+1 Problems – InApps Technology in today’s post !
Read more about Finding and Fixing Django N+1 Problems – InApps Technology at Wikipedia
You can find content about Finding and Fixing Django N+1 Problems – InApps Technology from the Wikipedia website
Sentry sponsored this post.
Adam McKerlie
Adam is an Engineering Manager at Sentry.io. He’s been building websites since he was 15 years old. When he’s not building something on the internet, he enjoys traveling the world with his family, reading old Star Wars books and trying to cook.
The Django Python framework allows people to build websites extremely fast. One of its best features is the Object-relational mapper (ORM), which allows you to make queries to the database without having to write any SQL. Django will allow you to write your queries in Python and then it will try to turn those statements into efficient SQL. Most of the time the ORM creates the SQL flawlessly, but sometimes the results are less than ideal.
One common database problem is that ORMs can cause N+1 queries. These queries include a single, initial query (the +1), and each row in the results from that query spawns another query (the N). These often happen when you have a parent-child relationship. You select all of the parent objects you want and then when looping through them, another query is generated for each child. This problem can be hard to detect at first, as your website could be performing fine. But as the number of parent objects grows, the number of queries increases as well — to the point of overwhelming your database and taking down your application.
Recently, I was building a simple website that kept track of expenses and expense reports. I wanted to use Sentry’s new Performance tool to assess how the application was performing in production. I quickly set it up using the instructions for Django and immediately saw results.
The first thing I noticed was that the median root transaction was taking 3.41 seconds. All this page did was display a list of reports and the sum of all of the expenses on a report. Django is fast and it definitely shouldn’t take 3.41 seconds.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | ``` # models.py from django.db import models class Reports(models.Model): name = models.CharField(max_length=255) submitted_date = models.DateTimeField(null=True, blank=False)
@property def get_expense_total(self): for expense in self.expenses.all(): return expense.amount
class Expenses(models.Model): report = models.ForeignKey(Reports, related_name=‘expenses’, on_delete=models.CASCADE) amount = models.DecimalField(max_digits=10, decimal_places=2)
# views.py from django.views.generic.list import ListView from expense_reports.models import Reports
class ReportsList(ListView): model = Reports context_object_name = ‘reports’
# report_list.html {% for report in reports %} <div> <h2>{{ report.name }}</h2> {% for expense in report.expenses.all %} <small>{{ expense.name }}</small> <small>{{ expense.amount }}</small> {% endfor %} <small>{{ report.get_expense_total }}</small> </div> {% endfor %}
``` |
Looking at the code I couldn’t see any immediate problems, so I decided to dig into the Event Detail page for a recent transaction.
The second thing I noticed was just how many queries the ORM had generated. It was at this point that I saw that I had a single query to fetch all of the reports and then another query for each report to fetch all of the expenses —an N+1 problem.
Django evaluates queries lazily by default. This means that Django won’t run the query until the Python code is evaluated. In this case, when the page initially loads, Reports.objects.all()
is called. When I call {{ report.get_expense_total }}
Django runs the second query to fetch all of the expenses. There are two ways to fix this, depending on how your models are set up: [select_related()] and [prefetch_related()].
select_related()
works by following one-to-many relationships and adding them to the SQL query as a JOIN. prefetch_related()
works similarly, but instead of doing a SQL join it does a separate query for each object and then joins them in Python. This allows you to prefetch many-to-many and many-to-one relationships.
We can update ReportsList to use prefetch_related()
. This cuts the number of database queries in half, since we’re now making one query to fetch all of the Reports, one query to fetch all of the expenses, and then n queries in report.get_expense_total
.
``` class ReportsList(ListView): model = Reports context_object_name = ‘reports’ queryset = Reports.objects.prefetch_related(‘expenses’) ``` |
To fix the n
queries from report.get_expense_total
we can use Django’s annotate
to pull in that information before passing it to the template.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ``` # views.py class ReportsList(ListView): model = Reports context_object_name = ‘reports’ queryset = Reports.objects.prefetch_related(‘expenses’).annotate(total_amount=Sum(‘expenses__amount’))
# report_list.html {% for report in reports %} <div> <h2>{{ report.name }}</h2> {% for expense in report.expenses.all %} <small>{{ expense.name }}</small> <small>{{ expense.amount }}</small> {% endfor %} <small>{{ report.total_amount }}</small> </div> {% endfor %} ``` |
Now the median transaction time is down to 290ms!
In the event the number of queries increases to the point where it could take your application down, try using prefetch_related or select_related. This way, Django will fetch all of the additional information without the extra queries. After doing this, I ended up saving 950 queries on my main page and decreasing the page load by 91%.
This document has been edited with the instant web content composer which can be found at htmleditor.tools – give it a try.
Feature image via Pixabay.
At this time, InApps Technology does not allow comments directly on this website. We invite all readers who wish to discuss a story to visit us on Twitter or Facebook. We also welcome your news tips and feedback via email: [email protected].
Source: InApps.net
Let’s create the next big thing together!
Coming together is a beginning. Keeping together is progress. Working together is success.