config.py 293 B

123456789101112131415
  1. # -*- coding: utf-8 -*-
  2. # @Author : YY
  3. EXECUTORS = {
  4. "default": {"type": "threadpool", "max_workers": 20},
  5. "processpool": {"type": "processpool", "max_workers": 5},
  6. }
  7. TIMEZONE = "UTC"
  8. JOB_DEFAULTS = {
  9. "coalesce": True,
  10. "max_instances": 10,
  11. "misfire_grace_time": 300,
  12. }