mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	When scripts/vm/hypervisor/kvm/kvmvmactivity.sh is called with an incorrect file name, an error is printed which is then interpreted as output from the script. When an incorrect file name is passed the script prints out: stat: cannot stat ‘b51d7336-d964-44ee-be60-bf62783dabc’: No such file or directory =====> DEAD <====== The KVMHAVMActivityChecker.java checkingHB() process is expecting just =====> DEAD <====== but gets the unexpected error message and interprets the file as alive.
		
			
				
	
	
		
			136 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# Licensed to the Apache Software Foundation (ASF) under one
 | 
						|
# or more contributor license agreements.  See the NOTICE file
 | 
						|
# distributed with this work for additional information
 | 
						|
# regarding copyright ownership.  The ASF licenses this file
 | 
						|
# to you under the Apache License, Version 2.0 (the
 | 
						|
# "License"); you may not use this file except in compliance
 | 
						|
# with the License.  You may obtain a copy of the License at
 | 
						|
#
 | 
						|
#   http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
# Unless required by applicable law or agreed to in writing,
 | 
						|
# software distributed under the License is distributed on an
 | 
						|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 | 
						|
# KIND, either express or implied.  See the License for the
 | 
						|
# specific language governing permissions and limitations
 | 
						|
# under the License.
 | 
						|
 | 
						|
help() {
 | 
						|
  printf "Usage: $0
 | 
						|
                    -i nfs server ip
 | 
						|
                    -p nfs server path
 | 
						|
                    -m mount point
 | 
						|
                    -h host
 | 
						|
                    -u volume uuid list
 | 
						|
                    -t time on ms
 | 
						|
                    -d suspect time\n"
 | 
						|
  exit 1
 | 
						|
}
 | 
						|
 | 
						|
#set -x
 | 
						|
 | 
						|
NfsSvrIP=
 | 
						|
NfsSvrPath=
 | 
						|
MountPoint=
 | 
						|
HostIP=
 | 
						|
UUIDList=
 | 
						|
MSTime=
 | 
						|
SuspectTime=
 | 
						|
 | 
						|
while getopts 'i:p:m:u:t:h:d:' OPTION
 | 
						|
do
 | 
						|
  case $OPTION in
 | 
						|
  i)
 | 
						|
     NfsSvrIP="$OPTARG"
 | 
						|
     ;;
 | 
						|
  p)
 | 
						|
     NfsSvrPath="$OPTARG"
 | 
						|
     ;;
 | 
						|
  m)
 | 
						|
     MountPoint="$OPTARG"
 | 
						|
     ;;
 | 
						|
  h)
 | 
						|
     HostIP="$OPTARG"
 | 
						|
     ;;
 | 
						|
  u)
 | 
						|
     UUIDList="$OPTARG"
 | 
						|
     ;;
 | 
						|
  t)
 | 
						|
     MSTime="$OPTARG"
 | 
						|
     ;;
 | 
						|
  d)
 | 
						|
     SuspectTime="$OPTARG"
 | 
						|
     ;;
 | 
						|
  *)
 | 
						|
     help
 | 
						|
     ;;
 | 
						|
  esac
 | 
						|
done
 | 
						|
 | 
						|
if [ -z "$NfsSvrIP" ]
 | 
						|
then
 | 
						|
   exit 2
 | 
						|
fi
 | 
						|
 | 
						|
if [ -z "$SuspectTime" ]
 | 
						|
then
 | 
						|
   exit 2
 | 
						|
fi
 | 
						|
 | 
						|
hbFile="$MountPoint/KVMHA/hb-$HostIP"
 | 
						|
acFile="$MountPoint/KVMHA/ac-$HostIP"
 | 
						|
 | 
						|
# First check: heartbeat file
 | 
						|
now=$(date +%s)
 | 
						|
hb=$(cat $hbFile)
 | 
						|
diff=$(expr $now - $hb)
 | 
						|
if [ $diff -lt 61 ]
 | 
						|
then
 | 
						|
  echo "=====> ALIVE <====="
 | 
						|
  exit 0
 | 
						|
fi
 | 
						|
 | 
						|
if [ -z "$UUIDList" ]
 | 
						|
then
 | 
						|
  echo "=====> DEAD <======"
 | 
						|
  exit 0
 | 
						|
fi
 | 
						|
 | 
						|
# Second check: disk activity check
 | 
						|
cd $MountPoint
 | 
						|
latestUpdateTime=$(stat -c %Y $(echo $UUIDList | sed 's/,/ /g') 2> /dev/null | sort -nr | head -1)
 | 
						|
 | 
						|
if [ ! -f $acFile ]; then
 | 
						|
    echo "$SuspectTime:$latestUpdateTime:$MSTime" > $acFile
 | 
						|
 | 
						|
    if [[ $latestUpdateTime -gt $SuspectTime ]]; then
 | 
						|
        echo "=====> ALIVE <====="
 | 
						|
    else
 | 
						|
        echo "=====> DEAD <======"
 | 
						|
    fi
 | 
						|
else
 | 
						|
    acTime=$(cat $acFile)
 | 
						|
    arrTime=(${acTime//:/ })
 | 
						|
    lastSuspectTime=${arrTime[0]}
 | 
						|
    lastUpdateTime=${arrTime[1]}
 | 
						|
    echo "$SuspectTime:$latestUpdateTime:$MSTime" > $acFile
 | 
						|
 | 
						|
    suspectTimeDiff=$(expr $SuspectTime - $lastSuspectTime)
 | 
						|
    if [[ $suspectTimeDiff -lt 0 ]]; then
 | 
						|
        if [[ $latestUpdateTime -gt $SuspectTime ]]; then
 | 
						|
            echo "=====> ALIVE <====="
 | 
						|
        else
 | 
						|
            echo "=====> DEAD <======"
 | 
						|
        fi
 | 
						|
    else
 | 
						|
        if [[ $latestUpdateTime -gt $lastUpdateTime ]]; then
 | 
						|
            echo "=====> ALIVE <====="
 | 
						|
        else
 | 
						|
            echo "=====> DEAD <======"
 | 
						|
        fi
 | 
						|
    fi
 | 
						|
fi
 | 
						|
 | 
						|
exit 0
 |