The problem is actually worser, and the worker.nr == 0 can't be used.
I had to do something like this:
master_run = true
before_fork do |server, worker|
if master_run
#warm up server...
#kill old pid...
#disconnect active record
master_run = false
end
# other stuff for each worker
end
In the last example, using worker.nr == 0 would make the server crash
in case the worker 0 was killed/restarted.
Also the AR's disconnect and *many other stuff* people put on
before_fork should only be run once the master was preloaded, not for
every worker.
So I still think at least a hook like master_preloaded(server) is necessary.
cheers,
bráulio
On Fri, Oct 3, 2014 at 9:22 AM, Eric Wong <[email protected]> wrote:
> Bráulio Bhavamitra <[email protected]> wrote:
>> Hello all,
>>
>> If I need to hook something after master load, I'm currently doing:
>>
>> before_fork do |server, worker|
>> # worker 0 is the first to init, so hold the master here
>> if worker.nr == 0
>> #warm up server...
>>
>> #kill old pid...
>> end
>>
>> # other stuff for each worker
>> end
>>
>> Both operations I currently do (server warm up and old pid kill) need
>> to be run only once, and not for every worker as before_fork does,
>> that's why I had to put the condition seen above.
>
> The above is fine if your first worker never dies. I think you can add
> a local variable to ensure it only runs the first time worker.nr == 0 is
> started, in case a worker dies. Something like:
>
> first = true
> before_fork do |server, worker|
> # worker 0 is the first to init, so hold the master here
> if worker.nr == 0 && first
> first = false
> #warm up server...
>
> #kill old pid...
> end
>
> # other stuff for each worker
> end
>
> For what it's worth, I'm not a fan of auto-killing the old PID in the
> unicorn config and regret having it in the example config. It's only
> for the most memory-constrained configs and fragile (because anything
> with pid files is always fragile).
>
>> So hooks for master is needed, something like
>> master_after_load(server) and master_init(server).
>>
>> What do you think?
>
> rack.git also has a Rack::Builder#warmup method. Aman originally
> proposed it for unicorn, but it's useful outside of unicorn so
> we moved it to Rack.
>
> In general, I'm against adding new hooks/options because they tend to
> make maintainability and documentation harder for ops folks.
> I still have nightmares of some Capistrano config filled with hooks
> from years ago :x
>
> Features like these also makes migrating away from unicorn harder, so
> that is another reason we ended up adding #warmup to Rack and not
> unicorn.