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
echo"[Warmup] No Docker network named 'image' found. Aborting."| tee -a "$logfile"
19
+
exit 1
20
+
fi
15
21
16
22
forcontainerin$containers;do
17
23
# Check if WARMUP_ENABLED=true is present in the environment
@@ -38,6 +44,7 @@ for container in $containers; do
38
44
# prevents race conditions where healthcheck passes but model isnt ready
39
45
40
46
# add random jitter to stagger warmups (addresses potential resource spike if all hit at once)
47
+
# note: even if some warmups fail, most models will still be partially/fully loaded, so the first real request is likely to succeed or respond faster than a cold start.
0 commit comments