User Guide : Configuring Integration Manager : Job History Management
 
Share this page                  
Job History Management
You can control the amount of job history maintained by Integration Manager by date, by volume, or both depending on your needs. For example, you could set the job history cutoff at 90 days and a maximum of 150,000 records. In this scenario, it will remove the greater number of records exceeding either threshold. These settings are controlled in your application.properties file by adding these optional properties:
repository.storage-type=local
job.history.max-job-age=90
job.history.max-job-count=150000
You additionally may control how often your job history is evaluated. The default is once per day. We highly recommend evaluating no more often than once per day in production systems. For test and non-production systems, you may specify an interval of no less than 5 minutes (300000ms). To modify this interval, you may add the optional property:
job.history.clean-interval=86400000 (evaluated in milliseconds)
Restart your Integration Manager service after adding or changing application.properties.