Hello Everyone,
We recently installed Open edX Sumac.1 using tutor v19.0.0 in production. Now our client have started adding course content. However, we encountered a critical performance issue when managing large courses in Studio’s Course Outline Page due to multiple unnecessary AJAX requests.
Issue Description
Our client has added 150+ subsections in a single course. As you know, Open edX Studio now uses Micro Frontend (MFE) with React, which dynamically loads course content.
We observed that when we load the Course Outline Page, an AJAX request is triggered for each subsection to fetch the clipboard data:
https://mylmsdomain.com/api/content-staging/v1/clipboard/
For example, if a course has 10 subsections, this API is called 10 times, even though the response is the same. In our client’s case, with 150+ subsections, the browser crashes due to the excessive number of requests.
What We Tried
- Disabling Copy-Paste Feature:: We attempted to disable unit copy-paste using the Waffle flag:
contentstore.enable_copy_paste_units
However, this flag had no impact on preventing these clipboard API calls.
2. Potential Optimization - Single API Call:
- Since the clipboard API response remains the same across all calls, is there a way to fetch it only once instead of per subsection?
- Has anyone faced a similar issue, and is there a way to cache or prevent redundant requests?
Questions for the Community
- How can we optimize or modify the MFE behavior to ensure the clipboard API is called only once per page load?
- Is there a reliable way to completely disable unit copy-pasting in Open edX Studio to prevent unnecessary clipboard API calls?
Any insights, workarounds, or fixes would be greatly appreciated. Thanks in advance for your help!