Version 14 (modified by waue, 13 years ago) (diff) |
---|
一、環境
(windows)
- 安裝 java 6, apache web server 2 (假設安裝於 c:\Program Files\Apache2.2\)
- 安裝 hadoop4win 於 c:\hadoop4win\
- 下載教材壓縮檔 , 解壓縮內容,放到 c:\hadoop4win\tmp\
- 將 c:\hadoop4win\tmp\www-web\ 做捷徑到 c:\Program Files\Apache2.2\htdocs\www-web 並將捷徑 www-web 改名為 ProductEmp
(linux)
- 安裝 apache , sun java 6
- 下載 hadoop 並解壓縮 成 /opt/hadoop-0.20.2
- 下載教材壓縮檔, 解壓縮內容,放到 /tmp/
-
ln -sf /tmp/ProductEmp/www-web/ /var/www/ProductEmp
1.1 檢查
- ps : (windows 以下路徑名稱皆省略了 c:\hadoop4win\ )
- 初始資料夾
/tmp/ProductEmp/conf/store.txt 商品資訊檔 /tmp/ProductEmp/input/ 銷售紀錄資料夾 /tmp/ProductEmp/www-web/ 網站 /tmp/ProductEmp/ProductEmp.jar 程式包
1.2 觀察 初始內容
- /tmp/ProductEmp/conf/store.txt
01 ; 微波爐 ; 3000 02 ; 烤箱 ; 800 03 ; 電暖氣 ; 1000 04 ; 收音機 ; 300 05 ; 冷氣機 ; 30000
- /tmp/ProductEmp/input/0102.txt
jazz: 01 jazz: 02 jazz: 02 jazz: 03 jazz: 05 jazz: 01 lia: 02 lia: 03 waue: 02 shun: 02 len: 02
二. 運算
(linux)
cd /tmp/ProductEmp/ /opt/hadoop-0.20.2/bin/hadoop jar ProductEmp.jar
(windows)
2.1 中間產物
/tmp/ProductEmp/hdfs/ hadoop 輸入資料夾 /tmp/ProductEmp/out/ hadoop 輸出資料夾 /tmp/ProductEmp/result/ 暫時結果檔 /tmp/ProductEmp/www-web/db.js 銷售額db檔
三. 結果
- /tmp/ProductEmp/www-web/db.js 內容約為
var aDataSet = [ ['01','微波爐','3000','2','6000'], ['02','烤箱','800','6','4800'], ['03','電暖氣','1000','3','3000'], ['04','收音機','300','0','0'], ['05','冷氣機','30000','1','30000'] ];
- 請見 http://localhost/ProductEmp/
Attachments (3)
- 2012-01-16-222121_977x388_scrot.png (36.6 KB) - added by waue 13 years ago.
- ProductEmp-linux.zip (3.2 MB) - added by waue 13 years ago.
- ProductEmp-windows.zip (3.2 MB) - added by waue 13 years ago.