-
Type:
Suggestion
-
Resolution: Won't Fix
-
Component/s: Infrastructure & Services
NOTE: This suggestion is for JIRA Cloud. Using JIRA Server? See the corresponding suggestion.
Currently the timesheet gadget on JIRA is running the following query to pick up the data:
SELECT ID, issueid, AUTHOR, grouplevel, rolelevel, worklogbody, CREATED, UPDATEAUTHOR, UPDATED, STARTDATE, timeworked FROM worklog WHERE (STARTDATE >= 'XXXX ) AND (STARTDATE < XXXXX' );
since there is not index for the column startdate, this query need to make a full table scan with the condition as in the execution plan. Having an index on that column will dramatically improve the query execution time.
- is related to
-
JRACLOUD-33943 Add indexes to worklog table
- Closed
-
JRASERVER-60817 Improve Performance for the worklog table
- Gathering Interest