ankane/slowpoke

Clarification on Safer Service Timeouts

ScotterC opened this issue · 3 comments

In the readme it seems to imply that when using Puma a timeout will kill the process and all the threads. However is that still the case when you're sending TERM to the process which is supposed to "the worker will attempt to finish then exit" ? And if that's the case, what advantages are there from only killing processes if it's within an ActiveRecord code execution?

Thanks for your time.

Hi @ScotterC, Slowpoke uses TERM for Puma. It's safest to always exit, but since this will have a significant impact on performance, you can choose to only exit in certain cases (Active Record is just an example of a place I've seen issues if it's interrupted and you don't exit).

@ankane Came here to ask the same thing as @ScotterC.

I couldn't understand exactly what would be the "significant impact on performance".

Just to be sure: The process will be killed and a new one will be be spawned in it's place by puma, so the worker pool won't get permanently reduced, correct?

If that's the case, what is the impact on performance on the gem's defaults?

Thank you!

@feliperaul For me the impact was that there were no other workers left, so clients had to wait till the new worker was booted.