Why does cutting and pasting from the Cassandra CLI tutorial not work?

前端 未结 3 1709
执笔经年
执笔经年 2021-02-03 15:02

Blindly following http://wiki.apache.org/cassandra/CassandraCli, and can someone please explain this?

aaron-mac:apache-cassandra-1.0.0 aaron$ bin/cassandra-cli          


        
3条回答
  •  醉酒成梦
    2021-02-03 15:41

    Before you run any set command in Cassandra CLI, it is always advisable to do the following :

    assume  keys as utf8;
    assume  comparator as utf8;
    assume  validator as utf8;
    

    This will ensure that everything you set and list will be understood

    P.S : This is only for newcomers to Cassandra

提交回复
热议问题