cassandra的命令: 
connect <hostname>/<port> (<username> '<password>')?;    Connect to thrift service. 
use <keyspace> [<username> 'password'];                             Switch to a keyspace. 
describe keyspace (<keyspacename>)?;                                  Describe keyspace. 
exit;

quit;

describe cluster;                                                                   Display information about cluster. 
show cluster name;                                                               Display cluster name. 
show keyspaces;                                                                   Show list of keyspaces. 
show api version;                                                Show server API version. 
create keyspace <keyspace> [with <att1>=<value1> [and <att2>=<value2> ...]]; 
            
update keyspace <keyspace> [with <att1>=<value1> [and <att2>=<value2> ...]]; 
                
create column family <cf> [with <att1>=<value1> [and <att2>=<value2> ...]]; 
     
update column family <cf> [with <att1>=<value1> [and <att2>=<value2> ...]]; 
            
drop keyspace <keyspace>;                                          Delete a keyspace. 
drop column family <cf>;                                         Delete a column family. 
get <cf>['<key>'];                                                Get a slice of columns. 
get <cf>['<key>']['<super>'];                                Get a slice of sub columns. 
get <cf> where <column> = <value> [and <column> > <value> and ...] [limit int]; 
get <cf>['<key>']['<col>'] (as <type>)*;                        Get a column value. 
get <cf>['<key>']['<super>']['<col>'] (as <type>)*;          Get a sub column value. 
set <cf>['<key>']['<col>'] = <value> (with ttl = <secs>)*;         Set a column. 
set <cf>['<key>']['<super>']['<col>'] = <value> (with ttl = <secs>)*; 
                                                                                             Set a sub column. 
del <cf>['<key>'];                                                                   Delete record. 
del <cf>['<key>']['<col>'];                                              Delete column. 
del <cf>['<key>']['<super>']['<col>'];                             Delete sub column. 
count <cf>['<key>'];                                                               Count columns in record. 
count <cf>['<key>']['<super>'];                           Count columns in a super column. 
truncate <column_family>;                                   Truncate specified column family. 
assume <column_family> <attribute> as <type>; 
                                                                                            Assume a given column family attributes to match a specified type. 
consistencylevel as <level>; 
                                                                                            Change the consistency level for set,get, and list operations. 
list <cf>;                                                   List all rows in the column family. 
list <cf>[<startKey>:]; 
                                                                                            List rows in the column family beginning with <startKey>. 
list <cf>[<startKey>:<endKey>]; 
                                                                                            List rows in the column family in the range from <startKey> to <endKey>. 
list ... limit N;                                                                        Limit the list results to N.

cassandra的命令的更多相关文章

  1. Cassandra学习&命令行实践

    准备 按照Cassandra集群部署搭建两台测试机,环境信息如下: 名称 IP 数据中心名称 node-01 192.168.198.130 datacenter1 node-02 192.168.1 ...

  2. cassandra 环境搭建

    1 下载安装包 http://www.planetcassandra.org/cassandra/?dlink=http://downloads.datastax.com/community/dsc- ...

  3. Cassandra 的启动和初始化

    Cassandra常用命令 Cassandra启动过程详解[原创] Cassandra 的入口 CassandraDaemon 作为Cassandra的入口,做了以下几件事: load configu ...

  4. 转】R利剑NoSQL系列文章 之 Cassandra

    原博文出自于: http://blog.fens.me/category/%E6%95%B0%E6%8D%AE%E5%BA%93/page/3/ 感谢! R利剑NoSQL系列文章 之 Cassandr ...

  5. Cassandra 简介

    Cassandra是云原生和微服务化场景中最好的NoSQL数据库.我信了~ 1. Cassandra是什么 高可用性和可扩展的分布式数据库 Apache Cassandra™是一个开源分布式数据,可提 ...

  6. hadoop+海量数据面试题汇总(一)

    hadoop面试题 Q1. Name the most common InputFormats defined in Hadoop? Which one is default ? Following  ...

  7. cassandra命令

    压力测试:cassandra-stress [command] -node [nodes] -mode thrift user=[user] password=[password] example: ...

  8. Cassandra 数据库, python cqlsh命令

    ★  cql操作数据库(cqlsh.bat: python cqlsh命令操作<优缺点:https://blog.csdn.net/vbirdbest/article/details/77662 ...

  9. Cassandra命令行CLI的基本使用

    启动cassandra-cli服务之后,可以进行CQL的使用. 1. 创建keyspace 可以理解成关系数据库的database [default@testkeyspace] create keys ...

随机推荐

  1. java的Access restriction错误

    问 :import sun.management.ManagementFactory,我在rt包下已经找到sun.management.ManagementFactory,但就是有错,请问怎么回事. ...

  2. The goroutine scheduler is not preemptive.

    go - Why is time.sleep required to run certain goroutines? - Stack Overflow https://stackoverflow.co ...

  3. StackOver上的一个wx刷新显示的例子

    import wx class MyFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, None) self.panel = wx ...

  4. 【题解】CF997C Sky Full of Stars

    [题解]CF997C Sky Full of Stars 为什么我的容斥原理入门题是这道题????????? \(Part-1\)正向考虑 直接考虑不合法合法的方案吧 所以我们设行有\(i\),列有\ ...

  5. spring 'arroudAspect' for bean class [com.dw.test.ArroudAspect] conflicts with existing, non-compatible bean definition of same name and class [com.dw.aspect.ArroudAspect]

    Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: ...

  6. nginx+keepalived简单双机主从热备

    双机主从热备概述 可以两台机子互为热备,平时各自负责各自的服务.在做上线更新的时候,关闭一台服务器的tomcat后,nginx自动把流量切换到另外一台服务的后备机子上,从而实现无痛更新,保持服务的持续 ...

  7. nginx日志输出参数记录

    摘自: http://www.cnblogs.com/LoveJulin/p/5082363.html nginx服务器日志相关指令主要有两条,一条是log_format,用来设置日志格式,另外一条是 ...

  8. Oracle约束的使用

    --5个约束,主键约束.外键约束.唯一约束.检查约束.非空约束. --添加主键约束 Alter table table_name Add constraints constraint_name Pri ...

  9. jQuery选项卡tabulous

    jQuery选项卡tabulous,jQuery,选项卡,tab标签切换代码,扁平设计,jQuery选项卡tabulous是一款支持Scale.Slide.Scale Up.Flip等效果jquery ...

  10. NASNet学习笔记——   核心一:延续NAS论文的核心机制使得能够自动产生网络结构;    核心二:采用resnet和Inception重复使用block结构思想;    核心三:利用迁移学习将生成的网络迁移到大数据集上提出一个new search space。

    from:https://blog.csdn.net/xjz18298268521/article/details/79079008 NASNet总结 论文:<Learning Transfer ...