All Downloads are FREE. Search and download functionalities are using the official Maven repository.

noaa-ghcn-daily.scripts.run_benchmark_cluster.sh Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
#!/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.
#

# Run all the queries and save a log. 
# First argument: Supply the folder which houses all the queries (recursive).
# Second argument: adds options to the VXQuery CLI.
#
# run_benchmark.sh ./noaa-ghcn-daily/benchmarks/local_speed_up/queries/
# run_benchmark.sh ./noaa-ghcn-daily/benchmarks/local_speed_up/queries/ "-client-net-ip-address 169.235.27.138"
# run_benchmark.sh ./noaa-ghcn-daily/benchmarks/local_speed_up/queries/ "" q03
#
CLUSTER="rita"
REPEAT=1
FRAME_SIZE=$((8*1024))
BUFFER_SIZE=$((32*1024*1024))
JOIN_HASH_SIZE=$((1024*1024*1024))
#JOIN_HASH_SIZE=-1

if [ -z "${1}" ]
then
    echo "Please supply a directory for query files to be found."
    exit
fi

if [ -z "${2}" ]
then
    echo "Please the number of nodes (start at 0)."
    exit
fi

# Run queries for the specified number of nodes.
echo "Starting ${2} cluster nodes"
python vxquery-server/src/main/resources/scripts/cluster_cli.py -c vxquery-server/src/main/resources/conf/${CLUSTER}/${2}nodes.xml -a start

# wait for cluster to finish setting up  
sleep 5

export JAVA_OPTS="$JAVA_OPTS -server -Xmx7G -Djava.util.logging.config.file=./vxquery-benchmark/src/main/resources/noaa-ghcn-daily/scripts/testing_logging.properties"

for j in $(find ${1} -name '*q??.xq')
do
    # Only work with i nodes.
    if [[ "${j}" =~ "${2}nodes" ]]
    then
        # Only run for specified queries.
        if [ -z "${4}" ] || [[ "${j}" =~ "${4}" ]]
        then
            date
            echo "Running query: ${j}"
            log_file="$(basename ${j}).$(date +%Y%m%d%H%M).log"
            log_base_path=$(dirname ${j/queries/query_logs})
            mkdir -p ${log_base_path}
            time sh ./vxquery-cli/target/appassembler/bin/vxq ${j} ${3} -timing -showquery -showoet -showrp -frame-size ${FRAME_SIZE} -buffer-size ${BUFFER_SIZE} -join-hash-size ${JOIN_HASH_SIZE} -repeatexec ${REPEAT} -timing-ignore-queries 0 > ${log_base_path}/${log_file} 2>&1
            echo "\nBuffer Size: ${BUFFER_SIZE}" >> ${log_base_path}/${log_file}
            echo "\nFrame Size: ${FRAME_SIZE}" >> ${log_base_path}/${log_file}
            echo "\nJoin Hash Size: ${JOIN_HASH_SIZE}" >> ${log_base_path}/${log_file}
        fi;
    fi;
done
    
# Stop cluster.
python vxquery-server/src/main/resources/scripts/cluster_cli.py -c vxquery-server/src/main/resources/conf/${CLUSTER}/${2}nodes.xml -a stop
sleep 5
python vxquery-server/src/main/resources/scripts/cluster_cli.py -c vxquery-server/src/main/resources/conf/${CLUSTER}/${2}nodes.xml -a kill

if which programname >/dev/null;
then
    echo "Sending out e-mail notification."
    SUBJECT="Benchmark Cluster Tests Finished"
    EMAIL="[email protected]"
    /bin/mail -s "${SUBJECT}" "${EMAIL}" <




© 2015 - 2024 Weber Informatics LLC | Privacy Policy