checklimits.sh
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. #!/bin/bash
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements.  See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License.  You may obtain a copy of the License at
  8. #
  9. #     http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. COMMANDS=( "qstat" "qalter" "checkjob" )
  17. ERROR=0
  18. for (( i=0; i<${#COMMANDS[@]}; i++ ))
  19. do
  20.   cmd=${COMMANDS[$i]}
  21.   CMD_PATH=`which $cmd 2>/dev/null`
  22.   if [ $? -ne 0 ]
  23.   then
  24.     echo Could not find $cmd in PATH
  25.     ERROR=1
  26.   fi
  27. done
  28. if [ $ERROR -ne 0 ]
  29. then
  30.   exit 1
  31. fi
  32. jobs=`qstat -i |grep -o -e '^[0-9]*'`
  33. for job in $jobs
  34. do
  35.   echo -en "$jobt"
  36.   PATTERN="job [^ ]* violates active HARD MAXPROC limit of ([0-9]*) for user [^ ]*[ ]*(R: ([0-9]*), U: ([0-9]*))"
  37.   OUT=`checkjob $job 2>&1|grep -o -e "$PATTERN"`
  38.   if [ $? -eq 0 ]
  39.   then
  40.     echo -en "| Exceeds resource limitst"
  41.     COMMENT_FIELD=`echo $OUT|sed -e "s/$PATTERN/User-limits exceeded. Requested:2 Used:3 MaxLimit:1/"`
  42.     qstat -f $job|grep '^[ t]*comment = .*$' >/dev/null
  43.     if [ $? -ne 0 ]
  44.     then
  45.       echo -en "| Comment field updatedt"
  46.       qalter $job -W comment="$COMMENT_FIELD" >/dev/null
  47.     else
  48.       echo -en "| Comment field already sett"
  49.     fi
  50.   else
  51.     echo -en "| Doesn't exceed limits.t"
  52.   fi
  53.   echo
  54. done