Cassandra安装和初次使用

卡珊德拉(Cassandra)又译卡桑德拉、卡珊卓,为希腊、罗马神话中特洛伊(Troy)的公主,阿波罗(Apollo)的祭司。因神蛇以舌为她洗耳或阿波罗的赐予而有预言能力,又因抗拒阿波罗,预言不被人相信。特洛伊战争后被阿伽门农(Agamemnon)俘虏,并遭克吕泰涅斯特拉(Clytaemnestra)杀害。

点这里看下Cassandra

依赖环境

The latest version of Java 8, either the Oracle Java Standard Edition

8 or OpenJDK 8. To verify that you have the correct version of java

installed, type java -version. For using cqlsh, the latest version of

Python 2.7. To verify that you have the correct version of Python

installed, type python --version.

事实上如果你安装的是OpenJDK,然后启动Cassandra它会报警告,说不推荐使用OpenJDK,而且JDK的版本要1.8。

安装Cassandra

我选择的是下载二进制的文件,然后解压安装:

tar -xvf apache-cassandra-3.6-bin.tar.gz cassandra

哦,我的Linux发行版是CentOS 7 x64

这样你就已经安装好了Cassandra了,真是方便(日常吐槽FreeBSD,想用最新版本的Cassandra以我的水平还达不到啊)。

其他的就是看你需不需要配置环境变量以及日志了,反正我就马马虎虎开车上路了。点这里查看详细配置

启动Cassandra

cassandra -h
Usage: /usr/local/apache-cassandra-3.10/bin/cassandra [-f] [-h] [-p pidfile] [-H dumpfile] [-E errorfile]
  • -f 是前台启动
  • -h 帮助信息
  • -R 是以root启动

Cassandra不推荐你以root来启动它,如果你非要这么干,可以,你得用-R选项

这里我用的一下方式启动:

/usr/local/apache-cassandra-3.10/bin/cassandra -f -R

日志信息就不传上来了,反正没有报错我就当它成功了。

连接并使用Cassandra

连接Cassandra的客户端为cqlsh,先查看一下这个命令的用法:

/usr/local/apache-cassandra-3.10/bin/cqlsh -h
Usage: cqlsh.py [options] [host [port]] CQL Shell for Apache Cassandra Options:
--version show program's version number and exit
-h, --help show this help message and exit
-C, --color Always use color output
--no-color Never use color output
--browser=BROWSER The browser to use to display CQL help, where BROWSER
can be:
- one of the supported browsers in
https://docs.python.org/2/library/webbrowser.html.
- browser path followed by %s, example: /usr/bin
/google-chrome-stable %s
--ssl Use SSL
-u USERNAME, --username=USERNAME
Authenticate as user.
-p PASSWORD, --password=PASSWORD
Authenticate using password.
-k KEYSPACE, --keyspace=KEYSPACE
Authenticate to the given keyspace.
-f FILE, --file=FILE Execute commands from FILE, then exit
--debug Show additional debugging information
--encoding=ENCODING Specify a non-default encoding for output. (Default:
utf-8)
--cqlshrc=CQLSHRC Specify an alternative cqlshrc file location.
--cqlversion=CQLVERSION
Specify a particular CQL version, by default the
highest version supported by the server will be used.
Examples: "3.0.3", "3.1.0"
-e EXECUTE, --execute=EXECUTE
Execute the statement and quit.
--connect-timeout=CONNECT_TIMEOUT
Specify the connection timeout in seconds (default: 5
seconds).
--request-timeout=REQUEST_TIMEOUT
Specify the default request timeout in seconds
(default: 10 seconds).
-t, --tty Force tty mode (command prompt). Connects to 127.0.0.1:9042 by default. These defaults can be changed by
setting $CQLSH_HOST and/or $CQLSH_PORT. When a host (and optional port number)
are given on the command line, they take precedence over any defaults.

这里我们可以获取一下信息

  1. cqlsh可以不接任何选项或者参数启动,默认的是连接127.0.0.1:9042端口

其他的选项就不细说了,反正可以直接这样连,赶快连上去看一下。输入cqlsh然后回车。

[root@backup ~]# cqlsh
Connected to Test Cluster at 127.0.0.1:9042.
[cqlsh 5.0.1 | Cassandra 3.10 | CQL spec 3.4.4 | Native protocol v4]
Use HELP for help.
cqlsh>

嘻嘻,已经连上去了。

输入几个命令体验一把:

查看集群:
cqlsh> desc cluster;    // 查看所在的集群

Cluster: Test Cluster
Partitioner: Murmur3Partitioner
查看表空间(姑且先这么称吧)
cqlsh> desc keyspaces;   // 查看表空间

system_schema  system_auth  system  myapp  system_distributed  system_traces
查看具体的表空间
desc keyspace system_schema;   // 相当于查看建表语句吧

查看表空间下有哪些表

desc tables;
查看表空间的某张具体表
desc table system_schema.functions;

在使用cql时,如果你不指定表空间,那么你的语句中就必须显示的使用表空间.某张表这样的语句,想要直接使用某张表就要选中表空间了。

使用某个表空间
USE 表空间名;    // 是不是跟mysql很像啊
创建表空间
CREATE KEYSPACE myapp WITH replication = {'class': 'SimpleStrategy', 'replication_factor' : 3};

在这里创建表空间时可以添加某些选项,暂时先这么整,等你你深入之后再研究吧。

使用指定表空间并创建表
cqlsh:system_auth> use myapp;
cqlsh:myapp> CREATE TABLE users (
... id text PRIMARY KEY,
... name text,
... favs map<text, text>
... );
cqlsh:myapp> INSERT INTO users (id, name, favs)
... VALUES ('小明','李小明',{'fruit':'苹果','游戏':'DotA'});
cqlsh:myapp> SELECT * FROM users; id | favs | name
------+-----------------------------------+--------
小明 | {'fruit': '苹果', '游戏': 'DotA'} | 李小明 (1 rows)
使用where子句查询
cqlsh:myapp> SELECT * FROM user WHERE id="小红";

很不幸,报错了:

'ascii' codec can't encode character u'\u5c0f' in position 72: ordinal not in range(128)

查了一下,这时Python惹得祸。

[root@backup ~]# python
Python 2.7.5 (default, Nov 6 2016, 00:28:07)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> reload(sys)
<module 'sys' (built-in)>
>>> sys.setdefaultencoding('utf-8')
>>> k=u'中'
>>> print str(unicode(k))

>>>

这里我在bin目录下的cqlsh.py文件中添加了如下代码

  // 大概就是在这个位置加的
49 from uuid import UUID
50
51 reload(sys) // 这行以及下面的一行
52 sys.setdefaultencoding("utf8")

然后不能用cqlsh这个命令了,只能用cqlsh这个脚本来执行了

[root@backup bin]# ./cqlsh.py
Connected to Test Cluster at 127.0.0.1:9042.
[cqlsh 5.0.1 | Cassandra 3.10 | CQL spec 3.4.4 | Native protocol v4]
Use HELP for help.
cqlsh> use myapp ;
cqlsh:myapp> select * from user where id="小红";
SyntaxException: line 1:32 no viable alternative at input ';' (...* from user where id=["小]红";)
cqlsh:myapp> select * from user where id="小红"
... ;
SyntaxException: line 2:0 no viable alternative at input ';' (...* from user where id=["小]红";)
cqlsh:myapp> select * from user where id=小红;
Invalid syntax at line 1, char 29
select * from user where id=小红;
^
cqlsh:myapp> select * from user where id='小红';
InvalidRequest: Error from server: code=2200 [Invalid query] message="unconfigured table user"
cqlsh:myapp> select * from user;
InvalidRequest: Error from server: code=2200 [Invalid query] message="unconfigured table user"
cqlsh:myapp> desc myapp CREATE KEYSPACE myapp WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '3'} AND durable_writes = true; CREATE TABLE myapp.users (
id text PRIMARY KEY,
favs map<text, text>,
name text
) WITH bloom_filter_fp_chance = 0.01
AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'}
AND comment = ''
AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'}
AND compression = {'chunk_length_in_kb': '64', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'}
AND crc_check_chance = 1.0
AND dclocal_read_repair_chance = 0.1
AND default_time_to_live = 0
AND gc_grace_seconds = 864000
AND max_index_interval = 2048
AND memtable_flush_period_in_ms = 0
AND min_index_interval = 128
AND read_repair_chance = 0.0
AND speculative_retry = '99PERCENTILE'; cqlsh:myapp> select * from users where id='小红'; id | favs | name
------+-----------------------+--------
小红 | {'香水': '香奈儿5号'} | 楚小红 (1 rows)
cqlsh:myapp> select * from user where id="小红" ;
SyntaxException: line 1:33 no viable alternative at input ';' (...* from user where id=["小]红" ;)
cqlsh:myapp> select * from users where id="小红" ;
SyntaxException: line 1:34 no viable alternative at input ';' (...* from users where id=["小]红" ;)
cqlsh:myapp> select * from users where id='小红'; id | favs | name
------+-----------------------+--------
小红 | {'香水': '香奈儿5号'} | 楚小红 (1 rows)

具体执行细节见以上,然后不能用双引号,可以用单引号;我也是......

这里where子句查询的是id,我猜是自带索引的,那就换个列查一下:

cqlsh:myapp> select * from users where name='李小明';
InvalidRequest: Error from server: code=2200 [Invalid query] message="Cannot execute this query as it might involve data filtering and thus may have unpredictable performance. If you want to execute this query despite the performance unpredictability, use ALLOW FILTERING"
cqlsh:myapp> select * from users where name='李小明' allow FILTERING; id | favs | name
------+-----------------------------------+--------
小明 | {'fruit': '苹果', '游戏': 'DotA'} | 李小明 (1 rows)

网上说要建索引,可我这里也没有建索引啊

建立索引
cqlsh:myapp> create INDEX on users(name);
cqlsh:myapp> select * from users where name='李小明'; id | favs | name
------+-----------------------------------+--------
小明 | {'fruit': '苹果', '游戏': 'DotA'} | 李小明 (1 rows)

好像建立了索引就不会报上面的那条错误,看来是真的要建立索引啊!

P. S.

各位,我搞错了,原来不用修改cqlsh.py的,在where中查询字符串用单引号就可以不用改文件,加字符设置了,不用~~~~

退出Cassandra

找到pid,然后kill之

ps -aux | grep cassandra

马丹,出来好长一串

以上就是初次使用了,很简单的。

Cassandra安装和初次使用的更多相关文章

  1. Cassandra安装及其简单试用

    官方主页:http://cassandra.apache.org/ 简介: The Apache Cassandra Project develops a highly scalable second ...

  2. Sublime Text3安装以及初次配置

    Sublime Text3安装以及初次配置 工具:官网下载:Sublime Text3 安装:直接运行安装.http://write.blog.csdn.net/postedit 激活:参考文/晚晴幽 ...

  3. NoSql之旅--Cassandra安装篇(一)

    有点迷茫了,头脑中只想起来一句话,"那就去学习吧". 我负责的项目中有一部分用到了Cassandra,当时也看过点,但是并没有太深入的了解,既然"学习劲头"正足 ...

  4. Redis安装,mongodb安装,hbase安装,cassandra安装,mysql安装,zookeeper安装,kafka安装,storm安装大数据软件安装部署百科全书

    伟大的程序员版权所有,转载请注明:http://www.lenggirl.com/bigdata/server-sofeware-install.html 一.安装mongodb 官网下载包mongo ...

  5. 【Tech】Cassandra安装和启动

    1.安装 jre,配置系统环境变量: 2.安装python,配置环境变量: 3.下载cassandra,http://cassandra.apache.org/download/: 4.解压,这里我没 ...

  6. Git起步--git安装与初次运行git前配置

    在你开始使用 Git 前,需要将它安装在你的计算机上. 即便已经安装,最好将它升级到最新的版本. 你可以通过软件包或者其它安装程序来安装,或者下载源码编译安装. 一.Git安装 1. 在linux上安 ...

  7. Ubuntu上装KVM:安装、初次使用

    KVM 是 Linux 内核自带的虚拟机系统, 使用它,你的机器就可以变成几台机了 试用过程如下: 环境: Ubuntu 14.04 64bit 1,  KVM需要CPU硬件支持虚拟化,所以首先要确认 ...

  8. cassandra安装配置

    准备运行环境1.1 cassandra可以安装在windows和linux下,本例子安装在centos6.7的环境下.1.2 关闭防火墙.或者开放9042(默认的CQL本地服务端口).9160(默认的 ...

  9. 转载 | Sublime Text3 安装以及初次配置

    本文引自:http://blog.csdn.net/u011272513/article/details/52088800 工具:官网下载:Sublime Text3 安装:直接运行安装.http:/ ...

随机推荐

  1. Tarjan缩点+LCA【p2783】有机化学之神偶尔会做作弊

    Description 你翻到那一题:给定一个烃,只含有单键(给初中生的一个理解性解释:就是一堆碳用横线连起来,横线都是单条的). 然后炎魔之王拉格纳罗斯用他的火焰净化了一切环(???).所有的环状碳 ...

  2. log4j - 1

    具体内容: 1.       如何在项目中配置log4j使得该系统可以输出web test的日志文件(自定义格式)到工程dist目录下的junitLog/WebTestLog.log目录下,输出508 ...

  3. ACM的奇计淫巧系列

    突然想写个系列,算是总结总结集训中遇到的各种黑科技吧,这是目录 ACM的奇计淫巧_输入挂 ACM的奇计淫巧_扩栈C++/G++ ACM的奇计淫巧_bitset优化

  4. 洛谷 U19159 采摘毒瘤

    题目背景 Salamander见到路边有如此多的毒瘤,于是见猎心喜,从家里拿来了一个大袋子,准备将一些毒瘤带回家. 题目描述 路边共有nn 种不同的毒瘤,第i 种毒瘤有k_i 个,每个需要占据d_i  ...

  5. lua的模式匹配

    模式: 字符类:(character classes) . all characters %a letters %c control characters %d digits %l lower -ca ...

  6. SQL表操作习题1

    建表

  7. 基于Prometheus,Alermanager实现Kubernetes自动伸缩

    到目前为止Kubernetes对基于cpu使用率的水平pod自动伸缩支持比较良好,但根据自定义metrics的HPA支持并不完善,并且使用起来也不方便. 下面介绍一个基于Prometheus和Aler ...

  8. cocos2d-x 2.2.0 图片选中聚焦 ,图片描边 CCClippingNode 实现

    效果例如以下图 左边箭头是x方向翻转的.右边箭头有旋转和缩放action. 大概实现方法:用箭头作为遮罩层,底图是一个绘制的矩形,得到一个黄色箭头背景.在用schedule尾随要聚焦箭头动作.这个 ...

  9. ambari journalnode异常Can't scan a pre-transactional edit log

    今天在删日志文件,不知道删错哪个地方了. 该目录下一直报错,这个日志文件增长很快, /var/log/hadoop/hdfs/ hadoop-hdfs-journalnode-xx.log 先备份/h ...

  10. .NET MVC执行过程 及 生命周期步骤

    1.网址路由比对 2.执行Controller与Action 3.执行View并返回结果 Request 请求到来 IIS 根据请求特征将处理权移交给 ASP.NET UrlRoutingModule ...