| 1 | {{{ |
| 2 | #!graphviz |
| 3 | digraph 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 | }}} |