Hi Community,
We just wonder to know there is a cron task which name is:
com.atlassian.jira.service.DefaultServiceManager
and this cron task has 8 jobs, there is a job named :
com.atlassian.jira.service.JiraService:10200
it’s params: {com.atlassian.jira.service.ServiceManager:serviceId=10200}
Is there anybody know what this job does?
Thanks/Br
Hi,
The job with the name com.atlassian.jira.service.JiraService:10200
corresponds to the following service in the database:
- ID: 10200
- Daytime: 86400000
- Class:
com.atlassian.jira.index.ha.IndexSnapshotService
- Service Name: JIRA Index Snapshot Service
- Cron Expression:
0 0 2 ? * *
(This means the job runs daily at 2:00 AM)
You can retrieve these details by running the following SQL query against your Jira database:
SELECT * FROM serviceconfig WHERE id = 10200;
Hope this helps!
Fabien