Loading a RQM test cases in the web UI takes up to 40 seconds, why?
You’re using RQM for some years now. Suddenly, you hear from the end users is that, opening some testcases in a specific RQM project area takes longer than it should. A least in the past the testcase were loaded in a second or two. However, the same testcase now takes more 30 seconds to load on the web UI. Nothing has changed on the application server or OS or database.
There are some testcases are opening instantly on the same project area, but some testcase isn’t. You’ve looked at resources of application server and database server, there no unusual load issues.
You’re wondering how to debug this issue to resolve so that, all testcases load instantly. <style> <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:0; mso-generic-font-family:roman; mso-font-pitch:variable; mso-font-signature:3 0 0 0 1 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-536859905 -1073697537 9 0 511 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-ansi-language:EN-GB;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-family:"Calibri",sans-serif; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi; mso-ansi-language:EN-GB;} @page WordSection1 {size:612.0pt 792.0pt; margin:72.0pt 72.0pt 72.0pt 72.0pt; mso-header-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;} div.WordSection1 {page:WordSection1;} --> </style> |
One answer
You’ve looked Java cores or debug log or even database reports (such as AWR reports in Oracle). In the report you’ve seen the below query to get the Test Plan for the test case: ( takes 30+ seconds)
To diagnosis this issue, run the following debugging:
2. Side by side, open a test case in the RQM web UI, open a testcase which loads quickly and observer CPU load on the DB server. If CPU do no spike all good. 3. On RQM web UI, open a testcase which takes longer to load (more then 30 seconds). Observe CPU load. If the CPU goes up to 100% and stays up until test case is loaded, then this is query we’d need to optimize. 4. To optimize query, we don’t manually edit SQL stmt. Instead, we’d check DB statics to see if statistics is up-to-date. 5. If statistics is not up-to-date, you’d have to run statics manually and find a way to run statistics on a nightly basis. On this case, running a DB statistics on table VVERSIONABLE_ITEM and VERSIONABLE_ITEM made the query run faster. This resolved the issue of loading a test case in web UI. The testcase which was taking longer (30 seconds), loaded within a second. |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.