Mac os下cassandra資料庫的安裝與使用

來源:互聯網
上載者:User

標籤:

關於安裝cassandra資料庫,其實在apache官網上有詳細的介紹:http://wiki.apache.org/cassandra/GettingStarted。當然,為了方便不願看英文的同學,下面也大概介紹一下:

預備工作:確認自己的mac安裝有jdk(最新的mac系統應該都安有jdk,所以問題應該不大,java -version即可驗證是否系統是否安裝了jdk)

1、首先到apache官網上下載cassandra最新版本,當然最新穩定版本為Apache Cassandra2.1.10 (released on 2015-10-05)

:http://cassandra.apache.org/download/

2、下載解壓之後,進入到bin目錄下,輸入命令:./cassandra -f 即開啟了cassandra資料庫。

  對於-f命令,並不是必須的,在文檔中關於-f選項是這樣介紹的:If you start up Cassandra without the "-f" option, it will run in the background. You can stop the process by killing it, using ‘pkill -f CassandraDaemon‘, for example.

3、在開啟cassandra之後,我們還需要一個互動的命令列介面以協助我們使用CQL語句在cassandra中建立keyspace。

同樣在bin目錄下,輸入命令:./cqlsh,進入到互動命令列中,在這裡,文法其實和一般的sql沒有太多差別了。

主要的差別在於概念上,在cassandra中,有四個主要概念,分別是:keyspace、column family、supper column、column。

具體意義上的區別就不詳述,對於還不太熟悉cassandra的同學可以認為keyspace就對應著我們的database,而column family對應著table,當然supper column和column其實就對應著兩種概念的欄位。

而cql的好處在於使用了類sql的文法,使人們感知不到column family什麼的

4、建立一個keyspace:

cqlsh> create keyspace devjavasource with replication={‘class‘:‘SimpleStrategy‘,‘replication_factor‘:1};

其中replication_factor是設定要複製幾份,devjavasource是我要建立的keyspace

5、使用該keyspace:

cqlsh> use devjavasource;

6、建立一個表

cqlsh> create table User(

    id int primary key,

    address text,

    name text);

這樣的話一個表就建立好了,其他和sql都一樣,就不詳述了。

7、如果有不會的命令,直接輸入help即可查看了

Mac os下cassandra資料庫的安裝與使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.