Dear colleagues,
I am fighting with a problem caused by some specifics of the Component/s standard field:
The problem is that all standard and custom fields are copied to the parent and to the newly created subtask, except the Component/s standard field. The newly created subtask inherits the original value of the Component/s field before the change. Note that no other standard or custom fields experience this problem - the copied values from the parent to the newly created subtask are exactly those provided by the initial subtask.
The code uses the public API IssueService and IssueInputParameters for updating, transitioning and creating the issues.
Here is a demonstration log of the events and changes happening:
Enter event 13 on issue MAD-458(h=759368613) Replicate from MAD-458(h=759368613) to MAD-415(h=421154895) set issue input parameter Components -> [10300, 10301] set issue input parameter Affected Versions -> [10301] set issue input parameter Environment -> null set issue input parameter Description -> push 443 Enter event 2 on issue MAD-415(h=1679514000) Exit event 2 on issue MAD-415(h=1679514000) Issue MAD-415(433405394) Components [ProjectComponentImpl { name='MAD.C1',... id='10300' }, ProjectComponentImpl { name='MAD.C2',... id='10301' }] transition issue MAD-415(h=433405394) action: Proceed Enter event 13 on issue MAD-415(h=473479075) When constructing sub-task the parent Components are [ProjectComponentImpl { name='MAD.C1',... id='10300' }] set issue input parameter Summary -> Components are not transferred from subtask through parent to subtask set issue input parameter Description -> push 443 set issue input parameter Reporter -> rico set issue input parameter Components -> [10300] set issue input parameter Affected Versions -> [10301] set issue input parameter Environment -> null Enter event 1 on issue MAD-459(h=1067168956) Exit event 1 on issue MAD-459(h=1067168956) Constructed Issue MAD-415(473479075) Components [ProjectComponentImpl { name='MAD.C1', description='', lead='', assigneeType='0', projectId='11000', id='10300' }] Exit event 13 on issue MAD-415(h=473479075) transition issue MAD-415 action: Proceed succeeded. Exit event 13 on issue MAD-458(h=759368613)
The log indicates the System.identityHashCode of the issue objects referred.
In this case:
I assume the problem is caused by some caching and the nested transactions, but the nested transactions are logical and only the outer-most transaction (for event 13 on MAD-458) is physical/database one and it is committed at the exit of the event handling.
How could problems be solved? How could the nested event (13) access the updated parent issue?
Thank you in advance for your help
Rusi Popov
During the implementation of this design, the following important specifics (even bugs) of JIRA were revealed:
Revealed that the mechanism the workflow uses to transfer parameters to the Conditions, Validators and Post-functions works/is used as a container of the issue objects for most of the standard functions, conditions, validators:
Most of the standard Conditions, Validators and Post-functions use to store the whole issue (from that cache) in the database.
JIRA persistence does not provide optimistic locking, thus collision of the issue versions happen uncontrolled, when custom post functions update the issue in DB and then the standard functions take over.
In order to resolve this conflict, I set up our custom functions to update the "cached" issue in the parameters map.
Revealed that:
Function | Issue Instance Used |
com.atlassian.jira.workflow.function.event.FireIssueEventFunction | Fires the event on the IN MEMORY issue parameter |
com.atlassian.jira.workflow.function.issue.GenerateChangeHistoryFunction | Stores the IN MEMORY parameter issue |
com.atlassian.jira.workflow.function.issue.IssueReindexFunction | Reindexes the IN-MEMORY issue |
com.atlassian.jira.workflow.function.issue.UpdateIssueFieldFunction | Updates the issue IN MEMORY, stores fields other than STATUS, ESTIMATE (like RESOLUTION, ASSIGNEE) directly in DB |
com.atlassian.jira.workflow.function.issue.UpdateIssueStatusFunction | Updates the parameter issue's state IN MEMORY |
com.atlassian.jira.workflow.function.misc.CreateCommentFunction | Constructs a comment parameter, adds it to the parameter issue, loads the issue from DB, add the comment and stores it as a whole |
Both these issues cause the reported misbehavior.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.