Comment 2 for bug 1291054

Revision history for this message
Julien Danjou (jdanjou) wrote :

Welcome to Python. Nothing is thread safe, and performances in Python of real system threads are terrible. Greenthreads that we used to be via monkey patching are introducing bugs in some drivers (like Cassandra).

The best option is here it to spawn multiple processes. Oslo's services.py should support that, but I never took the time to work on that.