标签: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格式。
标签:ticker nbsp 字段 close 数据集 lines 支持 exchange log
原文地址:http://www.cnblogs.com/lukangping/p/6083933.html