ClickHouse 是俄罗斯的Yandex于2016年开源的列式存储数据库(DBMS),主要用于在线分析处理查询(OLAP),能够使用SQL查询实时生成分析数据报告。
##1.2 什么是列式存储 以下面的表为例:
Id | Name | Age |
---|---|---|
1 | 张三 | 18 |
2 | 李四 | 22 |
3 | 王五 | 34 |
采用行式存储时,数据在磁盘上的组织结构为:
1 张三 18 2 李四 22 3 王五 34
好处是想查某个人所有的属性时,可以通过一次磁盘查找加顺序读取就可以。但是当想查所有人的年龄时,需要不停的查找,或者全表扫描才行,遍历的很多数据都是不需要的。
而采用列式存储时,数据在磁盘上的组织结构为:
1 2 3 张三 李四 王五 18 22 34
这时想查所有人的年龄只需把年龄那一列拿出来就可以了
在 /etc/security/limits.conf
、/etc/security/limits.d/90-nproc.conf
这 2 个文件的末尾加入一下内容:
[root@kino100 software]# vim /etc/security/limits.conf
在文件末尾添加:
* soft nofile 65536
* hard nofile 65536
* soft nproc 131072
* hard nproc 131072
[root@kino100 software]# vim /etc/security/limits.d/90-nproc.conf
在文件末尾添加:
* soft nofile 65536
* hard nofile 65536
* soft nproc 131072
* hard nproc 131072
重启服务器之后生效,用 ulimit -n
或者 ulimit -a
查看设置结果
[root@kino100 ~]# ulimit -n
65536
修改 /etc/selinux/config
中的 SELINUX=disabled
后重启
[root@kino100 ~]# vim /etc/selinux/config
SELINUX=disabled
[root@kino100 ~]# service iptables stop
[root@kino100 ~]# service ip6tables stop
ip6tables:将 chains 设置为 ACCEPT 策略:filter [确定]
ip6tables:清除防火墙规则: [确定]
:正在卸载模块: [确定]
[root@kino100 ~]# yum install -y libtool
[root@kino100 ~]# yum install -y *unixODBC*