Relates to the
Jira Legacy | ||||||
---|---|---|---|---|---|---|
|
Problem
Some of our views like Timer Data View or SQL Show All View display aggregated data. In most cases the amount of data that is aggregated in those views is very high since the views display all instances of one data type. When data is read from storage, then a lot of time is spend to first de-serialize data from disk, which makes these queries to last longer. In addition any operation that user executes on the view, like change of the time resolution, will fire the update method which will in fact again de-serialize same data again and perform aggregation again.
...