/usr/bigboss/data1、/usr/bigboss/data2 など、複数のローカル フォルダーにデータがあります。これらすべてのフォルダーを MapReduce コマンドの入力ソースとして使用し、結果を HDFS に保存したいと考えています。Hadoop Grep の例を使用してそれを行うための有効なコマンドが見つかりません。
user1355361
質問する
172 次
1 に答える
1
The data will need to reside in HDFS for you to process it with the grep example. You can upload the folders to HDFS using the -put FsShell command:
hadoop fs -mkdir bigboss
hadoop fs -put /usr/bigboss/data* bigboss
Which will create a folder in the current user HDFS directory, and upload each of the data directories to it
Now you should be able to run the grep example over the data
于 2012-05-16T10:25:56.630 に答える