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


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

--

Legend:

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

    v1 v1  
     1{{{
     2#!graphviz
     3digraph g {
     4  rankdir=LR;
     5  subgraph cluster_1 {
     6   node [shape=box,width=1.0,style=filled,color=red];
     7   label = "Hadoop\n資料處理框架\nData Processing Framework";
     8   "HDFS"->"MapReduce";
     9   color=blue;
     10  }
     11  subgraph cluster_2 {
     12    node [shape=box,width=1.0,style=filled,color=green];
     13    label = "MySQL\n資料庫\nDatabase";
     14    "結構化資料\nStructured\nData";
     15   color=red;
     16  }
     17  node [shape=box,width=1.0,style=filled,color=gray];
     18  "非結構化資料\nUnstructured\nData" -> "HDFS";
     19  "MapReduce" -> "結構化資料\nStructured\nData";
     20}
     21}}}