0 votes
in JavaScript by
Why is Graceful shutdown important?

1 Answer

0 votes
by

If we don't stop our application correctly, we are wasting resources like DB connections and we may also break ongoing requests. An HTTP request doesn't recover automatically - if we fail to serve it, then we simply missed it.

...