码迷,mamicode.com
首页 > 其他好文 > 详细

cassandra command lines

时间:2016-11-21 07:43:20      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:ticker   nbsp   字段   close   数据集   lines   支持   exchange   log   

1. create keyspace

>>create keyspace packt
with replication = 
{‘class‘:‘SimpleStrategy‘,‘replication_factor‘:1}

2. create table

>>use packt;
>>create table stock_ticker_by_exchange_date { exchange varchar, symbol varchar, description varchar, tick_date varchar, close decimal, primary key ((exchange,tick_date), symbol) }

exchange, tick_date 两个字段作为row key / partition key;

exchange, tick_date, symbol 3个字段作为(compound)primary key,复合主键,称之为wide row;单列主键,称之为skinny row。

默认primary key第一个字段作为row key。

3. cassandra特有的支持集合数据类型

在一个字段中存放小量的数据集,支持set,list,map格式。

 

cassandra command lines

标签:ticker   nbsp   字段   close   数据集   lines   支持   exchange   log   

原文地址:http://www.cnblogs.com/lukangping/p/6083933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!