Thursday, October 27, 2016

HDFS Hands-on Lab

Download the Hortonworks Sandbox and install on your laptop.

1. Open a terminal on your local machine, SSH into the sandbox:
ssh root@127.0.0.1 -p 2222
Note: If your on VMware or Azure, insert your appropriate ip address in place of 127.0.0.1. Azure users will need to replace port 2222 with 22.
2. Copy and paste the commands to download the sf-salaries-2011-2013.csv and sf-salaries-2014.csv files. We will use them while we learn file management operations.
# download sf-salaries-2011-2013
wget https://raw.githubusercontent.com/hortonworks/tutorials/hdp/assets/using-the-command-line-to-manage-hdfs/sf-salary-datasets/sf-salaries-2011-2013.csv
# download sf-salaries-2014
wget https://raw.githubusercontent.com/hortonworks/tutorials/hdp/assets/using-the-command-line-to-manage-hdfs/sf-salary-datasets/sf-salaries-2014.csv
sf_salary_datasets

OUTLINE

STEP 1: CREATE A DIRECTORY IN HDFS, UPLOAD A FILE AND LIST CONTENTS 

Let’s learn by writing the syntax. You will be able to copy and paste the following example commands into your terminal. Let’s login under hdfs user, so we can give root user permission to perform file operations:
su hdfs
cd
We will use the following command to run filesystem commands on the file system of hadoop:
hdfs dfs [command_operation]
Refer to the File System Shell Guide to view various command_operations.

HDFS DFS -CHMOD:

  • Affects the permissions of the folder or file. Controls who has read/write/execute privileges
  • We will give root access to read and write to the user directory. Later we will perform an operation in which we send a file from our local filesystem to hdfs.
hdfs dfs -chmod 777 /user
  • Warning in production environments, setting the folder with the permissions above is not a good idea because anyone can read/write/execute files or folders.
Type the following command, so we can switch back to the root user. We can perform the remaining file operations under the user folder since the permissions were changed.
exit

HDFS DFS -MKDIR:

  • Takes the path uri’s as an argument and creates a directory or multiple directories.
# Usage:
        # hdfs dfs -mkdir <paths>
# Example:
        hdfs dfs -mkdir /user/hadoop
        hdfs dfs -mkdir /user/hadoop/sf-salaries-2011-2013 /user/hadoop/sf-salaries /user/hadoop/sf-salaries-2014

HDFS DFS -PUT:

  • Copies single src file or multiple src files from local file system to the Hadoop Distributed File System.
# Usage:
        # hdfs dfs -put <local-src> ... <HDFS_dest_path>
# Example:
        hdfs dfs -put sf-salaries-2011-2013.csv /user/hadoop/sf-salaries-2011-2013/sf-salaries-2011-2013.csv
        hdfs dfs -put sf-salaries-2014.csv /user/hadoop/sf-salaries-2014/sf-salaries-2014.csv

HDFS DFS -LS:

  • Lists the contents of a directory
  • For a file, returns stats of a file
# Usage:  
        # hdfs dfs  -ls  <args>  
# Example:
        hdfs dfs -ls /user/hadoop
        hdfs dfs -ls /user/hadoop/sf-salaries-2011-2013
        hdfs dfs -ls /user/hadoop/sf-salaries-2011-2013/sf-salaries-2011-2013.csv
list_folder_contents

STEP 2: FIND OUT SPACE UTILIZATION IN A HDFS DIRECTORY 

HDFS DFS -DU:

  • Displays size of files and directories contained in the given directory or the size of a file if its just a file.
# Usage:  
        # hdfs dfs -du URI
# Example:
        hdfs dfs -du  /user/hadoop/ /user/hadoop/sf-salaries-2011-2013/sf-salaries-2011-2013.csv
displays_entity_size

STEP 3: DOWNLOAD FILE FROM HDFS TO LOCAL FILE SYSTEM 

HDFS DFS -GET:

  • Copies/Downloads files from HDFS to the local file system
# Usage:
        # hdfs dfs -get <hdfs_src> <localdst>
# Example:
        hdfs dfs -get /user/hadoop/sf-salaries-2011-2013/sf-salaries-2011-2013.csv /home/

STEP 4: EXPLORE TWO ADVANCED FEATURES 

HDFS DFS -GETMERGE

  • Takes a source directory file or files as input and concatenates files in src into the local destination file.
  • Concatenates files in the same directory or from multiple directories as long as we specify their location and outputs them to the local file system, as can be seen in the Usage below.
  • Let’s concatenate the san francisco salaries from two separate directory and output them to our local filesystem. Our result will be the salaries from 2014 are appended below the last row of 2011-2013.
# Usage:
        # hdfs dfs -getmerge <src> <localdst> [addnl]
        # hdfs dfs -getmerge <src1> <src2> <localdst> [addnl]
# Option:
        # addnl: can be set to enable adding a newline on end of each file
# Example:
        hdfs dfs -getmerge /user/hadoop/sf-salaries-2011-2013/ /user/hadoop/sf-salaries-2014/ /root/output.csv
Merges the files in sf-salaries-2011-2013 and sf-salaries-2014 to output.csv in the root directory of the local filesystem. The first file contained about 120,000 rows and the second file contained almost 30,000 rows. This file operation is important because it will save you time from having to manually concatenate them.

HDFS DFS -CP:

  • Copy file or directories recursively, all the directory’s files and subdirectories to the bottom of the directory tree are copied.
  • It is a tool used for large inter/intra-cluster copying
# Usage:
        # hdfs dfs -cp <src-url> <dest-url>
# Example:
        hdfs dfs -cp /user/hadoop/sf-salaries-2011-2013/ /user/hadoop/sf-salaries-2014/ /user/hadoop/sf-salaries
-cp: copies sf-salaries-2011-2013, sf-salaries-2014 and all their contents to sf-salaries
Verify the files or directories successfully copied to the destination folder:
hdfs dfs -ls /user/hadoop/sf-salaries/
hdfs dfs -ls /user/hadoop/sf-salaries/sf-salaries-2011-2013
hdfs dfs -ls /user/hadoop/sf-salaries/sf-salaries-2014
visual_result_of_distcp
Visual result of distcp file operation. Notice that both src1 and src2 directories and their contents were copied to the dest directory.

STEP 5: USE HELP COMMAND TO ACCESS HADOOP COMMAND MANUAL 

Help command opens the list of commands supported by Hadoop Data File System (HDFS)
# Example:  
        hdfs dfs  -help
hadoop_help_command_manual
Hope this short tutorial was useful to get the basics of file management.

SUMMARY 

Congratulations! We just learned to use commands to manage our sf-salaries-2011-2013.csv and sf-salaries-2014.csv dataset files in HDFS. We learned to create, upload and list the the contents in our directories. We also acquired the skills to download files from HDFS to our local file system and explored a few advanced features of HDFS file management using the command line.

No comments:

Post a Comment