码迷,mamicode.com
首页 > 其他好文 > 详细

Manage Files on HDFS via Cli/Ambari Files View——如何在ambari上查看HDFS文件

时间:2020-07-27 13:45:42      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:cas   查看   ali   block   roc   read   gate   with   details   

原文:https://www.cloudera.com/tutorials/manage-files-on-hdfs-via-cli-ambari-files-view/2.html

 

Introduction

In the previous tutorial, we learned to manage files on the Hadoop Distributed File System (HDFS) with the command line. Now we will use Ambari Files View to perform many of the file management operations on HDFS that we learned with CLI, but through the web-based interface.

Prerequisites

Outline

Download the Drivers Related Datasets

We will download geolocation.csv and trucks.csv data onto our local filesystems of the sandbox. The commands are tailored for mac and linux users.

Then, we will download geolocation.csv and trucks.csv data onto our local filesystems of the sandbox. The commands are tailored for mac and linux users.

1. Open a terminal on your local machine, SSH into the sandbox:

ssh root@sandbox-hdp.hortonworks.com -p 2222

Note: If you‘re on VMware or Docker, ensure that you map the sandbox IP to the correct hostname in the hosts file. Map your Sandbox IP

2. Open another terminal, change your current directory to Downloads then copy and paste the commands to download the geolocation.csv and trucks.csv files. We will use them while we learn file management operations.

#Change your current directory to Downloads
cd Downloads

#Download geolocation.csv
wget https://github.com/hortonworks/data-tutorials/raw/master/tutorials/hdp/manage-files-on-hdfs-via-cli-ambari-files-view/assets/drivers-datasets/geolocation.csv

#Download trucks.csv
wget https://github.com/hortonworks/data-tutorials/raw/master/tutorials/hdp/manage-files-on-hdfs-via-cli-ambari-files-view/assets/drivers-datasets/trucks.csv

#Create directory for drivers-datasets
mkdir drivers-datasets

#Move the geolocation and trucks csv files to the directory
mv geolocation.csv trucks.csv drivers-datasets/

Create a Directory in HDFS, Upload a file and List Contents

Create Directory Tree in User

1. Login to Ambari Interface at sandbox-hdp.hortonworks.com:8080. Use the following login credentials in Table 1.

Table 1: Ambari Login credentials

UsernamePassword
admin **setup process

Setup Ambari Admin Password Manually

2. Now that we have admin privileges, we can manage files on HDFS using Files View. Hover over the Ambari Selector Icon 技术图片, enter the Files View web-interface.

技术图片

The Files View Interface will appear with the following default folders.

技术图片

3. We will create 3 folders using the Files View web-interface. All three folders: hadoop, geolocations and trucks the last two which will reside in the hadoop folder, which resides in user.

Navigate into the user folder. Click the new folder button 技术图片, an add new folder window appears and name the folder hadoop. Press enter or +Add

技术图片

4. Navigate into the hadoop folder. Create the two folders: geolocation and trucks following the process stated in the previous instruction.

技术图片

Upload Local Machine Files to HDFS

We will upload two files from our local machine: geolocation.csv and trucks.csv to appropriate HDFS directories.

1. Navigate through the path /user/hadoop/geolocation or if you‘re already in hadoop, enter the geolocation folder. Click the upload button 技术图片 to transfer geolocation.csv into HDFS.

An Upload file window appears:

技术图片

2. Click on the cloud with an arrow. A window with files from your local machine appears, find geolocation.csv in the Downloads/drivers_datasets folder, select it and then press open button.

技术图片

3. In Files View, navigate to the hadoop folder and enter the trucks folder. Repeat the upload file process to upload trucks.csv.

技术图片

View and Examine Directory Contents

Each time we open a directory, the Files View automatically lists the contents. Earlier we started in the user directory.

1. Let‘s navigate back to the user directory to examine the details given by the contents. Reference the image below while you read the Directory Contents Overview.

Directory Contents Overview of Columns

  • Name are the files/folders
  • Size contains bytes for the Contents
  • Last Modified includes the date/time the content was created or Modified
  • Owner is who owns that contents
  • Group is who can make changes to the files/folders
  • Permissions establishes who can read, write and execute data

技术图片

Find Out Space Utilization in a HDFS Directory

In the command line when the directories and files are listed with the hadoop fs -du /user/hadoop/, the size of the directory and file is shown. In Files View, we must navigate to the file to see the size, we are not able to see the size of the directory even if it contains files.

Let‘s view the size of geolocation.csv file. Navigate through /user/hadoop/geolocation. How much space has the file utilized? Files View shows 514.3 KB for geolocation.csv.

技术图片

Download File From HDFS to Local Machine

Files View enables users to download files and folders to their local machine with ease.

Let‘s download the geolocation.csv file to our computer. Click on the file‘s row, the row‘s color becomes blue, a group of file operations will appear, select the Download button. The default directory the file downloads to is our Download folder on our local machine.

技术图片

Explore Two Advanced Features

Concatenate Files

File Concatenation merges two files together. If we concatenate trucks.csv with geolocation.csv, the data from geolocation.csv will be appended to the end of trucks.csv. A typical use case for a user to use this feature is when they have similar large datasets that they want to merge together. The manual process to combine large datasets is inconvenient, so file concatenation was created to do the operation instantly.

1. Before we merge the csv files, we must place them in the same folder. Click on geolocation.csv row, it will highlight in blue, then press copy and in the copy window appears, select the trucks folder and press Copy to copy the csv file to it.

技术图片

2. We will merge two large files together by selecting them both and performing concatenate operation. Navigate to the trucks folder. Select geolocation.csv, hold shift and click on trucks.csv. Click the concatenate button. The files will be downloaded into the Download folder on your local machine.

技术图片

3. By default, Files View saves the merged files as a txt file, we can open the file and save it as a csv file. Then open the csv file and you will notice that all the content from geolocation is appended to the trucks file.

Copy Files or Directories recursively

Copy file or directories recursively means all the directory‘s files and subdirectories to the bottom of the directory tree are copied. For instance, we will copy the hadoop directory and all of its contents to a new location within our hadoop cluster. In production, the copy operation is used to copy large datasets within the hadoop cluster or between 2 or more clusters.

1. Navigate to the user directory. Click on the row of the hadoop directory. Select the Copy button 技术图片.

2. The Copy to window will appear. Select the tmp folder, the row will turn blue. If you select the folder icon, the contents of tmp become visible. Make sure the row is highlighted blue to do the copy. Click the blue Copy button to copy the hadoop folder recursively to this new location.

技术图片

3. A new copy of the hadoop folder and all of its contents can be found in the tmp folder. Navigate to tmp for verification. Check that all of the hadoop folder‘s contents copied successfully.

技术图片

Summary

Congratulations! We just learned to use the Files View to manage our geolocation.csv and trucks.csv dataset files in HDFS. We learned to create, upload and list 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.

Further Reading

Manage Files on HDFS via Cli/Ambari Files View——如何在ambari上查看HDFS文件

标签:cas   查看   ali   block   roc   read   gate   with   details   

原文地址:https://www.cnblogs.com/panpanwelcome/p/13384298.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!