Changes between Version 13 and Version 14 of Streaming
- Timestamp:
- Sep 13, 2009, 8:12:45 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Streaming
v13 v14 25 25 || -reducer $REDUCER || 設定reducer程式 || 26 26 27 = 用 shell實做mapReduce=27 = Stream Example 1 : 用 Shell = 28 28 29 29 此範例以 cat 當mapper , wc 作 reducer … … 45 45 || 1528 || 4612 || 48644 || 46 46 47 = 用php實做mapReduce = 48 * [http://www.hadoop.tw/2008/09/php-hadoop.html 用 "單機" 跟 "PHP" 開發 Hadoop 程式] from Hadoop Taiwan User Group 47 = Stream Example 2 : 用 PHP = 48 [http://www.hadoop.tw/2008/09/php-hadoop.html 參考自 Hadoop Taiwan User Group ] 49 50 * 安裝php的執行方法 49 51 {{{ 50 52 $ cd /opt/hadoop/ … … 52 54 }}} 53 55 56 * 編輯 mapper 的 php 程式 54 57 {{{ 55 58 $ gedit mapper.php 56 59 }}} 60 61 內容為 : 57 62 58 63 {{{ … … 83 88 }}} 84 89 90 * 編輯 reduce 的php程式 85 91 {{{ 86 92 $ gedit reducer.php 87 93 }}} 94 95 內容為: 88 96 89 97 {{{ … … 117 125 }}} 118 126 127 * 開始執行 128 119 129 {{{ 120 130 $ chmod 755 *.php … … 124 134 125 135 * 檢查結果 126 127 136 {{{ 128 137 $ haddop dfs -cat stream_out2/part-00000 | more