Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

第 15 章 Cassandra

目录

15.1. Getting Started
15.1.1. Downloading and Installation
15.1.2. Running Cassandra
15.1.3. cli tool
15.1.4. Testing Cassandra
15.2. Configure Cassandra
15.2.1. Envionment variables
15.2.2. log4j.properties
15.2.3. storage-conf.xml
15.3. Keyspace
15.3.1. Schema
15.3.2. Keyspace example
15.4. Cluster
15.4.1. Running a cluster
15.4.2. Running a single node
15.4.3. nodetool

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

15.1. Getting Started

15.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
		
		

15.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
		
		

15.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
		
		

15.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>