Project

General

Profile

Performance profiling » History » Version 3

Radhika Chippada, 05/11/2015 07:12 PM

1 1 Radhika Chippada
h1. Performance profile workbench
2
3
4
h2. Problem
5
6
Workbench makes repeated calls for the same object(s) from the API server. Also, workbench sometimes makes multiple calls to the API server. For ex: get a link, one at a time rather than pulling all links needed by the object in one request from API server. This was observed several times in the past. And, we have used “preload-*” in those instances when we noticed this.
7
8
As recently as of fixing #5622, it was observed that each link was being retrieved in a separate call. Similar behavior is observed in #5908. 
9
10
Given this, it is clear that we have this symptom in several areas in workbench. It is likely that we have other such problem patterns in our implementation.
11
12
Thus, it makes sense to do performance profiling of workbench to identify potential areas of improvement in workbench. This can also help identify API methods that can be tweaked to improve API server performance.
13
14
h2. Proposed solutions
15
16
h3. Profile using ruby-prof
17
18 2 Radhika Chippada
In development environment, use rack-mini-profiler to profile workbench pages. https://github.com/MiniProfiler/rack-mini-profiler
19 1 Radhika Chippada
20 2 Radhika Chippada
* Set the environment variable:   ENABLE_PROFILING=yes
21
22
* Visit a workbench page
23
** After the page loads, you will see a clickable button at the top left corner (with the number of ms taken by the page)
24
** Click on this button to see the profile breakdown of several assets in displaying this page
25
** Append ?pp=help to see available options
26
** Append ?pp=flamegraph to see a graphical representation of the profile (though I did not find this to be of much help in our workbench)