← Back to team overview

openstack team mailing list archive

Re: eventlet and OpenStack external libraries

 

On Mon, Mar 12, 2012, Yun Mao <yunmao@xxxxxxxxx> wrote:
> My understanding is that if the answer to question3 is yes, then the
> blocking call should be executed in tpool, although it's more likely
> to have bugs in that case.

Please be very careful with tpool. If the code being executed in the
tpool thread ends up using a lock that can contend with code executing
the main thread, you can end up with the tpool thread hanging.

In particular, using logging can trigger this hang. You would need to
audit the library to ensure it's safe to be used.

This is one of the reasons I'd prefer to see Openstack move away from
eventlet. It has a handful of problems that requires a high level of
diligence to avoid properly.

JE



Follow ups

References