turbo-crawl / watchdog.sh
OpenTransformer's picture
Upload watchdog.sh with huggingface_hub
6c84677 verified
raw
history blame contribute delete
257 Bytes
#!/bin/bash
MAX_GB=145
while true; do
USED=$(df /workspace | tail -1 | awk '{print int($3/1048576)}')
if [ "$USED" -ge "$MAX_GB" ]; then
echo "[WATCHDOG] Disk at ${USED}GB - STOPPING SCRAPER"
pkill -f turbo_crawl
exit 0
fi
sleep 60
done