forked from GoogleCloudDataproc/bdutil
-
Notifications
You must be signed in to change notification settings - Fork 1
/
hadoop2_env.sh
81 lines (64 loc) · 3.05 KB
/
hadoop2_env.sh
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2014 Google Inc. All Rights Reserved.
#
# Licensed 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.
# Sets environment variables for YARN based Hadoop 2.x deployment
GCS_CACHE_CLEANER_LOGGER='INFO,RFA'
# URI of Hadoop tarball to be deployed. Must begin with gs:// or http(s)://
# Use 'gsutil ls gs://hadoop-dist/hadoop-*.tar.gz' to list Google supplied options
HADOOP_TARBALL_URI="gs://hadoop-dist/hadoop-2.7.1.tar.gz"
# Directory holding config files and scripts for Hadoop
HADOOP_CONF_DIR="${HADOOP_INSTALL_DIR}/etc/hadoop"
# Fraction of worker memory to be used for YARN containers
NODEMANAGER_MEMORY_FRACTION=0.8
# Decimal number controlling the size of map containers in memory and virtual
# cores. Since by default Hadoop only supports memory based container
# allocation, each map task will be given a container with roughly
# (CORES_PER_MAP_TASK / <total-cores-on-node>) share of the memory available to
# the NodeManager for containers. Thus an n1-standard-4 with CORES_PER_MAP_TASK
# set to 2 would be able to host 4 / 2 = 2 map containers (and no other
# containers). For more details see the script 'libexec/configure-mrv2-mem.py'.
CORES_PER_MAP_TASK=1.0
# Decimal number controlling the size of reduce containers in memory and virtual
# cores. See CORES_PER_MAP_TASK for more details.
CORES_PER_REDUCE_TASK=2.0
# Decimal number controlling the size of application master containers in memory
# and virtual cores. See CORES_PER_MAP_TASK for more details.
CORES_PER_APP_MASTER=2.0
# Connector with Hadoop AbstractFileSystem implemenation for YARN
GCS_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/gcs/gcs-connector-1.4.3-hadoop2.jar'
BIGQUERY_CONNECTOR_JAR='https://storage.googleapis.com/hadoop-lib/bigquery/bigquery-connector-0.7.3-hadoop2.jar'
HDFS_DATA_DIRS_PERM='700'
# 8088 for YARN, 50070 for HDFS.
MASTER_UI_PORTS=('8088' '50070')
# Allow to tune the YARN scheduler to
YARN_SCHEDULER_CAPACITY_MAXIMUM_APPLICATIONS=10000
YARN_SCHEDULER_CAPACITY_MAX_AM_PERCENT=0.2
# Use Hadoop 2 specific configuration templates.
if [[ -n "${BDUTIL_DIR}" ]]; then
UPLOAD_FILES=($(find ${BDUTIL_DIR}/conf/hadoop2 -name '*template.xml'))
UPLOAD_FILES+=("${BDUTIL_DIR}/libexec/hadoop_helpers.sh")
UPLOAD_FILES+=("${BDUTIL_DIR}/libexec/configure_mrv2_mem.py")
fi
# Use Hadoop 2 specific start scripts
COMMAND_GROUPS+=(
'deploy_start2:
libexec/start_hadoop2.sh'
)
COMMAND_STEPS=(
"deploy-ssh-master-setup,*"
'deploy-core-setup,deploy-core-setup'
"*,deploy-ssh-worker-setup"
"deploy-master-nfs-setup,*",
"deploy-client-nfs-setup,deploy-client-nfs-setup",
'deploy_start2,*'
)