Change max.processing.time.per.day limit

keti burjanadze April 4, 2022

HI

I need change max.processing.time.per.day limit,  how can I do it  maybe you can help me.

I have jira server 8.13

 

2 answers

2 accepted

0 votes
Answer accepted
keti burjanadze April 4, 2022

@Fabio Racobaldo _Herzum_ Thanks for the for the reply, I saw this article too,   I found my current limits

 

but I could not use this rest call to set new limit

PUT https://<your Jira instance url>/rest/cb-automation/latest/configuration/property

{
    "key": "max.processing.time.per.day",
    "value": "10000"
}
Fabio Racobaldo _Herzum_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 4, 2022

Try using postman or curl.

It should work!

keti burjanadze April 4, 2022

thanks 

I didi it :)

Fabio Racobaldo _Herzum_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 4, 2022

I'm happy for that. Please marl my answer as accepted in order to close this thread ;)

0 votes
Answer accepted
Fabio Racobaldo _Herzum_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 4, 2022

Hi @keti burjanadze ,

please follow this guide https://confluence.atlassian.com/automation/service-limits-993924705.html

 

Use a REST call to increase limits

First, find out what your current limits are using this HTTP REST call:

https://YOUR_JIRA_INSTANCE_URL/rest/cb-automation/latest/configuration/property:

{
    "max.processing.time.per.day": "3600",
    "rule.rate.per.five.second": "2",
    "short.scheduled.interval.issue.limit": "1000",
    "max.rules.per.hour": "5000",
    "max.issues.per.search": "1000",
    "max.queued.items.per.rule": "25000"
}

Lets break these down:

Property Description
max.processing.time.per.day This is the maximum number of seconds a single rule can spend processing in the last 24hr period. That is, if a rule takes 1 min to execute on average and it executes 60 times in a 24 hour limit, then this rule would be throttled.

Hope this helps,

Fabio

Suggest an answer

Log in or Sign up to answer