| 28 | * Hadoop 與 HBase 的關係: |
| 29 | |
| 30 | {{{ |
| 31 | #!graphviz |
| 32 | digraph 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 | }}} |