Changes between Version 23 and Version 24 of waue


Ignore:
Timestamp:
May 29, 2008, 5:57:40 PM (16 years ago)
Author:
waue
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • waue

    v23 v24  
    88 * [new ] nutch 應用範例 -> 索引硬碟資料
    99 == 工作里程 ==
     10 === 5/29 ===
     11 * 已建立 tw.org.nchc. 的 package 檔以供 java import 之用
     12 * 研究hadoop 1.16.4 的程式碼,(hadoop  1.17.0 已公佈, 有些api有改變)
     13 * 實做HBase 範例 :方法如下
     14   1.  [http://ftp.twaren.net/Unix/Web/apache/hadoop/hbase/hbase-0.1.2/ 下載原始碼]  解開
     15   2.  設定 conf/hbase-site.xml
     16{{{
     17<configuration>
     18
     19  <property>
     20    <name>hbase.master</name>
     21    <value>example.org:60000</value>
     22    <description>The host and port that the HBase master runs at.
     23    </description>
     24  </property>
     25
     26  <property>
     27    <name>hbase.rootdir</name>
     28    <value>hdfs://example.org:9000/hbase</value>
     29    <description>The directory shared by region servers.
     30    </description>
     31  </property>
     32
     33</configuration>
     34}}}
     35   3.  設定 hbase-env.sh
     36{{{
     37JAVA_HOME=/usr/lib/jvm/java-6-sun
     38...
     39CLASSPATH=/home/waue/workspace/hadoop/conf
     40}}}
     41   4. set regionserver , slaves  about host
     42   5. bin/start-hbase.sh  (執行此程式前,需確認HDFS有開啟)
     43 * 雖然 hbase 有在運作,但sample code仍報錯
    1044 === 5/28 ===
    1145 * 研究map-reduce 程式碼