ashb commented on PR #44427: URL: https://github.com/apache/airflow/pull/44427#issuecomment-2504799325
Yes, windows supports the socketpair etc (it's why I chose that API). This supervisor approach is what we do today with LocalTaskJob and the StandardRunner etc, this is just a simplified re-implementation of it. To fully support windows we will need to have something other than `os.fork` based approach, the rest should be possible. Windows supports keeping open "inheritable" sockets open to launched processes, so it'll be slower because of launching a whole new python interpreter, but again, this is the current behaviour on Windows of StandardTask runner. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
