Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

It could be that Supposed thatt a job cannot delete temporary files. For example, the Job scheduler_event_service (included with the base file config/scheduler_events.xml).
Temporary files are stored (Windows) e.g. in c:\temp, c:\windows\temp. That The exact location depends on which value has the environment variable TMP or TEMP.

One solution is to delete the files with the houskeeping job JobSchedulerCleanupFiles (base file config/scheduler_automation_java.xml). See the documentation how to configure the job.

Example to customize the Job job parameters to delete the temporary files of the scheduler_event_service Job  job older than 1 day:

Code Block

       <params>
          
          <param name = "file_path" value = "c:\tmp"/>
          
          <param name = "file_specification" value = "^sos.*"/>
          
          <param name = "file_age" value = "24:00"/>
        </params>