centos7.3下ScyllaDB1.6安裝

ScyllaDB 安裝配置

1.說明:
scylladb支持centos7.2 64位 及以上版本
相關信息:http://docs.scylladb.com/getting-started/centos_rpm/#

2.安裝
sudo yum remove -y abrt
sudo yum install epel-release wget
sudo wget -O /etc/yum.repos.d/scylla.repo http://downloads.scylladb.com/rpm/centos/scylla-1.6.repo
sudo yum install scylla
sudo scylla_setup

Do you want to run kernel version check?
[YES/no]yes

Do you verify ScyllaDB packages installed?
[YES/no]yes

Do you want to enable ScyllaDB services?
[YES/no]no //這一步配置服務是否開機啓動

Do you want to disable SELinux?
[YES/no]yes

Do you want to setup bootloader options?
[YES/no]yes

Do you want to setup NTP?
[YES/no]no

Do you want to setup RAID and XFS?
[YES/no]yes //是否配置單獨的XFS分區作爲RAID #測試時可以選no

> /dev/sdb1 
/dev/sda1 /dev/sdb type ‘done’ to finish selection. selected: /dev/sdb
> done

Do you want to setup coredump?
[YES/no]yes

Do you want to setup sysconfig?
[YES/no]yes
> eth1 //這個網口將被DPDK接管
。
Do you want to optimize NIC queue settings?

Do you want to setup IO configuration?
[YES/no]yes 

Do you want to install node exporter, that exports prometheus data from the node?
[YES/no]yes

ScyllaDB setup finished.

啓動服務:sudo systemctl start scylla-server.service
查看:nodetool status
進入數據庫環境:cqlsh

###################################################
操作:
keyspace有兩種策略:
create KEYSPACE rootdata2 WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 2};	     #複製策略:SimpleStrategy,冗餘2份數據:
CREATE KEYSPACE rootdata2 WITH REPLICATION = { 'class' : 'NetworkTopologyStrategy', 'dc1' :3 };         #複製策略:NetworkTopologyStrategy,冗餘3份數據(配置可用)

查看key:
describe rootdata2;

使用rootdata2創建表:
use rootdata2;
create table blog(id timeuuid , title text, content text, tags list<text>, category text, primary key(id));
INSERT INTO  blog (id, title , tags ) VALUES ( now(), 'cassandra table test', ['cassandra','table']);
INSERT INTO  blog (id, title , tags ) VALUES ( now(), 'cassandra table test', ['cassandra','table']) USING TTL 222;

刪除單個keyspace:
drop keyspace rootdata;
####################################################


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章