Skip to content

Instantly share code, notes, and snippets.

@sideshowcoder
Created May 7, 2015 21:27
Show Gist options
  • Select an option

  • Save sideshowcoder/071f601d38cf2de61abd to your computer and use it in GitHub Desktop.

Select an option

Save sideshowcoder/071f601d38cf2de61abd to your computer and use it in GitHub Desktop.
MAX_MEM=50000
for pid in $(ps ax|grep 'unicorn_rails worker'|awk 'NR>1 {print l} {l=$1}'); do
test $(cat "/proc/$pid/status" | grep "VmSize:" | sed -re s,VmSize:\\s+,, | cut -d" " -f1) -gt $MAX_MEM && kill -QUIT $pid
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment