hbase
https://www.cnblogs.com/qingyunzong/p/8671153.html
create 'myHbase',{NAME => 'myCard',VERSIONS => 5}
创建了一个名为myHbase的表,表里面有1个列簇,名为myCard,保留5个版本信息
create 'user_info',{NAME=>'base_info',VERSIONS=>3 },{NAME=>'extra_info',VERSIONS=>1 }
向 user 表中插入信息,row key 为 user0001,列簇 base_info 中添加 name 列标示符,值为 zhangsan1
put 'user_info', 'user0001', 'base_info:name', 'zhangsan1'