You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello guys.
I need to retrieve jira field information by projectKey/issueType/fieldId.
From I what I know there is no REST call which would let me return such information from Jira - I can only retrieve all fields for certain project/issue combination and then work with it by filtering data for certain fieldId. Like this:
The problem arises when I need to get info for many fields from the same project/issue: in this case I run the same request many times and then filter it by fieldId. It is excessive and causes too much load at jira server.
So, I decided I will cache this call and save a list of jira fields:
@Cacheable(JIRA_FIELDS_BY_PROJECT_AND_ISSUETYPE)
public List<CimFieldInfo> getCimFieldInfos(String projectKey, Long issueTypeId) {
GetCreateIssueMetadataOptions metadataOptionsBuilder = new GetCreateIssueMetadataOptionsBuilder()
.withProjectKeys(projectKey)
.withIssueTypeIds(issueTypeId)
.withExpandedIssueTypesFields()
.build();
return new ArrayList<>(jiraRestClient.getIssueClient()
.getCreateIssueMetadata(metadataOptionsBuilder)
.claim()
.iterator().next()
.getIssueTypes()
.iterator().next()
.getFields()
.values());
}
And here is where I get hazelcast error:
Caused by: com.hazelcast.nio.serialization.HazelcastSerializationException: There is no suitable serializer for class com.atlassian.jira.rest.client.api.domain.CimFieldInfo
When I check CimFieldInfo I see that it doesn't implement Serializable. I think that is why Hazelcast complains.
One of the ways I see is to map CimFieldInfo to some custom serializable entity and cache it instead. But it will have too many fields and I don't want to bother with it.
Is there any other solution to this issue?
Atlassian's marketplace partners have had a very productive start to 2021! Since our last roundup, our developer community has added over 160 new cloud apps to the Atlassian Marketplace to help you...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events