summaryrefslogtreecommitdiff
path: root/create-baseline
blob: f04081f977c9ff4890d2841f0a6fd04063fe542e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash

# Copyright (C) 2014, Linaro Limited.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# Author: Andrew McDermott <andrew.mcdermott@linaro.org>

# This script creates a baseline file using teragen.
#
# Usage: create-baseline <N>
#
#  where N == number of gigabyte file to create.

THIS_BENCHMARK_DIR="$(cd $(dirname "${BASH_SOURCE[0]}") && pwd -P)"

source $THIS_BENCHMARK_DIR/common.sh

if [ ! -d $THIS_BENCHMARK_DIR/openjdk8-hadoop-LCA14 ]; then
    echo "error: openjdk8-hadoop-LCA14 directory is missing; run: git submodule update --init"
fi

mkdir -p $BENCHMARK_RESULTS_DIR

export JAVA_HOME=/usr

cd $THIS_BENCHMARK_DIR/openjdk8-hadoop-LCA14
. env.sh

which hadoop
which java
java -version
which hdfs

set -eu

stop-all.sh
rm -rf $HOME/hadoop-tmp
hdfs namenode -format -force
start-all.sh
# Need time for the datanodes to materialise.
sleep 30
jps
hadoop fs -mkdir -p /user/$USER
teragen $1 ${1}GB
rm -rf $TERAGEN_BASELINE_DIR/${1}GB
mkdir -p $TERAGEN_BASELINE_DIR
hadoop fs -copyToLocal /user/$USER/${1}GB $TERAGEN_BASELINE_DIR
stop-all.sh