Y
Hacker News
new
|
ask
|
show
|
jobs
by
pdeva1
3548 days ago
does kubernetes take care of 'connection draining', ie making sure requests in flight are completed before killing traffic to an instance?
1 comments
sporkland
3547 days ago
Sort of a blend. It will send a sigterm to your process first which should be your signal to start draining and exit when they are done. If you don't finish within a configurable timeout then sigkill is sent.
link