您好,登錄后才能下訂單哦!
簡(jiǎn)介
Cassandra是一套開源分布式NoSQL數(shù)據(jù)庫系統(tǒng),Cassandra的主要特點(diǎn)是無中心的設(shè)計(jì),其分布式集群由一堆數(shù)據(jù)庫節(jié)點(diǎn)共同構(gòu)成一個(gè)分布式網(wǎng)絡(luò)服務(wù),對(duì)Cassandra 的一個(gè)寫操作,會(huì)被復(fù)制到其他節(jié)點(diǎn)上去,對(duì)Cassandra的讀操作,也會(huì)被路由到某個(gè)節(jié)點(diǎn)上面去讀取。對(duì)于一個(gè)Cassandra群集來說,擴(kuò)展性能是比較簡(jiǎn)單的事情,只管在群集里面添加節(jié)點(diǎn)就可以了。
隨著Nosql的火熱,Hbase、Mongodb已然成了NoSQL數(shù)據(jù)庫的代表,而Cassandra在國(guó)內(nèi)的使用卻不多(據(jù)說360公司在大規(guī)模使用),根據(jù)百度指數(shù)的顯示cassandra的火熱度遠(yuǎn)遠(yuǎn)低于mongodb和Hbase。
而在國(guó)外,根據(jù)數(shù)據(jù)庫評(píng)分網(wǎng)站DB-Engines的16.10的最新數(shù)據(jù),cassandra排名上升到了第7,排名遠(yuǎn)遠(yuǎn)高于Hbase。
優(yōu)點(diǎn):
1、模式靈活
使用Cassandra,像文檔存儲(chǔ),你不必提前解決記錄中的字段。你可以在系統(tǒng)運(yùn)行時(shí)隨意的添加或移除字段。這是一個(gè)驚人的效率提升,特別是在大型部署上。
2、真正的可擴(kuò)展性
Cassandra是純粹意義上的水平擴(kuò)展。為給集群添加更多容量,可以指向另一臺(tái)電腦。你不必重啟任何進(jìn)程,改變應(yīng)用查詢,或手動(dòng)遷移任何數(shù)據(jù)。
3、多數(shù)據(jù)中心識(shí)別
你可以調(diào)整你的節(jié)點(diǎn)布局來避免某一個(gè)數(shù)據(jù)中心起火,一個(gè)備用的數(shù)據(jù)中心將至少有每條記錄的完全復(fù)制。
4、范圍查詢
如果你不喜歡全部的鍵值查詢,則可以設(shè)置鍵的范圍來查詢。
5、列表數(shù)據(jù)結(jié)構(gòu)
在混合模式可以將超級(jí)列添加到5維。對(duì)于每個(gè)用戶的索引,這是非常方便的。
6、分布式寫操作
有可以在任何地方任何時(shí)間集中讀或?qū)懭魏螖?shù)據(jù)。并且不會(huì)有任何單點(diǎn)失敗
缺點(diǎn)
1. 讀的性能太慢
無中心的設(shè)計(jì),造成讀數(shù)據(jù)時(shí)通過逆熵做計(jì)算,性能損耗很大,甚至?xí)?yán)重影響服務(wù)器運(yùn)作。
2. 數(shù)據(jù)同步太慢(最終一致性延遲可能非常大)
由于無中心設(shè)計(jì),要靠各節(jié)點(diǎn)傳遞信息。相互發(fā)通知告知狀態(tài),如果副本集有多份,其中又出現(xiàn)節(jié)點(diǎn)有宕機(jī)的情況,那么做到數(shù)據(jù)的一致性,延遲可能非常大,效率也很低的。
3. 用插入和更新代替查詢,缺乏靈活性,所有查詢都要求提前定義好。
與大多數(shù)數(shù)據(jù)庫為讀優(yōu)化不同,Cassandra的寫性能理論上是高于讀性能的,因此非常適合流式的數(shù)據(jù)存儲(chǔ),尤其是寫負(fù)載高于讀負(fù)載的。與HBase比起來,它的隨機(jī)訪問性能要高很多,但不是很擅長(zhǎng)區(qū)間掃描,因此可以作為HBase的即時(shí)查詢緩存,由HBase進(jìn)行批量的大數(shù)據(jù)處理,由Cassandra提供隨機(jī)查詢的接口
4. 不支持直接接入hadoop,不能實(shí)現(xiàn)MapReduce。
現(xiàn)在大數(shù)據(jù)的代名詞就是hadoop,做為海量數(shù)據(jù)的框架不支持hadoop及MapReduce,就將被取代。除非Cassandra能夠給出其他的定位,或者海量數(shù)據(jù)解決方案。DataStax公司,正在用Cassandra重構(gòu)HDFS的文件系統(tǒng),不知道是否可以成功。
一:部署cassandra
規(guī)劃:
集群節(jié)點(diǎn):3
10.10.8.3
10.10.8.4
10.10.8.5
(1)配置jdk
10.10.8.3、10.10.8.4、10.10.8.5
$ wget http://download.oracle.com/otn-pub/java/jdk/8u112-b15/jdk-8u112-linux-x64.tar.gz $ tar xf jdk-8u112-linux-x64.tar.gz -C /opt $ vim /etc/profile 增加 export JAVA_HOME=/opt/jdk1.8.0_112 export PATH=$PATH:$JAVA_HOME/bin export CLASSPATH=$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar $ source /etc/profile
(2)安裝Cassandra
10.10.8.3、10.10.8.4、10.10.8.5
$ wget http://apache.fayea.com/cassandra/3.0.9/apache-cassandra-3.0.9-bin.tar.gz $ tar xvf apache-cassandra-3.0.9-bin.tar.gz -C /opt $ ln -s /opt/apache-cassandra-3.0.9 /opt/cassandra
(3)配置
10.10.8.3、10.10.8.4、10.10.8.5
$ copy conf/cassandra.yaml conf/cassandra.yaml.bak $ vim conf/cassandra.yaml #cassandra-3.0.9的精簡(jiǎn)配置,可以運(yùn)行集群的最低配置。 cluster_name: 'My Cluster' #集群名 num_tokens: 256 seed_provider: - class_name: org.apache.cassandra.locator.SimpleSeedProvider parameters: - seeds: "10.10.8.3,10.10.8.4,10.10.8.5" #節(jié)點(diǎn)ip列表 listen_address: 10.10.8.5 #進(jìn)程監(jiān)聽地址 storage_port: 7000 #集群中節(jié)點(diǎn)通信的端口號(hào) start_native_transport: true #開啟native協(xié)議 native_transport_port: 9042 #客戶端的交互端口 data_file_directories: - /data/cassandra/dbdata # 數(shù)據(jù)位置,多盤的話可以寫多個(gè)目錄 commitlog_directory: - /data/cassandra/commitlog #commitlog的路徑,與data目錄分開磁盤,提高性能 saved_caches_directory: - /data/cassandra/caches #緩存數(shù)據(jù)目錄 hints_directory: - /data/cassandra/hints commitlog_sync: batch #批量記錄commitlog,每隔一段時(shí)間將數(shù)據(jù)commitlog commitlog_sync_batch_window_in_ms: 2 #batch模式下,批量操作緩存的時(shí)間間隔 #commitlog_sync: periodic #周期記錄commitlog,每一次有數(shù)據(jù)更新都commitlog #commitlog_sync_period_in_ms: 10000 #periodic模式,刷新commitlog的時(shí)間間隔 partitioner: org.apache.cassandra.dht.Murmur3Partitioner endpoint_snitch: SimpleSnitch
如果使用cassandra的默認(rèn)配置,只需要修改如下行即可,其他性能參數(shù)請(qǐng)參照官方文檔。
10 cluster_name: 'My Cluster' 71 hints_directory: /data/cassandra/hints 169 data_file_directories:170 - /data/cassandra/dbdata 175 commitlog_directory: /data/cassandra/commitlog 287 saved_caches_directory: /data/cassandra/caches 343 - seeds: "10.10.8.3,10.10.8.4,10.10.8.5" 473 listen_address: localhost
(4)創(chuàng)建對(duì)應(yīng)的目錄
10.10.8.3、10.10.8.4、10.10.8.5
$ mkdir -p /data/cassandra/{dbdata,commitlog,caches,hints}
(5)啟動(dòng)進(jìn)程
10.10.8.3、10.10.8.4、10.10.8.5
$ /opt/cassandra/bin/cassandra
二:插件工具使用
(1)nodetool工具
nodetool是cassandra的集群和節(jié)點(diǎn)的管理和信息查看工具。
$ /opt/cassandra/bin/nodetool usage: nodetool [(-u <username> | --username <username>)] [(-pw <password> | --password <password>)] [(-pwf <passwordFilePath> | --password-file <passwordFilePath>)] [(-h <host> | --host <host>)] [(-p <port> | --port <port>)] <command> [<args>]
1:查看集群狀態(tài)
$/opt/cassandra/bin/nodetool status Datacenter: datacenter1 ======================= Status=Up/Down |/ State=Normal/Leaving/Joining/Moving -- Address Load Tokens Owns (effective) Host ID Rack UN 10.10.8.3 304.71 KB 256 68.0% 64b6a935-caa6-4ed5-857b-70963e74a81d rack1 UN 10.10.8.4 173.84 KB 256 65.3% db77bd8a-2655-41c6-b13e-584cf44b8162 rack1 UN 10.10.8.5 297.2 KB 256 66.7% 8fac64f8-1ed9-4ca3-af70-dee9ebcf77c2 rack1
2:當(dāng)前節(jié)點(diǎn)狀態(tài)
$/opt/cassandra/bin/nodetool info ID : db77bd8a-2655-41c6-b13e-584cf44b8162 Gossip active : true Thrift active : true Native Transport active: true Load : 173.84 KB Generation No : 1478159246 Uptime (seconds) : 4554 Heap Memory (MB) : 297.65 / 7987.25 Off Heap Memory (MB) : 0.00 Data Center : datacenter1 Rack : rack1 Exceptions : 0 Key Cache : entries 14, size 1.08 KB, capacity 100 MB, 110 hits, 127 requests, 0.866 recent hit rate, 14400 save period in seconds Row Cache : entries 0, size 0 bytes, capacity 0 bytes, 0 hits, 0 requests, NaN recent hit rate, 0 save period in seconds Counter Cache : entries 0, size 0 bytes, capacity 50 MB, 0 hits, 0 requests, NaN recent hit rate, 7200 save period in seconds Token : (invoke with -T/--tokens to see all 256 tokens)
3:關(guān)閉cassandra的進(jìn)程
$ /opt/cassandra/bin/nodetool stopdaemon Cassandra has shutdown. error: Connection refused -- StackTrace -- java.net.ConnectException: Connection refused at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
4:查看各個(gè)列的數(shù)據(jù)詳細(xì)信息、讀寫次數(shù),響應(yīng)時(shí)間等
$ /opt/cassandra/bin/nodetool cfstats Keyspace: system_traces Read Count: 0 Read Latency: NaN ms. Write Count: 0 Write Latency: NaN ms. Pending Flushes: 0 Table: events SSTable count: 0 Space used (live): 0 Space used (total): 0 Space used by snapshots (total): 0 Off heap memory used (total): 0 SSTable Compression Ratio: 0.0 Number of keys (estimate): 0 Memtable cell count: 0 Memtable data size: 0 Memtable off heap memory used: 0 Memtable switch count: 0
(2)cqlsh 命令行工具
cqlsh是cassandra的客戶端命令行工具,替代了之前版本中的cassandra-cli,能實(shí)現(xiàn)對(duì)數(shù)據(jù)的增刪改查等一些列的操作。
$ /opt/cassandra/bin/cqlsh Usage: cqlsh [options] [host [port]] CQL Shell for Apache Cassandra
1:安裝python2.7(依賴python)
$ yum install openssl-devel #防止python編譯后沒有ssl模塊,導(dǎo)致cqlsh不可用 $ wget https://www.python.org/ftp/python/2.7/Python-2.7.tgz $ tar xf Python-2.7.tgz $ cd Python-2.7 $ mkdir /usr/local/python27 $ ./configure --prefix=/usr/local/python27 $ make&&make install $ ln -s /usr/local/python27/bin/python2.7 /usr/bin/python2.7
如果遇到 ImportError: No module named _ssl ,就安裝openssl-devel,然后再編譯安裝python
2:連接host
$ /opt/cassandra/bin/cqlsh 10.10.8.3 9042 Connected to My Cluster at 10.10.8.3:9042. [cqlsh 5.0.1 | Cassandra 3.0.9 | CQL spec 3.4.0 | Native protocol v4] Use HELP for help. cqlsh> show version [cqlsh 5.0.1 | Cassandra 3.0.9 | CQL spec 3.4.0 | Native protocol v4] cqlsh> show host Connected to My Cluster at 10.10.8.3:9042.
3:help命令可以看到 CQL數(shù)據(jù)操作語言的相關(guān)命令
cqlsh> help Documented shell commands: =========================== CAPTURE CLS COPY DESCRIBE EXPAND LOGIN SERIAL SOURCE UNICODE CLEAR CONSISTENCY DESC EXIT HELP PAGING SHOW TRACING CQL help topics: ================ AGGREGATES CREATE_KEYSPACE DROP_TRIGGER TEXT ALTER_KEYSPACE CREATE_MATERIALIZED_VIEW DROP_TYPE TIME ALTER_MATERIALIZED_VIEW CREATE_ROLE DROP_USER TIMESTAMP ALTER_TABLE CREATE_TABLE FUNCTIONS TRUNCATE ALTER_TYPE CREATE_TRIGGER GRANT TYPES ALTER_USER CREATE_TYPE INSERT UPDATE APPLY CREATE_USER INSERT_JSON USE ASCII DATE INT UUID BATCH DELETE JSON BEGIN DROP_AGGREGATE KEYWORDS BLOB DROP_COLUMNFAMILY LIST_PERMISSIONS BOOLEAN DROP_FUNCTION LIST_ROLES COUNTER DROP_INDEX LIST_USERS CREATE_AGGREGATE DROP_KEYSPACE PERMISSIONS CREATE_COLUMNFAMILY DROP_MATERIALIZED_VIEW REVOKE CREATE_FUNCTION DROP_ROLE SELECT CREATE_INDEX DROP_TABLE SELECT_JSON cqlsh>
參考資料
連接:http://cassandra.apache.org/doc/latest/ ---官方文檔
鏈接:http://jingyan.baidu.com/article/7e440953ec8a7e2fc0e2ef9b.html ---優(yōu)點(diǎn)
鏈接:https://www.zhihu.com/question/19592244/answer/21430967 ---缺點(diǎn)
連接:http://yikebocai.com/2014/06/cassandra-principle/ ---原理
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。