亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Mongodb Redis HBase

系統 2643 0
from :

so classic to be noted here.

In this light, here is a comparison of Cassandra, Mongodb, CouchDB, Redis, Riak, Membase, Neo4j and HBase:
CouchDB (V1.1.1)

??? Written in: Erlang
??? Main point: DB consistency, ease of use
??? License: Apache
??? Protocol: HTTP/REST
??? Bi-directional (!) replication,
??? continuous or ad-hoc,
??? with conflict detection,
??? thus, master-master replication. (!)
??? MVCC - write operations do not block reads
??? Previous versions of documents are available
??? Crash-only (reliable) design
??? Needs compacting from time to time
??? Views: embedded map/reduce
??? Formatting views: lists & shows
??? Server-side document validation possible
??? Authentication possible
??? Real-time updates via _changes (!)
??? Attachment handling
??? thus, CouchApps (standalone js apps)
??? jQuery library included

Best used: For accumulating, occasionally changing data, on which pre-defined queries are to be run. Places where versioning is important.

For example: CRM, CMS systems. Master-master replication is an especially interesting feature, allowing easy multi-site deployments.
Redis (V2.4)

??? Written in: C/C++
??? Main point: Blazing fast
??? License: BSD
??? Protocol: Telnet-like
??? Disk-backed in-memory database,
??? Currently without disk-swap (VM and Diskstore were abandoned)
??? Master-slave replication
??? Simple values or hash tables by keys,
??? but complex operations like ZREVRANGEBYSCORE.
??? INCR & co (good for rate limiting or statistics)
??? Has sets (also union/diff/inter)
??? Has lists (also a queue; blocking pop)
??? Has hashes (objects of multiple fields)
??? Sorted sets (high score table, good for range queries)
??? Redis has transactions (!)
??? Values can be set to expire (as in a cache)
??? Pub/Sub lets one implement messaging (!)

Best used: For rapidly changing data with a foreseeable database size (should fit mostly in memory).

For example: Stock prices. Analytics. Real-time data collection. Real-time communication.
MongoDB

??? Written in: C++
??? Main point: Retains some friendly properties of SQL. (Query, index)
??? License: AGPL (Drivers: Apache)
??? Protocol: Custom, binary (BSON)
??? Master/slave replication (auto failover with replica sets)
??? Sharding built-in
??? Queries are javascript expressions
??? Run arbitrary javascript functions server-side
??? Better update-in-place than CouchDB
??? Uses memory mapped files for data storage
??? Performance over features
??? Journaling (with --journal) is best turned on
??? On 32bit systems, limited to ~2.5Gb
??? An empty database takes up 192Mb
??? GridFS to store big data + metadata (not actually an FS)
??? Has geospatial indexing

Best used: If you need dynamic queries. If you prefer to define indexes, not map/reduce functions. If you need good performance on a big DB. If you wanted CouchDB, but your data changes too much, filling up disks.

For example: For most things that you would do with MySQL or PostgreSQL, but having predefined columns really holds you back.
Riak (V1.0)

??? Written in: Erlang & C, some Javascript
??? Main point: Fault tolerance
??? License: Apache
??? Protocol: HTTP/REST or custom binary
??? Tunable trade-offs for distribution and replication (N, R, W)
??? Pre- and post-commit hooks in JavaScript or Erlang, for validation and security.
??? Map/reduce in JavaScript or Erlang
??? Links & link walking: use it as a graph database
??? Secondary indices: search in metadata
??? Large object support (Luwak)
??? Comes in "open source" and "enterprise" editions
??? Full-text search, indexing, querying with Riak Search server (beta)
??? In the process of migrating the storing backend from "Bitcask" to Google's "LevelDB"
??? Masterless multi-site replication replication and SNMP monitoring are commercially licensed

Best used: If you want something Cassandra-like (Dynamo-like), but no way you're gonna deal with the bloat and complexity. If you need very good single-site scalability, availability and fault-tolerance, but you're ready to pay for multi-site replication.

For example: Point-of-sales data collection. Factory control systems. Places where even seconds of downtime hurt. Could be used as a well-update-able web server.
Membase

??? Written in: Erlang & C
??? Main point: Memcache compatible, but with persistence and clustering
??? License: Apache 2.0
??? Protocol: memcached plus extensions
??? Very fast (200k+/sec) access of data by key
??? Persistence to disk
??? All nodes are identical (master-master replication)
??? Provides memcached-style in-memory caching buckets, too
??? Write de-duplication to reduce IO
??? Very nice cluster-management web GUI
??? Software upgrades without taking the DB offline
??? Connection proxy for connection pooling and multiplexing (Moxi)

Best used: Any application where low-latency data access, high concurrency support and high availability is a requirement.

For example: Low-latency use-cases like ad targeting or highly-concurrent web apps like online gaming (e.g. Zynga).
Neo4j (V1.5M02)

??? Written in: Java
??? Main point: Graph database - connected data
??? License: GPL, some features AGPL/commercial
??? Protocol: HTTP/REST (or embedding in Java)
??? Standalone, or embeddable into Java applications
??? Full ACID conformity (including durable data)
??? Both nodes and relationships can have metadata
??? Integrated pattern-matching-based query language ("Cypher")
??? Also the "Gremlin" graph traversal language can be used
??? Indexing of nodes and relationships
??? Nice self-contained web admin
??? Advanced path-finding with multiple algorithms
??? Indexing of keys and relationships
??? Optimized for reads
??? Has transactions (in the Java API)
??? Scriptable in Groovy
??? Online backup, advanced monitoring and High Availability is AGPL/commercial licensed

Best used: For graph-style, rich or complex, interconnected data. Neo4j is quite different from the others in this sense.

For example: Social relations, public transport links, road maps, network topologies.
Cassandra

??? Written in: Java
??? Main point: Best of BigTable and Dynamo
??? License: Apache
??? Protocol: Custom, binary (Thrift)
??? Tunable trade-offs for distribution and replication (N, R, W)
??? Querying by column, range of keys
??? BigTable-like features: columns, column families
??? Has secondary indices
??? Writes are much faster than reads (!)
??? Map/reduce possible with Apache Hadoop
??? I admit being a bit biased against it, because of the bloat and complexity it has partly because of Java (configuration, seeing exceptions, etc)

Best used: When you write more than you read (logging). If every component of the system must be in Java. ("No one gets fired for choosing Apache's stuff.")

For example: Banking, financial industry (though not necessarily for financial transactions, but these industries are much bigger than that.) Writes are faster than reads, so one natural niche is real time data analysis.
HBase

(With the help of ghshephard)

??? Written in: Java
??? Main point: Billions of rows X millions of columns
??? License: Apache
??? Protocol: HTTP/REST (also Thrift)
??? Modeled after BigTable
??? Map/reduce with Hadoop
??? Query predicate push down via server side scan and get filters
??? Optimizations for real time queries
??? A high performance Thrift gateway
??? HTTP supports XML, Protobuf, and binary
??? Cascading, hive, and pig source and sink modules
??? Jruby-based (JIRB) shell
??? No single point of failure
??? Rolling restart for configuration changes and minor upgrades
??? Random access performance is like MySQL

Best used: If you're in love with BigTable. And when you need random, realtime read/write access to your Big Data.

For example: Facebook Messaging Database (more general example coming soon)

Of course, all systems have much more features than what's listed here. I only wanted to list the key points that I base my decisions on. Also, development of all are very fast, so things are bound to change. I'll do my best to keep this list updated.

-- Kristof

Mongodb Redis HBase


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 色噜噜五月综合激情久久爱 | 国产精品高清在线观看地址 | 波多野结衣一区二区 | 四虎影视最新网站在线播放 | 99热久久久久久久免费观看 | 狠狠色噜噜狠狠狠狠97 | 日韩a在线播放 | 只有精品| 久久欧美久久欧美精品 | 香蕉在线精品一区二区 | 亚洲综合激情六月婷婷在线观看 | 日本强日本不卡一 | 日韩欧美在线中文字幕 | 一 级 黄 色 片生活片 | 奇米影视在线 | 91成人影院未满十八勿入 | 欧美一级毛片免费播放aa | 国产aaa级一级毛片 国产aaa毛片 | 成人乱色短篇合集 | 国产福利一区二区三区在线视频 | 中文字幕亚洲精品日韩精品 | 久久国产偷 | 日本高清一级做a爱过程免费视频 | 国产精品99久久 | 日色视频 | 99久热国产精品视频尤物不卡 | 国产激情对白一区二区三区四 | 日本 毛片基地-亚洲 | 一区免费 | 久久91精品国产91久久 | 亚洲不卡视频 | 国产精品久久免费观看 | 天天色天天操天天射 | 久草手机在线观看 | 国产真实自拍 | 在线亚洲日产一区二区 | 亚洲欧美精品一中文字幕 | 2019年国产高清情侣视频 | 国产午夜精品理论片久久影视 | 亚洲视频在线观看免费 | 狠狠操天天操 |