SlideShare a Scribd company logo
1 of 9
Download to read offline
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 1/9
Overview
appendToFile
cat
chgrp
chmod
chown
copyFromLocal
copyToLocal
count
cp
du
dus
expunge
get
getfacl
getmerge
ls
lsr
mkdir
moveFromLocal
moveToLocal
mv
put
rm
rmr
setfacl
setrep
stat
tail
test
text
touchz
Overview
The File System (FS) shell includes various shell­like commands that directly interact with the Hadoop Distributed
File System (HDFS) as well as other file systems that Hadoop supports, such as Local FS, HFTP FS, S3 FS, and
others. The FS shell is invoked by:
bin/hadoop fs <args>
All FS shell commands take path URIs as arguments. The URI format is scheme://authority/path. For HDFS the
scheme is hdfs, and for the Local FS the scheme is file. The scheme and authority are optional. If not specified,
the default scheme specified in the configuration is used. An HDFS file or directory such as /parent/child can be
specified as hdfs://namenodehost/parent/child or simply as /parent/child (given that your configuration is set to
point to hdfs://namenodehost).
Most of the commands in FS shell behave like corresponding Unix commands. Differences are described with each
of the commands. Error information is sent to stderr and the output is sent to stdout.
appendToFile
Usage: hdfs dfs ‐appendToFile <localsrc> ... <dst>
Append single src, or multiple srcs from local file system to the destination file system. Also reads input from stdin
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 2/9
and appends to destination file system.
hdfs dfs ‐appendToFile localfile /user/hadoop/hadoopfile
hdfs dfs ‐appendToFile localfile1 localfile2 /user/hadoop/hadoopfile
hdfs dfs ‐appendToFile localfile hdfs://nn.example.com/hadoop/hadoopfile
hdfs dfs ‐appendToFile ‐ hdfs://nn.example.com/hadoop/hadoopfile Reads the input from stdin.
Exit Code:
Returns 0 on success and 1 on error.
cat
Usage: hdfs dfs ‐cat URI [URI ...]
Copies source paths to stdout.
Example:
hdfs dfs ‐cat hdfs://nn1.example.com/file1 hdfs://nn2.example.com/file2
hdfs dfs ‐cat file:///file3 /user/hadoop/file4
Exit Code:
Returns 0 on success and ­1 on error.
chgrp
Usage: hdfs dfs ‐chgrp [‐R] GROUP URI [URI ...]
Change group association of files. The user must be the owner of files, or else a super­user. Additional information
is in the Permissions Guide.
Options
The ­R option will make the change recursively through the directory structure.
chmod
Usage: hdfs dfs ‐chmod [‐R] <MODE[,MODE]... | OCTALMODE> URI [URI ...]
Change the permissions of files. With ­R, make the change recursively through the directory structure. The user
must be the owner of the file, or else a super­user. Additional information is in the Permissions Guide.
Options
The ­R option will make the change recursively through the directory structure.
chown
Usage: hdfs dfs ‐chown [‐R] [OWNER][:[GROUP]] URI [URI ]
Change the owner of files. The user must be a super­user. Additional information is in the Permissions Guide.
Options
The ­R option will make the change recursively through the directory structure.
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 3/9
copyFromLocal
Usage: hdfs dfs ‐copyFromLocal <localsrc> URI
Similar to put command, except that the source is restricted to a local file reference.
Options:
The ­f option will overwrite the destination if it already exists.
copyToLocal
Usage: hdfs dfs ‐copyToLocal [‐ignorecrc] [‐crc] URI <localdst>
Similar to get command, except that the destination is restricted to a local file reference.
count
Usage: hdfs dfs ‐count [‐q] <paths>
Count the number of directories, files and bytes under the paths that match the specified file pattern. The output
columns with ­count are: DIR_COUNT, FILE_COUNT, CONTENT_SIZE FILE_NAME
The output columns with ­count ­q are: QUOTA, REMAINING_QUATA, SPACE_QUOTA,
REMAINING_SPACE_QUOTA, DIR_COUNT, FILE_COUNT, CONTENT_SIZE, FILE_NAME
Example:
hdfs dfs ‐count hdfs://nn1.example.com/file1 hdfs://nn2.example.com/file2
hdfs dfs ‐count ‐q hdfs://nn1.example.com/file1
Exit Code:
Returns 0 on success and ­1 on error.
cp
Usage: hdfs dfs ‐cp [‐f] URI [URI ...] <dest>
Copy files from source to destination. This command allows multiple sources as well in which case the destination
must be a directory.
Options:
The ­f option will overwrite the destination if it already exists.
Example:
hdfs dfs ‐cp /user/hadoop/file1 /user/hadoop/file2
hdfs dfs ‐cp /user/hadoop/file1 /user/hadoop/file2 /user/hadoop/dir
Exit Code:
Returns 0 on success and ­1 on error.
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 4/9
du
Usage: hdfs dfs ‐du [‐s] [‐h] URI [URI ...]
Displays sizes of files and directories contained in the given directory or the length of a file in case its just a file.
Options:
The ­s option will result in an aggregate summary of file lengths being displayed, rather than the individual
files.
The ­h option will format file sizes in a "human­readable" fashion (e.g 64.0m instead of 67108864)
Example:
hdfs dfs ­du /user/hadoop/dir1 /user/hadoop/file1 hdfs://nn.example.com/user/hadoop/dir1
Exit Code: Returns 0 on success and ­1 on error.
dus
Usage: hdfs dfs ‐dus <args>
Displays a summary of file lengths. This is an alternate form of hdfs dfs ­du ­s.
expunge
Usage: hdfs dfs ‐expunge
Empty the Trash. Refer to the HDFS Architecture Guide for more information on the Trash feature.
get
Usage: hdfs dfs ‐get [‐ignorecrc] [‐crc] <src> <localdst>
Copy files to the local file system. Files that fail the CRC check may be copied with the ­ignorecrc option. Files and
CRCs may be copied using the ­crc option.
Example:
hdfs dfs ‐get /user/hadoop/file localfile
hdfs dfs ‐get hdfs://nn.example.com/user/hadoop/file localfile
Exit Code:
Returns 0 on success and ­1 on error.
getfacl
Usage: hdfs dfs ‐getfacl [‐R] <path>
Displays the Access Control Lists (ACLs) of files and directories. If a directory has a default ACL, then getfacl also
displays the default ACL.
Options:
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 5/9
­R: List the ACLs of all files and directories recursively.
path: File or directory to list.
Examples:
hdfs dfs ‐getfacl /file
hdfs dfs ‐getfacl ‐R /dir
Exit Code:
Returns 0 on success and non­zero on error.
getmerge
Usage: hdfs dfs ‐getmerge <src> <localdst> [addnl]
Takes a source directory and a destination file as input and concatenates files in src into the destination local file.
Optionally addnl can be set to enable adding a newline character at the end of each file.
ls
Usage: hdfs dfs ‐ls <args>
For a file returns stat on the file with the following format:
permissions number_of_replicas userid groupid filesize modification_date modification_time filename
For a directory it returns list of its direct children as in Unix. A directory is listed as:
permissions userid groupid modification_date modification_time dirname
Example:
hdfs dfs ‐ls /user/hadoop/file1
Exit Code:
Returns 0 on success and ­1 on error.
lsr
Usage: hdfs dfs ‐lsr <args>
Recursive version of ls. Similar to Unix ls ­R.
mkdir
Usage: hdfs dfs ‐mkdir [‐p] <paths>
Takes path uri's as argument and creates directories.
Options:
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 6/9
The ­p option behavior is much like Unix mkdir ­p, creating parent directories along the path.
Example:
hdfs dfs ‐mkdir /user/hadoop/dir1 /user/hadoop/dir2
hdfs dfs ‐mkdir hdfs://nn1.example.com/user/hadoop/dir hdfs://nn2.example.com/user/hadoop/dir
Exit Code:
Returns 0 on success and ­1 on error.
moveFromLocal
Usage: dfs ‐moveFromLocal <localsrc> <dst>
Similar to put command, except that the source localsrc is deleted after it's copied.
moveToLocal
Usage: hdfs dfs ‐moveToLocal [‐crc] <src> <dst>
Displays a "Not implemented yet" message.
mv
Usage: hdfs dfs ‐mv URI [URI ...] <dest>
Moves files from source to destination. This command allows multiple sources as well in which case the destination
needs to be a directory. Moving files across file systems is not permitted.
Example:
hdfs dfs ‐mv /user/hadoop/file1 /user/hadoop/file2
hdfs dfs ‐mv hdfs://nn.example.com/file1 hdfs://nn.example.com/file2 hdfs://nn.example.com/file3
hdfs://nn.example.com/dir1
Exit Code:
Returns 0 on success and ­1 on error.
put
Usage: hdfs dfs ‐put <localsrc> ... <dst>
Copy single src, or multiple srcs from local file system to the destination file system. Also reads input from stdin
and writes to destination file system.
hdfs dfs ‐put localfile /user/hadoop/hadoopfile
hdfs dfs ‐put localfile1 localfile2 /user/hadoop/hadoopdir
hdfs dfs ‐put localfile hdfs://nn.example.com/hadoop/hadoopfile
hdfs dfs ‐put ‐ hdfs://nn.example.com/hadoop/hadoopfile Reads the input from stdin.
Exit Code:
Returns 0 on success and ­1 on error.
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 7/9
rm
Usage: hdfs dfs ‐rm [‐skipTrash] URI [URI ...]
Delete files specified as args. Only deletes non empty directory and files. If the ­skipTrash option is specified, the
trash, if enabled, will be bypassed and the specified file(s) deleted immediately. This can be useful when it is
necessary to delete files from an over­quota directory. Refer to rmr for recursive deletes.
Example:
hdfs dfs ‐rm hdfs://nn.example.com/file /user/hadoop/emptydir
Exit Code:
Returns 0 on success and ­1 on error.
rmr
Usage: hdfs dfs ‐rmr [‐skipTrash] URI [URI ...]
Recursive version of delete. If the ­skipTrash option is specified, the trash, if enabled, will be bypassed and the
specified file(s) deleted immediately. This can be useful when it is necessary to delete files from an over­quota
directory.
Example:
hdfs dfs ‐rmr /user/hadoop/dir
hdfs dfs ‐rmr hdfs://nn.example.com/user/hadoop/dir
Exit Code:
Returns 0 on success and ­1 on error.
setfacl
Usage: hdfs dfs ‐setfacl [‐R] [‐b|‐k ‐m|‐x <acl_spec> <path>]|[‐‐set <acl_spec> <path>]
Sets Access Control Lists (ACLs) of files and directories.
Options:
­b: Remove all but the base ACL entries. The entries for user, group and others are retained for
compatibility with permission bits.
­k: Remove the default ACL.
­R: Apply operations to all files and directories recursively.
­m: Modify ACL. New entries are added to the ACL, and existing entries are retained.
­x: Remove specified ACL entries. Other ACL entries are retained.
­­set: Fully replace the ACL, discarding all existing entries. The acl_spec must include entries for user,
group, and others for compatibility with permission bits.
acl_spec: Comma separated list of ACL entries.
path: File or directory to modify.
Examples:
hdfs dfs ‐setfacl ‐m user:hadoop:rw‐ /file
hdfs dfs ‐setfacl ‐x user:hadoop /file
hdfs dfs ‐setfacl ‐b /file
hdfs dfs ‐setfacl ‐k /dir
hdfs dfs ‐setfacl ‐‐set user::rw‐,user:hadoop:rw‐,group::r‐‐,other::r‐‐ /file
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 8/9
hdfs dfs ‐setfacl ‐R ‐m user:hadoop:r‐x /dir
hdfs dfs ‐setfacl ‐m default:user:hadoop:r‐x /dir
Exit Code:
Returns 0 on success and non­zero on error.
setrep
Usage: hdfs dfs ‐setrep [‐R] [‐w] <numReplicas> <path>
Changes the replication factor of a file. If path is a directory then the command recursively changes the replication
factor of all files under the directory tree rooted at path.
Options:
The ­w flag requests that the command wait for the replication to complete. This can potentially take a very
long time.
The ­R flag is accepted for backwards compatibility. It has no effect.
Example:
hdfs dfs ‐setrep ‐w 3 /user/hadoop/dir1
Exit Code:
Returns 0 on success and ­1 on error.
stat
Usage: hdfs dfs ‐stat URI [URI ...]
Returns the stat information on the path.
Example:
hdfs dfs ‐stat path
Exit Code: Returns 0 on success and ­1 on error.
tail
Usage: hdfs dfs ‐tail [‐f] URI
Displays last kilobyte of the file to stdout.
Options:
The ­f option will output appended data as the file grows, as in Unix.
Example:
hdfs dfs ‐tail pathname
Exit Code: Returns 0 on success and ­1 on error.
test
11/10/2015 Apache Hadoop 2.4.1 ­ File System Shell Guide
https://hadoop.apache.org/docs/r2.4.1/hadoop­project­dist/hadoop­common/FileSystemShell.html 9/9
Usage: hdfs dfs ‐test ‐[ezd] URI
Options:
The ­e option will check to see if the file exists, returning 0 if true.
The ­z option will check to see if the file is zero length, returning 0 if true.
The ­d option will check to see if the path is directory, returning 0 if true.
Example:
hdfs dfs ‐test ‐e filename
text
Usage: hdfs dfs ‐text <src>
Takes a source file and outputs the file in text format. The allowed formats are zip and TextRecordInputStream.
touchz
Usage: hdfs dfs ‐touchz URI [URI ...]
Create a file of zero length.
Example:
hadoop ‐touchz pathname
Exit Code: Returns 0 on success and ­1 on error.

More Related Content

What's hot

2.3 manage shared libraries
2.3 manage shared libraries2.3 manage shared libraries
2.3 manage shared librariesAcácio Oliveira
 
Installing & Configuring OpenLDAP (Hands On Lab)
Installing & Configuring OpenLDAP (Hands On Lab)Installing & Configuring OpenLDAP (Hands On Lab)
Installing & Configuring OpenLDAP (Hands On Lab)Michael Lamont
 
101 2.3 manage shared libraries
101 2.3 manage shared libraries101 2.3 manage shared libraries
101 2.3 manage shared librariesAcácio Oliveira
 
Hadoop installation on windows
Hadoop installation on windows Hadoop installation on windows
Hadoop installation on windows habeebulla g
 
101 2.4 use debian package management
101 2.4 use debian package management101 2.4 use debian package management
101 2.4 use debian package managementAcácio Oliveira
 
Command Line Tools
Command Line ToolsCommand Line Tools
Command Line ToolsDavid Harris
 
Hadoop installation
Hadoop installationHadoop installation
Hadoop installationhabeebulla g
 
101 3.3 perform basic file management
101 3.3 perform basic file management101 3.3 perform basic file management
101 3.3 perform basic file managementAcácio Oliveira
 
101 2.1 design hard disk layout
101 2.1 design hard disk layout101 2.1 design hard disk layout
101 2.1 design hard disk layoutAcácio Oliveira
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linuxnejadmand
 
Unix reference sheet
Unix reference sheetUnix reference sheet
Unix reference sheetapajadeh
 
Hadoop HDFS Detailed Introduction
Hadoop HDFS Detailed IntroductionHadoop HDFS Detailed Introduction
Hadoop HDFS Detailed IntroductionHanborq Inc.
 
第2回 Hadoop 輪読会
第2回 Hadoop 輪読会第2回 Hadoop 輪読会
第2回 Hadoop 輪読会Toshihiro Suzuki
 
Advfs system calls & kernel interfaces
Advfs system calls & kernel interfacesAdvfs system calls & kernel interfaces
Advfs system calls & kernel interfacesJustin Goldberg
 

What's hot (20)

2.3 manage shared libraries
2.3 manage shared libraries2.3 manage shared libraries
2.3 manage shared libraries
 
Installing & Configuring OpenLDAP (Hands On Lab)
Installing & Configuring OpenLDAP (Hands On Lab)Installing & Configuring OpenLDAP (Hands On Lab)
Installing & Configuring OpenLDAP (Hands On Lab)
 
Hadoop 2.4 installing on ubuntu 14.04
Hadoop 2.4 installing on ubuntu 14.04Hadoop 2.4 installing on ubuntu 14.04
Hadoop 2.4 installing on ubuntu 14.04
 
101 2.3 manage shared libraries
101 2.3 manage shared libraries101 2.3 manage shared libraries
101 2.3 manage shared libraries
 
Hadoop installation on windows
Hadoop installation on windows Hadoop installation on windows
Hadoop installation on windows
 
Unix Basics For Testers
Unix Basics For TestersUnix Basics For Testers
Unix Basics For Testers
 
Unix commands
Unix commandsUnix commands
Unix commands
 
101 2.4 use debian package management
101 2.4 use debian package management101 2.4 use debian package management
101 2.4 use debian package management
 
Command Line Tools
Command Line ToolsCommand Line Tools
Command Line Tools
 
Hadoop installation
Hadoop installationHadoop installation
Hadoop installation
 
101 3.3 perform basic file management
101 3.3 perform basic file management101 3.3 perform basic file management
101 3.3 perform basic file management
 
Hdfs lab hands-on
Hdfs lab hands-on Hdfs lab hands-on
Hdfs lab hands-on
 
101 2.1 design hard disk layout
101 2.1 design hard disk layout101 2.1 design hard disk layout
101 2.1 design hard disk layout
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linux
 
Unix reference sheet
Unix reference sheetUnix reference sheet
Unix reference sheet
 
Hadoop HDFS Detailed Introduction
Hadoop HDFS Detailed IntroductionHadoop HDFS Detailed Introduction
Hadoop HDFS Detailed Introduction
 
第2回 Hadoop 輪読会
第2回 Hadoop 輪読会第2回 Hadoop 輪読会
第2回 Hadoop 輪読会
 
Directories description
Directories descriptionDirectories description
Directories description
 
Advfs system calls & kernel interfaces
Advfs system calls & kernel interfacesAdvfs system calls & kernel interfaces
Advfs system calls & kernel interfaces
 
Perl Programming - 03 Programming File
Perl Programming - 03 Programming FilePerl Programming - 03 Programming File
Perl Programming - 03 Programming File
 

Viewers also liked

Planificacion estrategica , estilos
Planificacion estrategica , estilosPlanificacion estrategica , estilos
Planificacion estrategica , estilosGrisel Colmenarez
 
Práctica de laboratorio no.2 m.r.u.v.
Práctica de laboratorio no.2   m.r.u.v.Práctica de laboratorio no.2   m.r.u.v.
Práctica de laboratorio no.2 m.r.u.v.-
 
Fred Bracero principales características de access
Fred Bracero  principales características de accessFred Bracero  principales características de access
Fred Bracero principales características de accessFred david
 
Unit 4. Land relief and water distribution in America
Unit 4. Land relief and water distribution in AmericaUnit 4. Land relief and water distribution in America
Unit 4. Land relief and water distribution in AmericaLUCÍA BLANCO FERNÁNDEZ
 
【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組み
【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組み【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組み
【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組みHinemos
 
Trustpilot præsentation fra Søren Sieg Jensen, Cykelpartner
Trustpilot præsentation fra Søren Sieg Jensen, CykelpartnerTrustpilot præsentation fra Søren Sieg Jensen, Cykelpartner
Trustpilot præsentation fra Søren Sieg Jensen, CykelpartnerTrustpilot
 
The Homeless
The HomelessThe Homeless
The Homelesssdoyle10
 

Viewers also liked (13)

Job Resume
Job ResumeJob Resume
Job Resume
 
Doctoral Transcript
Doctoral TranscriptDoctoral Transcript
Doctoral Transcript
 
Protagonista elena
Protagonista elenaProtagonista elena
Protagonista elena
 
Ppt psikologi
Ppt psikologiPpt psikologi
Ppt psikologi
 
Planificacion estrategica , estilos
Planificacion estrategica , estilosPlanificacion estrategica , estilos
Planificacion estrategica , estilos
 
Práctica de laboratorio no.2 m.r.u.v.
Práctica de laboratorio no.2   m.r.u.v.Práctica de laboratorio no.2   m.r.u.v.
Práctica de laboratorio no.2 m.r.u.v.
 
Fred Bracero principales características de access
Fred Bracero  principales características de accessFred Bracero  principales características de access
Fred Bracero principales características de access
 
Unit 4. Land relief and water distribution in America
Unit 4. Land relief and water distribution in AmericaUnit 4. Land relief and water distribution in America
Unit 4. Land relief and water distribution in America
 
【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組み
【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組み【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組み
【HinemosWorld2016】A2-4_ミッションクリティカルシステムの運用管理を可能とするHinemosの仕組み
 
Trustpilot præsentation fra Søren Sieg Jensen, Cykelpartner
Trustpilot præsentation fra Søren Sieg Jensen, CykelpartnerTrustpilot præsentation fra Søren Sieg Jensen, Cykelpartner
Trustpilot præsentation fra Søren Sieg Jensen, Cykelpartner
 
Linkaform Empresa de Plagas
Linkaform Empresa de PlagasLinkaform Empresa de Plagas
Linkaform Empresa de Plagas
 
Patient
PatientPatient
Patient
 
The Homeless
The HomelessThe Homeless
The Homeless
 

Similar to General apache command for hadoop

Top 10 Hadoop Shell Commands
Top 10 Hadoop Shell Commands Top 10 Hadoop Shell Commands
Top 10 Hadoop Shell Commands SimoniShah6
 
5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTX5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTXMiguel720844
 
July 2010 Triangle Hadoop Users Group - Chad Vawter Slides
July 2010 Triangle Hadoop Users Group - Chad Vawter SlidesJuly 2010 Triangle Hadoop Users Group - Chad Vawter Slides
July 2010 Triangle Hadoop Users Group - Chad Vawter Slidesryancox
 
Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...
Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...
Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...Simplilearn
 
Hadoop Architecture and HDFS
Hadoop Architecture and HDFSHadoop Architecture and HDFS
Hadoop Architecture and HDFSEdureka!
 
Configure h base hadoop and hbase client
Configure h base hadoop and hbase clientConfigure h base hadoop and hbase client
Configure h base hadoop and hbase clientShashwat Shriparv
 
Hadoop Tutorial
Hadoop TutorialHadoop Tutorial
Hadoop Tutorialawesomesos
 
Configuring and manipulating HDFS files
Configuring and manipulating HDFS filesConfiguring and manipulating HDFS files
Configuring and manipulating HDFS filesRupak Roy
 
Big data using Hadoop, Hive, Sqoop with Installation
Big data using Hadoop, Hive, Sqoop with InstallationBig data using Hadoop, Hive, Sqoop with Installation
Big data using Hadoop, Hive, Sqoop with Installationmellempudilavanya999
 
Data analysis on hadoop
Data analysis on hadoopData analysis on hadoop
Data analysis on hadoopFrank Y
 
250hadoopinterviewquestions
250hadoopinterviewquestions250hadoopinterviewquestions
250hadoopinterviewquestionsRamana Swamy
 
Hadoop Cluster Configuration and Data Loading - Module 2
Hadoop Cluster Configuration and Data Loading - Module 2Hadoop Cluster Configuration and Data Loading - Module 2
Hadoop Cluster Configuration and Data Loading - Module 2Rohit Agrawal
 
PHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary files
PHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary filesPHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary files
PHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary filesAttaporn Ninsuwan
 

Similar to General apache command for hadoop (20)

Top 10 Hadoop Shell Commands
Top 10 Hadoop Shell Commands Top 10 Hadoop Shell Commands
Top 10 Hadoop Shell Commands
 
5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTX5c_BigData_Hadoop_HDFS.PPTX
5c_BigData_Hadoop_HDFS.PPTX
 
File Context
File ContextFile Context
File Context
 
July 2010 Triangle Hadoop Users Group - Chad Vawter Slides
July 2010 Triangle Hadoop Users Group - Chad Vawter SlidesJuly 2010 Triangle Hadoop Users Group - Chad Vawter Slides
July 2010 Triangle Hadoop Users Group - Chad Vawter Slides
 
Hadoop file
Hadoop fileHadoop file
Hadoop file
 
Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...
Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...
Hadoop Interview Questions And Answers Part-1 | Big Data Interview Questions ...
 
Hadoop file
Hadoop fileHadoop file
Hadoop file
 
Hadoop Architecture and HDFS
Hadoop Architecture and HDFSHadoop Architecture and HDFS
Hadoop Architecture and HDFS
 
Hdfs java api
Hdfs java apiHdfs java api
Hdfs java api
 
Configure h base hadoop and hbase client
Configure h base hadoop and hbase clientConfigure h base hadoop and hbase client
Configure h base hadoop and hbase client
 
Introduction to HDFS
Introduction to HDFSIntroduction to HDFS
Introduction to HDFS
 
Hadoop Tutorial
Hadoop TutorialHadoop Tutorial
Hadoop Tutorial
 
Configuring and manipulating HDFS files
Configuring and manipulating HDFS filesConfiguring and manipulating HDFS files
Configuring and manipulating HDFS files
 
Big data using Hadoop, Hive, Sqoop with Installation
Big data using Hadoop, Hive, Sqoop with InstallationBig data using Hadoop, Hive, Sqoop with Installation
Big data using Hadoop, Hive, Sqoop with Installation
 
Data analysis on hadoop
Data analysis on hadoopData analysis on hadoop
Data analysis on hadoop
 
250hadoopinterviewquestions
250hadoopinterviewquestions250hadoopinterviewquestions
250hadoopinterviewquestions
 
MapReduce1.pptx
MapReduce1.pptxMapReduce1.pptx
MapReduce1.pptx
 
Hadoop Cluster Configuration and Data Loading - Module 2
Hadoop Cluster Configuration and Data Loading - Module 2Hadoop Cluster Configuration and Data Loading - Module 2
Hadoop Cluster Configuration and Data Loading - Module 2
 
Php ppt
Php pptPhp ppt
Php ppt
 
PHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary files
PHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary filesPHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary files
PHP LFI to Arbitrary Code Execution via rfc1867 file upload temporary files
 

Recently uploaded

Internet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxInternet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxVelmuruganTECE
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating SystemRashmi Bhat
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating SystemRashmi Bhat
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONjhunlian
 
Earthing details of Electrical Substation
Earthing details of Electrical SubstationEarthing details of Electrical Substation
Earthing details of Electrical Substationstephanwindworld
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - GuideGOPINATHS437943
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxsiddharthjain2303
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...121011101441
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 

Recently uploaded (20)

Internet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxInternet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptx
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating System
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating System
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Earthing details of Electrical Substation
Earthing details of Electrical SubstationEarthing details of Electrical Substation
Earthing details of Electrical Substation
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - Guide
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptx
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 

General apache command for hadoop