potiuk commented on issue #37149: URL: https://github.com/apache/airflow/issues/37149#issuecomment-1928043023
> One notable thing is that when using venv, google-re2 installed through pip without error. Of course. This will also work in conda as soon as conda maintainers will stop giving compilers MacOS 10.9 system librarires to use to build packages (End of Life of which were 7 years ago). This is basically why installing google-re2 fails on Conda because it forces it to be build using system libraries that had last update 7 years go. Pip does it properly - using the libraries of the current system you are on. And google-re2 has been first released after 10.9 reached EOL. https://github.com/conda-forge/conda-forge.github.io/issues/1844 If you want you can even comment in the issue above. We always recommend to use pip. > However, now I just get a new error when I try to access the UI: I also have no such problem. Having your workers killed indicates that you have something wrong in your system that triggers some errors. You have not mentioned if you have ARM/ M1/2/3 but I guess so. Then you se Python 3.10 at least. A number of libraries for Python 3.9 has worse support for ARM, so you are way better to use higher python version and it might be it causes some problems on your system. The problem is that when task is killed with SIGKILL, whoever/whatever kills it, gives it no chance to write anything to the log, so we will not fiind out what killed it. This might be related to some specifics of your environment - for example the way how you installed Python (was it conda?). Various ways of installing python might have some problems and I would not be surprised if conda is causing it. For webserver you can also try different options of gunicorn starting (see configuration) , some of them might cause problems if system libraries got modified Generally - make sure you have whole environment set outside of conda and you shoudl be good.. -- 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]
