Move the new client libraries into HDFS
Several client libraries--such as MapReduce, Tez, Pig, Hive, and Sqoop libraries--are used by multiple components, shared via HDFS. Upload the new client libraries into HDFS. These libraries are versioned; they will not be used until they’re enabled via the new clients for their respective components.
Note: you do not need to move the Oozie sharelib
tarball into HDFS.
To move client tarballs into HDFS, run the following commands from any one of the
cluster client nodes. Note that $HDFS_USER is defined as the HDFS superuser, such as
hdfs
.
su $HDFS_USER # Load Tez client libraries into HDFS hdfs dfs -mkdir -p /hdp/apps/2.2.9.0-$BUILD/tez/ hdfs dfs -put /usr/hdp/2.2.9.0-$BUILD/tez/lib/tez.tar.gz /hdp/apps/2.2.9.0-$BUILD/tez/ hdfs dfs -chown -R hdfs:hadoop /hdp hdfs dfs -chmod -R 555 /hdp/apps/2.2.9.0-$BUILD/tez hdfs dfs -chmod -R 444 /hdp/apps/2.2.9.0-$BUILD/tez/tez.tar.gz # Load MapReduce client libraries into HDFS hdfs dfs -mkdir -p /hdp/apps/2.2.9.0-$BUILD/mapreduce/ hdfs dfs -put /usr/hdp/2.2.9.0-$BUILD/hadoop/mapreduce.tar.gz /hdp/apps/2.2.9.0-$BUILD/mapreduce/ hdfs dfs -put /usr/hdp/2.2.9.0-$BUILD/hadoop-mapreduce/hadoop-streaming.jar /hdp/apps/2.2.9.0-$BUILD/mapreduce/ hdfs dfs -chown -R hdfs:hadoop /hdp hdfs dfs -chmod -R 555 /hdp/apps/2.2.9.0-$BUILD/mapreduce hdfs dfs -chmod -R 444 /hdp/apps/2.2.9.0-$BUILD/mapreduce/mapreduce.tar.gz # Load Hive client libraries into HDFS hdfs dfs -mkdir -p /hdp/apps/2.2.9.0-$BUILD/hive/ hdfs dfs -put /usr/hdp/2.2.9.0-$BUILD/hive/hive.tar.gz /hdp/apps/2.2.9.0-$BUILD/hive/hive.tar.gz hdfs dfs -chown -R hdfs:hadoop /hdp hdfs dfs -chmod -R 555 /hdp/apps/2.2.9.0-$BUILD/hive hdfs dfs -chmod -R 444 /hdp/apps/2.2.9.0-$BUILD/hive/hive.tar.gz # Load Pig client libraries into HDFS hdfs dfs -mkdir -p /hdp/apps/2.2.9.0-$BUILD/pig/ hdfs dfs -put /usr/hdp/2.2.9.0-$BUILD/pig/pig.tar.gz /hdp/apps/2.2.9.0-$BUILD/pig/ hdfs dfs -chown -R hdfs:hadoop /hdp hdfs dfs -chmod -R 555 /hdp/apps/2.2.9.0-$BUILD/pig hdfs dfs -chmod -R 444 /hdp/apps/2.2.9.0-$BUILD/pig/pig.tar.gz # Load Sqoop client libraries into HDFS hdfs dfs -mkdir -p /hdp/apps/2.2.9.0-$BUILD/sqoop/ hdfs dfs -put /usr/hdp/2.2.9.0-$BUILD/sqoop/sqoop.tar.gz /hdp/apps/2.2.9.0-$BUILD/sqoop/ hdfs dfs -chown -R hdfs:hadoop /hdp hdfs dfs -chmod -R 555 /hdp/apps/2.2.9.0-$BUILD/sqoop hdfs dfs -chmod -R 444 /hdp/apps/2.2.9.0-$BUILD/sqoop/sqoop.tar.gz # Log out exit
Check that the files were copied:
su $HDFS_USER hdfs dfs -ls /hdp/apps/2.2.9.0-$BUILD exit
This should return results similar to the following:
Found 5 items
dr-xr-xr-x - hdfs hadoop 0 2015-03-03 17:05 /hdp/apps/2.2.9.0-$BUILD/hive dr-xr-xr-x - hdfs hadoop 0 2015-03-03 17:04 /hdp/apps/2.2.9.0-$BUILD/mapreduce dr-xr-xr-x - hdfs hadoop 0 2015-03-03 17:05 /hdp/apps/2.2.9.0-$BUILD/pig dr-xr-xr-x - hdfs hadoop 0 2015-03-03 17:13 /hdp/apps/2.2.9.0-$BUILD/sqoop dr-xr-xr-x - hdfs hadoop 0 2015-03-03 17:02 /hdp/apps/2.2.9.0-$BUILD/tez