mirror of https://github.com/zulip/zulip.git
zilencer: Add index on RemoteInstallationCount for remote activity.
When profiling the database query in `remote_activity.py`, push_forwarded_count was identified as an expensive part of the overall work. Adds an index on RemoteInstallationCount so this is more efficient.
This commit is contained in:
parent
78f90860b2
commit
47a5459637
|
@ -0,0 +1,21 @@
|
|||
# Generated by Django 4.2.9 on 2024-02-01 13:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("zilencer", "0057_remoterealm_last_request_timestamp_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddIndex(
|
||||
model_name="remoteinstallationcount",
|
||||
index=models.Index(
|
||||
condition=models.Q(("property", "mobile_pushes_forwarded::day")),
|
||||
fields=["server_id", "end_time"],
|
||||
name="zilencer_remoteinstallationcount_server_end_time_mobile_pushes_forwarded",
|
||||
),
|
||||
),
|
||||
]
|
|
@ -373,6 +373,13 @@ class RemoteInstallationCount(BaseRemoteCount):
|
|||
name="unique_remote_installation_count_server_id_remote_id",
|
||||
),
|
||||
]
|
||||
indexes = [
|
||||
models.Index(
|
||||
fields=["server_id", "end_time"],
|
||||
condition=Q(property="mobile_pushes_forwarded::day"),
|
||||
name="zilencer_remoteinstallationcount_server_end_time_mobile_pushes_forwarded",
|
||||
)
|
||||
]
|
||||
|
||||
@override
|
||||
def __str__(self) -> str:
|
||||
|
|
Loading…
Reference in New Issue