<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/momo013prvt/">
    <title>momo013備忘録</title>
    <link>http://w.atwiki.jp/momo013prvt/</link>
    <atom:link href="https://w.atwiki.jp/momo013prvt/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>momo013備忘録</description>

    <dc:language>ja</dc:language>
    <dc:date>2010-07-01T18:12:46+09:00</dc:date>
    <utime>1277975566</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/24.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/23.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/22.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/21.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/20.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/19.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/momo013prvt/pages/15.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/24.html">
    <title>DB2コマンド</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/24.html</link>
    <description>
      *DBの削除

-（カタログされていなければ）カタログしておく
|CATALOG DB DATABASENAME ON &#039;C:\&#039;|

-削除
|DROP DB DATABASENAME|
































&amp;counter(total)    </description>
    <dc:date>2010-07-01T18:12:46+09:00</dc:date>
    <utime>1277975566</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/23.html">
    <title>Excelメモ</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/23.html</link>
    <description>
      *関数
-ROW()
行番号
-COLUMN()
列番号








































&amp;counter(total)    </description>
    <dc:date>2010-06-27T19:49:20+09:00</dc:date>
    <utime>1277635760</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/22.html">
    <title>その他メモ</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/22.html</link>
    <description>
      -[[Excelメモ]]








































&amp;counter(total)    </description>
    <dc:date>2010-06-27T19:47:58+09:00</dc:date>
    <utime>1277635678</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/21.html">
    <title>&quot;Hadoop&quot;/Tom White,O&#039;REILLY JAPAN</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/21.html</link>
    <description>
      最近のApache [[Hadoop]]プロジェクト
|Pig_|Chukwa_|Hive_|HBase_|
|MapReduce|HDFS|ZooKeeper|
|___Core_____|____Avro_____|




































&amp;counter(total)    </description>
    <dc:date>2010-06-15T17:09:40+09:00</dc:date>
    <utime>1276589380</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/20.html">
    <title>座談会＠あしたの研メモ</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/20.html</link>
    <description>
      &amp;blanklink(ここ){http://oss.infoscience.co.jp/hadoop/roundtable/index.html}の内容を引いてきて，気になった部分とか説明に使えそうな部分をメモしています
ベタコピー多し

-Hadoopを一言で
→MapReduceという並列処理用の計算フレームワークと分散ファイルシステムのオープンソース版の実装　作者はダグ・カティング（Doug Cutting）

-MapReduceのクラス
--tokenizer　それを使って単語を切り取ってアウトプットというところに投げ入れる。
--iterator　Reduceに降ってくるキーと値のペア
--Partioner(Mapの処理結果をどうReduceに割り当てるかを制御するクラス)
--OutputCollector（Reduceタスクの処理結果を回収するクラス）
--main
--JobConf　どうやってデータを渡すか指定．．．txtを読み込んで一行ずつ渡す、等

-Hadoopのサブプロジェクト
--Hive　Hadoop向けのSQLっぽい言語
--Chukwa　ログ収集システム
--ZooKeeper　設定情報の管理→設定情報を各ノードに反映させる
--HBase　HDFSのデータ構造はとてもシンプル→テーブルなどの形で見たい場合に
--Avro　データのアプリ固有のフォーマットを定義してやると、そのデータスキーマごとファイルシステムに保存してくれる　キーバリューのデータをファイルに書き出し　ダイナミック
→MapReduceのプログラムはやっぱり難しいということで、もっと身近な形でデータを扱えるようにしようというのがこの辺のプロジェクト

-FS回りの話
バーチャルマシン・リソースの増減…[[Hadoop]]オンデマンド：ノードを増やしたいです、1000台ぐらいノードを増やして計算してくださいっていうコマンドを入れてやると増やせる

-クラウド一般の話
Hadoop内、クラウドの環境に乗せておくと何がうれしいかというと、スケーラビリティが取りやすい。今まで100人ぐらいの規模の会社のシステムだったのが10,000人になりましたとかっていうときに。

-その他
--MapReduce：基本的には    </description>
    <dc:date>2010-06-07T18:39:07+09:00</dc:date>
    <utime>1275903547</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/19.html">
    <title>調べたこと</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/19.html</link>
    <description>
      -[[座談会＠あしたの研メモ&gt;座談会＠あしたの研メモ]]
-[[&quot;Hadoop&quot;/Tom White,O&#039;REILLY JAPAN]]






























.    </description>
    <dc:date>2010-06-15T16:53:54+09:00</dc:date>
    <utime>1276588434</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/18.html">
    <title>環境構築</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/18.html</link>
    <description>
      実験環境の変遷は以下のような流れ
***テスト実装
***クラスタ環境構築
***Hadoop＠ローカルクラスタ
***Hadoop＠模擬広域環境

**スペック
[[Hadoop]]　ver.0-18-3を使用



参考サイト
-&amp;blanklink(『Hadoopのインストールとサンプルプログラムの実行』){http://codezine.jp/article/detail/2485}
以下からリリースをDL
-&amp;blanklink(releases){http://hadoop.apache.org/common/releases.html}




























.    </description>
    <dc:date>2010-06-01T17:48:57+09:00</dc:date>
    <utime>1275382137</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/17.html">
    <title>研究過程</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/17.html</link>
    <description>
      -[[環境構築&gt;環境構築]]
-[[性能測定&gt;性能測定]]
-[[動作解析&gt;動作解析]]



































.    </description>
    <dc:date>2010-05-29T14:54:57+09:00</dc:date>
    <utime>1275112497</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/16.html">
    <title>関連リンク</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/16.html</link>
    <description>
      外部リンクを無断で張りまくる無作法者(・∀・;)

-&amp;blanklink(Apache公式){http://hadoop.apache.org/}
--&amp;blanklink(HDFS Architecture){http://hadoop.apache.org/common/docs/current/hdfs_design.html}
--&amp;blanklink(Map/Reduce Tutorial){http://hadoop.apache.org/common/docs/current/mapred_tutorial.html}
--&amp;blanklink(Quick Start){http://hadoop.apache.org/common/docs/current/quickstart.html}
--&amp;blanklink(Cluster Setup){http://hadoop.apache.org/common/docs/current/cluster_setup.html}

-&amp;blanklink(あしたのオープンソース研究所さんによる公式の翻訳){http://oss.infoscience.co.jp/hadoop/}

-&amp;blanklink(CodeZine[Hadoopのインストールとサンプルプログラムの実行]){http://codezine.jp/article/detail/2485}
-&amp;blanklink(CodeZine[複数マシンへHadoopをインストールする]){http://codezine.jp/article/detail/2699}
-[[NTTレゾナントによるHadoop解析資料&gt;http://preferred.jp/hadoop.pdf]]
-[[The Google File System&gt;http://labs.google.com/papers/gfs-sosp2003.pdf]]


















&amp;counter(total)    </description>
    <dc:date>2010-06-01T17:25:13+09:00</dc:date>
    <utime>1275380713</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/momo013prvt/pages/15.html">
    <title>DB2</title>
    <link>https://w.atwiki.jp/momo013prvt/pages/15.html</link>
    <description>
      *DB2 9.7を64bitマシンにインストールしたぜ

**★インストール
1.IBMのサイトへ&amp;blanklink(GO){https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?source=swg-db2expressc&amp;lang=ja_JP&amp;S_CMP=DWJAPAN&amp;S_TACT=105AGX90}(別窓)
-IBMIDを使用しない
-2.DB2 Express-C for Windows (x64)を選択
2.色々入力し，インストーラをDL
-JAVAアプレットの動作が不安な場合はhttpを使用してDL
-↑の場合はローカルでファイルを展開
-&lt;展開したフォルダ&gt;\EXPC\image\setup.exe を実行
4.&amp;blanklink(ガイド){http://www.ibm.com/developerworks/jp/data/library/db2/j_d-db2v97wininstall/}(別窓)に沿ってDL
-インストール・タイプは標準でも可
なんちゃない(・・;

**★SAMPLEデータベースの作成
***rootで実行している場合
1.↑のインストール完了後，ファーストステップが起動
2.SAMPLEデータベースの作成
-データベースオブジェクトのタイプ&gt;XMLおよびSQLのオブジェクトとデータ

***SAMPLEを作成しようとするとSQL5005Cエラーが出る場合
1.ローカルユーザからログアウト
2.db2adminでログイン
3.コマンドラインからSAMPLE作成
(例)Cドライブの下に作成する場合
|C:\&gt;db2sample|
-完了メッセージが出れば成功

***ローカルユーザでDB2を使用できるようにする場合
-db2instanceの変更権限をユーザに付与すればおｋ
-が面倒なので放置


&amp;counter(total)    </description>
    <dc:date>2010-06-01T17:24:32+09:00</dc:date>
    <utime>1275380672</utime>
  </item>
  </rdf:RDF>
