Skip to content

Commit

Permalink
Enhancement: Add Optimization Fence Query to gracefully handle cancel…
Browse files Browse the repository at this point in the history
… statement timeout

Signed-off-by: Kipchirchir Sigei <[email protected]>
  • Loading branch information
KipSigei committed Nov 16, 2023
1 parent 0853379 commit 53a9478
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions onadata/apps/api/viewsets/briefcase_viewset.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from django.contrib.auth import get_user_model
from django.core.files import File
from django.core.validators import ValidationError
from django.db import OperationalError
from django.http import Http404
from django.utils.translation import gettext as _

Expand Down Expand Up @@ -121,7 +122,7 @@ def get_object(self, queryset=None):

return obj

# pylint: disable=too-many-branches,too-many-statements
# pylint: disable=too-many-branches,too-many-statements,too-many-locals
def filter_queryset(self, queryset):
"""
Filters an XForm submission instances using ODK Aggregate query parameters.
Expand Down Expand Up @@ -188,7 +189,28 @@ def filter_queryset(self, queryset):

num_entries = _parse_int(num_entries)
if num_entries:
instances = instances[:num_entries]
try:
instances = instances[:num_entries]
except OperationalError:
# Create an optimization fence
# Define the base query
inner_raw_sql = str(instances.query)

# Create the outer query with the LIMIT clause
outer_query = (
f"SELECT id, uuid FROM ({inner_raw_sql}) AS items " # nosec
"ORDER BY id ASC LIMIT %s" # nosec
)
raw_queryset = Instance.objects.raw(outer_query, [num_entries])
# convert raw queryset to queryset
instances_data = [
{"pk": item.id, "uuid": item.uuid}
for item in raw_queryset.iterator()
]
# Create QuerySet from the instances dict
instances = Instance.objects.filter(
pk__in=[item["pk"] for item in instances_data]
).values("pk", "uuid")

# Using len() instead of .count() to prevent an extra
# database call; len() will load the instances in memory allowing
Expand Down

0 comments on commit 53a9478

Please sign in to comment.