devosJava
devosJava

Reputation: 273

Copy files(images) from file system to HDFS

I'm Working on image to extract some features, i need in the first steep to get data files(images) from the file system to HDFS.

What are the steps to flollow to do this ?

thanks

Upvotes: 0

Views: 442

Answers (1)

Tariq
Tariq

Reputation: 34184

1- google.com

2- bin/hadoop fs -copyFromLocal /source /destination

3- bin/hadoop fs -put /source /destination

4- bin/hadoop distcp /source /destination

5- Apache Flume

6- HDFS API

7- MapReduce job to copy the files.

8- Pig script to copy the files.

You actually need some research on Hadoop first.

Upvotes: 1

Related Questions