flux account-fetch-job-records uses flux.job.job_list_inactive() to fetch all jobs that have finished since a certain time. However, it does not set a value for max_entries, which defaults to 1000. This would mean that it could miss fetching certain jobs if more than 1000 completed since a certain time.
max_entries should be set to 0 to get all jobs that have finished since a certain timestamp.
flux account-fetch-job-records
usesflux.job.job_list_inactive()
to fetch all jobs that have finished since a certain time. However, it does not set a value formax_entries
, which defaults to 1000. This would mean that it could miss fetching certain jobs if more than 1000 completed since a certain time.max_entries
should be set to0
to get all jobs that have finished since a certain timestamp.