Skip to content
Snippets Groups Projects
Unverified Commit 1238e5d1 authored by David Ormsbee's avatar David Ormsbee Committed by GitHub
Browse files

perf: add monitoring for get_course and safe_exec (#28241)

This is to help diagnose performance issues around the SequenceMetadata
API, as part of TNL-8330.
parent e191d39f
No related branches found
Tags release-2021-07-21-12.51
No related merge requests found
......@@ -6,6 +6,7 @@ import hashlib
from codejail.safe_exec import SafeExecException, json_safe
from codejail.safe_exec import not_safe_exec as codejail_not_safe_exec
from codejail.safe_exec import safe_exec as codejail_safe_exec
from edx_django_utils.monitoring import function_trace
import six
from six import text_type
......@@ -79,6 +80,7 @@ def update_hash(hasher, obj):
hasher.update(six.b(repr(obj)))
@function_trace('safe_exec')
def safe_exec(
code,
globals_dict,
......
......@@ -4,8 +4,6 @@ MixedModuleStore allows for aggregation between multiple modulestores.
In this way, courses can be served up via either SplitMongoModuleStore or MongoModuleStore.
"""
import functools
import itertools
import logging
......
"""
Module for the dual-branch fall-back Draft->Published Versioning ModuleStore
"""
from edx_django_utils.monitoring import function_trace
from opaque_keys.edx.locator import CourseLocator, LibraryLocator, LibraryUsageLocator
from xmodule.exceptions import InvalidVersionError
......@@ -56,6 +55,7 @@ class DraftVersioningModuleStore(SplitMongoModuleStore, ModuleStoreDraftAndPubli
return item
@function_trace('get_course.split_modulestore')
def get_course(self, course_id, depth=0, **kwargs):
course_id = self._map_revision_to_branch(course_id)
return super().get_course(course_id, depth=depth, **kwargs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment