The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Can you explain to me what is wrong with the following query?

Deleted user
July 2, 2012

We are running JIRA 4.4.4 and MySQL. One of our customers has a direct access to the database and want's to execute the following query. It didn't terminate and while it's running the JIRA slows down. Can you explain to me why it is problematic and suggest how to fix it.

select cc.id, cc.fieldconfigscheme, cc.customfield, cfv.issue, fcs.configname, fcs.description, cf.cfname, cfo.sequence, cfo.customvalue, cfo.disabled, it.pname
from configurationcontext cc left outer join fieldconfigscheme fcs on fcs.id = cc.fieldconfigscheme
left outer join customfieldoption cfo on cfo.customfieldconfig = fcs.id
left outer join fieldconfigschemeissuetype fcsit on fcsit.fieldconfigscheme = fcs.id
left outer join issuetype it on it.id = fcsit.issuetype
left outer join customfield cf on cf.id = cfo.customfield
left outer join customfieldvalue cfv on cfv.customfield = cf.id 
where cc.project = 10216
order by 1,2,3,4;

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Reed Johnson
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 17, 2013

It might help to move some of the constraints on cc into a subquery. My hypothesis is that the subquery will return a smaller result set to join on, rather than performing a huge join, and filtering at the end. Mysql's query optimizer might take care of this for you, but worth a shot.

So it would look like:

select cc.id, cc.fieldconfigscheme, cc.customfield, cfv.issue, fcs.configname, fcs.description, cf.cfname, cfo.sequence, cfo.customvalue, cfo.disabled, it.pname
from 
  (select
     id, fieldconficscheme, customfield
   from configurationcontext
   where cc.project = 10216) cc
left outer join fieldconfigscheme fcs on fcs.id = cc.fieldconfigscheme
left outer join customfieldoption cfo on cfo.customfieldconfig = fcs.id
left outer join fieldconfigschemeissuetype fcsit on fcsit.fieldconfigscheme = fcs.id
left outer join issuetype it on it.id = fcsit.issuetype
left outer join customfield cf on cf.id = cfo.customfield
left outer join customfieldvalue cfv on cfv.customfield = cf.id
order by 1,2,3,4;

1 vote
Deleted user
July 2, 2012

The slowing down would be because of the number of joins you have and the amount of data that you are trying join.

Deleted user
July 2, 2012

Yes, I understand, is there a way to rewrite the query so that it is more effective?

TAGS
AUG Leaders

Atlassian Community Events