Changes between Version 1 and Version 2 of jazz/11-10-31


Ignore:
Timestamp:
Oct 31, 2011, 1:34:28 AM (13 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/11-10-31

    v1 v2  
     1= 2011-10-31 =
     2
     3== Hadoop ==
     4
     5 * Hadoop 與 MySQL 的關係:
     6
    17{{{
    28#!graphviz
     
    2026}
    2127}}}
     28 * Hadoop 與 HBase 的關係:
     29
     30{{{
     31#!graphviz
     32digraph g {
     33  rankdir=LR;
     34  subgraph cluster_2 {
     35    node [shape=box,width=1.0,style=filled,color=green];
     36    label = "HBase\n分散式資料存儲\nDistributed Datastore";
     37    color=red;
     38    subgraph cluster_3 {
     39     node [shape=box,width=1.0,style=filled];
     40     label = "HDFS";
     41     "結構化資料\nStructured\nData";
     42     node [shape=box,width=1.0,style=filled,color=red];
     43     "HDFS";
     44    }
     45    subgraph cluster_1 {
     46     node [shape=box,width=1.0,style=filled,color=red];
     47     label = "Hadoop\n資料處理框架\nData Processing Framework";
     48     "HDFS"->"MapReduce";
     49     color=blue;
     50    }
     51  }
     52  node [shape=box,width=1.0,style=filled,color=gray];
     53  "非結構化資料\nUnstructured\nData" -> "HDFS";
     54  "MapReduce" -> "結構化資料\nStructured\nData";
     55}
     56}}}