Required Configuration for Scheduled Jobs
Copy
Aras Innovator Agent Service is extended with a background service to execute Jobs. See Section 4 – Scheduled Jobs Processing.
Agent Service has one instance of JobsBackgorundService per each Innovator Database. To configure which databases should be processed. JobsProcessingCycles section should be added to appsettings.json config file of Agent Service:
"JobsProcessingCycles": [
{
"DB": "{DB1}",
"Interval": 2
},
{
"DB": "{DB2}",
"Interval": 20
}
Each background service requires two settings:
- DB – defines a database to fetch scheduled jobs from
- Interval – defines a pulling interval in seconds to fetch Scheduled Jobs. This configuration is optional. If not set the default value is set to 5.