-
-
Save bugcy013/8211984 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #why dont you go and do something else instead of writing software? thank you!! | |
| while read -r job_id status start_time user job_name priority _ _ used_mem _ need_mem _ ; do | |
| echo "$job_id $status $user $used_mem $(date -d@$(( $start_time / 1000 )))" ; | |
| done < <(mapred job -list all 2>/dev/null | egrep RUNN) | sort -k 4 -n | |
| #JobId State StartTime UserName Queue Priority UsedContainers RsvdContainers UsedMem RsvdMem NeededMem AM info |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment