-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix slow query caused by GET /articles #414
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
apps/core/migrations/0057_alter_article_name_type_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Generated by Django 4.2.3 on 2023-09-21 08:27 | ||
|
||
from django.db import migrations, models | ||
|
||
import apps.core.models.board | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0056_alter_article_comment_count_alter_article_hit_count_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="article", | ||
name="name_type", | ||
field=models.PositiveSmallIntegerField( | ||
db_index=True, | ||
default=apps.core.models.board.NameType["REGULAR"], | ||
verbose_name="익명 혹은 실명 여부", | ||
), | ||
), | ||
migrations.AddIndex( | ||
model_name="article", | ||
index=models.Index( | ||
fields=["created_at", "parent_board_id"], | ||
name="created_at_parent_board_id_idx", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,7 +1,9 @@ | ||||||||||||||||||||||||||||||||||||||||
import time | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
from django.core.paginator import Paginator as DjangoPaginator | ||||||||||||||||||||||||||||||||||||||||
from django.db import models | ||||||||||||||||||||||||||||||||||||||||
from django.http import Http404 | ||||||||||||||||||||||||||||||||||||||||
from django.utils.functional import cached_property | ||||||||||||||||||||||||||||||||||||||||
from django.utils.translation import gettext | ||||||||||||||||||||||||||||||||||||||||
from rest_framework import ( | ||||||||||||||||||||||||||||||||||||||||
decorators, | ||||||||||||||||||||||||||||||||||||||||
|
@@ -78,40 +80,70 @@ class ArticleViewSet(viewsets.ModelViewSet, ActionAPIViewSet): | |||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
# Override list action for further optimization | ||||||||||||||||||||||||||||||||||||||||
def list(self, request): | ||||||||||||||||||||||||||||||||||||||||
queryset = self.filter_queryset(self.get_queryset()) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
created_by = self.request.query_params.get("created_by") | ||||||||||||||||||||||||||||||||||||||||
if created_by and int(created_by) != self.request.user.id: | ||||||||||||||||||||||||||||||||||||||||
# exclude someone's anonymous or realname article in one's profile | ||||||||||||||||||||||||||||||||||||||||
exclude_list = [NameType.ANONYMOUS, NameType.REALNAME] | ||||||||||||||||||||||||||||||||||||||||
queryset = queryset.exclude(name_type__in=exclude_list) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
count = ( | ||||||||||||||||||||||||||||||||||||||||
queryset.count() | ||||||||||||||||||||||||||||||||||||||||
- queryset.filter( | ||||||||||||||||||||||||||||||||||||||||
created_by__id__in=self.request.user.block_set.values("user"), | ||||||||||||||||||||||||||||||||||||||||
name_type=NameType.ANONYMOUS, | ||||||||||||||||||||||||||||||||||||||||
).count() | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
# exclude article written by blocked users in anonymous board | ||||||||||||||||||||||||||||||||||||||||
queryset = queryset.exclude( | ||||||||||||||||||||||||||||||||||||||||
created_by__id__in=self.request.user.block_set.values("user"), | ||||||||||||||||||||||||||||||||||||||||
name_type=NameType.ANONYMOUS, | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+94
to
+106
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Blocked user filtering을 한 번만 하게 바꾸는 게 어떤가요?
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
queryset = queryset.prefetch_related( | ||||||||||||||||||||||||||||||||||||||||
"attachments", | ||||||||||||||||||||||||||||||||||||||||
"communication_article", | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
# optimizing queryset for list action | ||||||||||||||||||||||||||||||||||||||||
queryset = queryset.select_related( | ||||||||||||||||||||||||||||||||||||||||
"created_by", | ||||||||||||||||||||||||||||||||||||||||
"created_by__profile", | ||||||||||||||||||||||||||||||||||||||||
"parent_topic", | ||||||||||||||||||||||||||||||||||||||||
"parent_board", | ||||||||||||||||||||||||||||||||||||||||
"parent_board__group", | ||||||||||||||||||||||||||||||||||||||||
).prefetch_related( | ||||||||||||||||||||||||||||||||||||||||
ArticleReadLog.prefetch_my_article_read_log(self.request.user), | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
class Paginator(DjangoPaginator): | ||||||||||||||||||||||||||||||||||||||||
@cached_property | ||||||||||||||||||||||||||||||||||||||||
def count(self): | ||||||||||||||||||||||||||||||||||||||||
return count | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
# Originated from list function of rest_framework.mixins.ListModelMixin | ||||||||||||||||||||||||||||||||||||||||
page = self.paginator.paginate_queryset( | ||||||||||||||||||||||||||||||||||||||||
queryset, request, paginator_class=Paginator | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
if page is not None: | ||||||||||||||||||||||||||||||||||||||||
serializer = self.get_serializer(page, many=True) | ||||||||||||||||||||||||||||||||||||||||
return self.get_paginated_response(serializer.data) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
serializer = self.get_serializer(queryset, many=True) | ||||||||||||||||||||||||||||||||||||||||
return Response(serializer.data) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
def filter_queryset(self, queryset): | ||||||||||||||||||||||||||||||||||||||||
queryset = super().filter_queryset(queryset) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if self.action == "destroy": | ||||||||||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
elif self.action == "list": | ||||||||||||||||||||||||||||||||||||||||
created_by = self.request.query_params.get("created_by") | ||||||||||||||||||||||||||||||||||||||||
if created_by and int(created_by) != self.request.user.id: | ||||||||||||||||||||||||||||||||||||||||
# exclude someone's anonymous or realname article in one's profile | ||||||||||||||||||||||||||||||||||||||||
exclude_list = [NameType.ANONYMOUS, NameType.REALNAME] | ||||||||||||||||||||||||||||||||||||||||
queryset = queryset.exclude(name_type__in=exclude_list) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
# exclude article written by blocked users in anonymous board | ||||||||||||||||||||||||||||||||||||||||
queryset = queryset.exclude( | ||||||||||||||||||||||||||||||||||||||||
created_by__id__in=self.request.user.block_set.values("user"), | ||||||||||||||||||||||||||||||||||||||||
name_type=NameType.ANONYMOUS, | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
queryset = queryset.prefetch_related( | ||||||||||||||||||||||||||||||||||||||||
"attachments", | ||||||||||||||||||||||||||||||||||||||||
"communication_article", | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
# optimizing queryset for list action | ||||||||||||||||||||||||||||||||||||||||
queryset = queryset.select_related( | ||||||||||||||||||||||||||||||||||||||||
"created_by", | ||||||||||||||||||||||||||||||||||||||||
"created_by__profile", | ||||||||||||||||||||||||||||||||||||||||
"parent_topic", | ||||||||||||||||||||||||||||||||||||||||
"parent_board", | ||||||||||||||||||||||||||||||||||||||||
"parent_board__group", | ||||||||||||||||||||||||||||||||||||||||
).prefetch_related( | ||||||||||||||||||||||||||||||||||||||||
ArticleReadLog.prefetch_my_article_read_log(self.request.user), | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
# optimizing queryset for create, update, retrieve actions | ||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Composite index of (created_at, parent_board_id) is needed
MySQL
order by
optimization doc