Changes between Version 1 and Version 2 of Hadoop_Lab3
- Timestamp:
- Sep 13, 2009, 2:46:22 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hadoop_Lab3
v1 v2 11 11 12 12 {{{ 13 /opt/hadoop$ bin/hadoop jar hadoop-*-examples.jar grep input grep_output 'dfs[a-z.]+' 13 $ cd /opt/hadoop 14 $ bin/hadoop fs -put conf lab3_input 15 $ bin/hadoop fs -ls lab3_input 16 $ bin/hadoop jar hadoop-*-examples.jar grep lab3_input lab3_out1 'dfs[a-z.]+' 14 17 15 18 }}} … … 52 55 53 56 {{{ 54 /opt/hadoop$ bin/hadoop fs -ls grep_output55 /opt/hadoop$ bin/hadoop fs -cat grep_output/part-0000057 /opt/hadoop$ bin/hadoop fs -ls lab3_out1 58 /opt/hadoop$ bin/hadoop fs -cat lab3_out1/part-00000 56 59 }}} 57 60 … … 116 119 117 120 {{{ 118 /opt/hadoop$ bin/hadoop jar hadoop-*-examples.jar wordcount input wc_output121 /opt/hadoop$ bin/hadoop jar hadoop-*-examples.jar wordcount lab3_input lab3_out2 119 122 }}} 120 123