You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the timeout the Agent enforces for docker create is 1 minute.
For the below reasons, we should collect some data and reconsider this timeout.
When under unusually heavy load, Docker's create times increase drastically, including well past that timeout. I've also got an issue on their end: moby/moby#15802
It's possible that this timeout could also be brushed against in more normal operation however. This forum post shows an instance of create taking ~70 seconds in normal operation while using an older version of Docker (1.6.2 I think).
Other possible resolutions to this, other than picking a bigger number, include throttling calls to Docker's API. One particularly good approach here could be to observe create times and backoff proportional to their increase, though that won't be trivial to implement.
The text was updated successfully, but these errors were encountered:
Currently the timeout the Agent enforces for
docker create
is 1 minute.For the below reasons, we should collect some data and reconsider this timeout.
When under unusually heavy load, Docker's
create
times increase drastically, including well past that timeout. I've also got an issue on their end: moby/moby#15802It's possible that this timeout could also be brushed against in more normal operation however. This forum post shows an instance of create taking ~70 seconds in normal operation while using an older version of Docker (1.6.2 I think).
Other possible resolutions to this, other than picking a bigger number, include throttling calls to Docker's API. One particularly good approach here could be to observe create times and backoff proportional to their increase, though that won't be trivial to implement.
The text was updated successfully, but these errors were encountered: