* Update hadoop.md * Update hadoop.md * Update hadoop.md * Update hadoop.md * Update hadoop.md
		
			
				
	
	
	
	
		
			5.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	Hadoop/YARN User Guide
Hadoop version: Apache Hadoop >= 2.7 (3.X included) or CDH 5.X. CDH 6.X have not been tested and thus currently not supported.
For scala user, please see scala user guide for how to run BigDL on hadoop/yarn cluster.
For python user, you can run BigDL programs on standard Hadoop/YARN clusters without any changes to the cluster(i.e., no need to pre-install BigDL or any Python libraries in the cluster).
1. Prepare python Environment
- 
You need to first use conda to prepare the Python environment on the local client machine. Create a conda environment and install all the needed Python libraries in the created conda environment:
conda create -n bigdl python=3.7 # "bigdl" is conda environment name, you can use any name you like. conda activate bigdl # Use conda or pip to install all the needed Python dependencies in the created conda environment. - 
You need to download and install JDK in the environment, and properly set the environment variable
JAVA_HOME, which is required by Spark. JDK8 is highly recommended.You may take the following commands as a reference for installing OpenJDK:
# For Ubuntu sudo apt-get install openjdk-8-jre export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/ # For CentOS su -c "yum install java-1.8.0-openjdk" export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.282.b08-1.el7_9.x86_64/jre export PATH=$PATH:$JAVA_HOME/bin java -version # Verify the version of JDK. - 
Check the Hadoop setup and configurations of your cluster. Make sure you properly set the environment variable
HADOOP_CONF_DIR, which is needed to initialize Spark on YARN:export HADOOP_CONF_DIR=the directory of the hadoop and yarn configurations - 
For CDH users
 
If you are using BigDL with pip and your CDH cluster has already installed Spark, the CDH's spark will have conflict with the pyspark installed by pip required by bigdl in next section.
Thus before running bigdl applications, you should unset all the spark related environment variables. You can use env | grep SPARK to find all the existing spark environment variables.
Also, CDH cluster's HADOOP_CONF_DIR should be /etc/hadoop/conf on CDH by default.
2. YARN Client Mode
- 
Install BigDL components in the created conda environment via pip, like dllib and orca:
pip install bigdl-dllib pip install bigdl-orcaView the Python User Guide for more details.
 - 
We recommend using
init_orca_contextat the very beginning of your code to initiate and run BigDL on standard Hadoop/YARN clusters in YARN client mode:from bigdl.orca import init_orca_context sc = init_orca_context(cluster_mode="yarn-client", cores=4, memory="10g", num_nodes=2)By specifying cluster_mode to be "yarn-client",
init_orca_contextwould automatically prepare the runtime Python environment, detect the current Hadoop configurations fromHADOOP_CONF_DIRand initiate the distributed execution engine on the underlying YARN cluster. View Orca Context for more details. - 
You can then simply run your BigDL program in a Jupyter notebook:
jupyter notebook --notebook-dir=./ --ip=* --no-browseror as a normal Python script (e.g. script.py):
python script.py 
3. YARN Cluster Mode
Follow the steps below if you need to run BigDL in YARN cluster mode.
- 
Download and extract Spark. You are recommended to use Spark 2.4.6. Set the environment variable
SPARK_HOME:export SPARK_HOME=the root directory where you extract the downloaded Spark package - 
Download and extract BigDL. Make sure the BigDL package you download is built with the compatible version with your Spark. Set the environment variable
BIGDL_HOME:export BIGDL_HOME=the root directory where you extract the downloaded BigDL package - 
Pack the current conda environment to
environment.tar.gz(you can use any name you like):conda pack -o environment.tar.gz - 
You need to write your BigDL program as a Python script. In the script, you can call
init_orca_contextand specify cluster_mode to be "spark-submit":from bigdl.orca import init_orca_context sc = init_orca_context(cluster_mode="spark-submit") - 
Use
spark-submitto submit your BigDL program (e.g. script.py):PYSPARK_PYTHON=./environment/bin/python ${BIGDL_HOME}/bin/spark-submit-python-with-bigdl.sh \ --conf spark.yarn.appMasterEnv.PYSPARK_PYTHON=./environment/bin/python \ --master yarn-cluster \ --executor-memory 10g \ --driver-memory 10g \ --executor-cores 8 \ --num-executors 2 \ --archives environment.tar.gz#environment \ script.pyYou can adjust the configurations according to your cluster settings.