GitHub user ashb added a comment to the discussion: High CPU and database load caused by Airflow 3 dag-processor and scheduler
That `while True` in the manager is not a tight loop -- we call to `self._service_processor_sockets(timeout=poll_time)` which does a select/epoll/kqueue etc, so should be yielding CPU time, unless we can't get around the loop on under a second. GitHub link: https://github.com/apache/airflow/discussions/53177#discussioncomment-13751686 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
