Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira slow or unresponsive when Assignee field is on edit screen

David Letts
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 20, 2023

Hi,

We're having issues with our Jira instance where it is either taking a long time to open the edit screen, or eventually timing out without opening the screen at all.

We've tracked it down to having the Assignee field included on the edit screen - if it's included on that screen it is either slow or times out, if it's removed from the edit screen then it opens almost instantly.

We've tried turning on the SQL logging and the below query seems to be taking a long time to run:

SELECT CG.ID, CG.issueid, CG.AUTHOR, CG.CREATED, CI.ID, CI.groupid, CI.FIELDTYPE, CI.FIELD, CI.OLDVALUE, CI.OLDSTRING, CI.NEWVALUE, CI.NEWSTRING FROM JIRASchema.changegroup CG INNER JOIN JIRASchema.changeitem CI ON CG.ID = CI.groupid WHERE CG.issueid='XXXXX' AND CI.FIELD='assignee' ORDER BY CG.CREATED ASC, CI.ID ASC

 

If we run this query directly against the database it runs quickly with no issues. This has only just started happening with Jira no changes that we're aware of.

 

Has anyone seen an issue like this before or know what we can try to resolve this issue?

2 answers

0 votes
David Letts
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 8, 2023

Hi Will, Yes we managed to resolve it. In our case adding the indexes mentioned in this link instantly fixed it.

https://jira.atlassian.com/browse/JRASERVER-63002

 

CREATE UNIQUE INDEX JIRADBUSER.CHANGEGROUP_SCX1
 ON JIRADBUSER.CHANGEGROUP
(ISSUEID, ID)
TABLESPACE JIRA_DATA;

 

CREATE INDEX JIRADBUSER.CHANGEITEM_SCX1
 ON JIRADBUSER.CHANGEITEM
 (GROUPID, FIELD)
TABLESPACE JIRA_DATA;
0 votes
Will C
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 7, 2023

Hey David, did you ever get an answer or fix for this?

Suggest an answer

Log in or Sign up to answer