Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 16 章 Cassandra

目錄

16.1. Getting Started
16.1.1. Downloading and Installation
16.1.2. Running Cassandra
16.1.3. cli tool
16.1.4. Testing Cassandra
16.2. Configure Cassandra
16.2.1. Envionment variables
16.2.2. log4j.properties
16.2.3. storage-conf.xml
16.3. Keyspace
16.3.1. Schema
16.3.1.1. Keyspace
16.3.1.2. Column family
16.3.1.2.1. Name
16.3.1.2.2. Column
16.3.1.2.3. Super column
16.3.1.2.4. Sorting
16.3.2. Keyspace example
16.4. Cluster
16.4.1. Running a cluster
16.4.2. Running a single node
16.4.3. nodetool

http://incubator.apache.org/cassandra/

16.1. Getting Started

16.1.1. Downloading and Installation

$ cd /srv/

		
$ cd /usr/local/src/

$ sudo wget -c http://apache.freelamp.com/cassandra/0.5.1/apache-cassandra-0.5.1-bin.tar.gz
$ sudo tar zxvf apache-cassandra-0.5.1-bin.tar.gz
$ cp -r /usr/local/src/apache-cassandra-0.5.1 /srv/
$ cd /srv/
$ sudo ln -s apache-cassandra-0.5.1 apache-cassandra
$ cd apache-cassandra
		
		

16.1.2. Running Cassandra

Running Cassandra

		
$ bin/cassandra
$ Listening for transport dt_socket at address: 8888
INFO - Saved Token not found. Using 70882909557229809272696372631016976044
INFO - Starting up server gossip
		
		

16.1.3. cli tool

cli

$ bin/cassandra-cli
		
neo@db:/srv/apache-cassandra$ bin/cassandra-cli
Welcome to cassandra CLI.

Type 'help' or '?' for help. Type 'quit' or 'exit' to quit.
cassandra>
		
		

		
cassandra> connect localhost/9160
Connected to localhost/9160
		
		

16.1.4. Testing Cassandra

test

		
cassandra> show keyspaces
Keyspace1
system
		
		

insert value

		
cassandra> set Keyspace1.Standard1['member']['name']='neo'
Value inserted.
cassandra> set Keyspace1.Standard1['member']['age']='27'
Value inserted.
cassandra> set Keyspace1.Standard1['member']['email']='openunix@163.com'
Value inserted.
cassandra>
cassandra> get Keyspace1.Standard1['member']
=> (column=name, value=neo, timestamp=1271070497471)
=> (column=email, value=openunix@163.com, timestamp=1271070498334)
=> (column=age, value=27, timestamp=1271070497519)
Returned 3 results.
cassandra>