close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_fs.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
- Timestamp:
-
Oct 31, 2011, 1:34:28 AM (14 years ago)
- Author:
-
jazz
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v1
|
v2
|
|
| | 1 | = 2011-10-31 = |
| | 2 | |
| | 3 | == Hadoop == |
| | 4 | |
| | 5 | * Hadoop 與 MySQL 的關係: |
| | 6 | |
| 1 | 7 | {{{ |
| 2 | 8 | #!graphviz |
| … |
… |
|
| 20 | 26 | } |
| 21 | 27 | }}} |
| | 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 | }}} |