今天是openGauss每日一练第21天,感谢有这种形式学习,对新知识的掌握更加夯实。
今天学习存储方式:
- 行存储:是指将表按行存储到硬盘分区上;
- 列存储:是指将表按列存储到硬盘分区上。
默认情况下,创建的表为行存储。行、列存储模型各有优劣,通常用于TP场景的数据库,默认使用行存储,仅对执行复杂查询且数据量大的AP场景时,才使用列存储。
https://opengauss.org/zh/docs/2.1.0/docs/Developerguide/CREATE-TABLE.html
注意事项
- 列存表不支持数组。
- 列存表不支持生成列。
- 列存表不支持创建全局临时表。
- 创建列存表的数量建议不超过1000个。
- 列存表的表级约束只支持PARTIAL CLUSTER KEY、UNIQUE、PRIAMRY KEY,不支持外键等表级约束。
- 列存表的字段约束只支持NULL、NOT NULL、DEFAULT常量值、UNIQUE和PRIMARY KEY。
- 每张表的列数最大为1600,具体取决于列的类型,所有列的大小加起来不能超过8192 byte,text、varchar、char等长度可变的类型除外。
学习笔记:
- 创建列表:
CREATE TABLE test_t2 ( col1 CHAR(2), col2 VARCHAR2(40), col3 NUMBER ) WITH (ORIENTATION = COLUMN);
课程作业
1.创建行存表和列存表,并批量插入10万条数据(行存表和列存表数据相同)
openGauss=# CREATE TABLE t1
openGauss-# (
openGauss(# aa CHAR(2),
openGauss(# bb VARCHAR2(40),
openGauss(# cc NUMBER
openGauss(# );
CREATE TABLE
openGauss=# insert into t1 select col1, col2, col3 from (
openGauss(# select generate_series(1, 100000) as key, repeat(chr(int4(random() * 26) + 65), 2) as col1, repeat(chr(int4(random() * 26) + 65), 30) as col2, (random() * (10^4))::integer as col3);
INSERT 0 100000
openGauss=#
openGauss=# CREATE TABLE t2
openGauss-# (
openGauss(# aa CHAR(2),
openGauss(# bb VARCHAR2(40),
openGauss(# cc NUMBER
openGauss(# ) WITH (ORIENTATION = COLUMN);
CREATE TABLE
openGauss=# insert into t2 values select * from t1;
ERROR: syntax error at or near "select"
LINE 1: insert into t2 values select * from t1;
^
openGauss=# insert into t2 select * from t1;
INSERT 0 100000
openGauss=#
复制
2.对比行存表和列存表空间大小
openGauss=# \d+
List of relations
Schema | Name | Type | Owner | Size | Storage | Description
--------+------------+-------+-------+------------+--------------------------------------+-------------
public | t1 | table | omm | 6760 kB | {orientation=row,compression=no} |
public | t2 | table | omm | 1112 kB | {orientation=column,compression=low} |
复制
3.对比查询一列和插入一行的速度
openGauss=# explain analyze select distinct aa from t1;
QUERY PLAN
----------------------------------------------------------------------------------------------------------------
HashAggregate (cost=2091.00..2091.27 rows=27 width=3) (actual time=31.879..31.882 rows=27 loops=1)
Group By Key: aa
-> Seq Scan on t1 (cost=0.00..1841.00 rows=100000 width=3) (actual time=0.011..15.187 rows=100000 loops=1)
Total runtime: 31.959 ms
(4 rows)
openGauss=# explain analyze select distinct aa from t2;
QUERY PLAN
-----------------------------------------------------------------------------------------------------------------------
Row Adapter (cost=1008.27..1008.27 rows=27 width=3) (actual time=6.479..6.481 rows=27 loops=1)
-> Vector Sonic Hash Aggregate (cost=1008.00..1008.27 rows=27 width=3) (actual time=6.477..6.477 rows=27 loops=1)
Group By Key: aa
-> CStore Scan on t2 (cost=0.00..758.00 rows=100000 width=3) (actual time=0.054..0.536 rows=100000 loops=1)
Total runtime: 8.691 ms
(5 rows)
openGauss=#
openGauss=# explain analyze insert into t1 values('x', 'xxxx', '123');
QUERY PLAN
------------------------------------------------------------------------------------------
[Bypass]
Insert on t1 (cost=0.00..0.01 rows=1 width=0) (actual time=0.111..0.112 rows=1 loops=1)
-> Result (cost=0.00..0.01 rows=1 width=0) (actual time=0.001..0.001 rows=1 loops=1)
Total runtime: 0.184 ms
(4 rows)
openGauss=# explain analyze insert into t2 values('x', 'xxxx', '123');
QUERY PLAN
------------------------------------------------------------------------------------------
Insert on t2 (cost=0.00..0.01 rows=1 width=0) (actual time=9.748..9.750 rows=1 loops=1)
-> Result (cost=0.00..0.01 rows=1 width=0) (actual time=0.001..0.001 rows=1 loops=1)
Total runtime: 9.840 ms
(3 rows)
openGauss=#
复制
4.清理数据
openGauss=# drop table t1;
DROP TABLE
openGauss=# drop table t2;
DROP TABLE
复制
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。
评论
相关阅读
openGauss荣获中国软件行业协会多奖项,技术升级再创行业新高度
openGauss
562次阅读
2025-04-30 14:30:58
MogDB 发布更新,解决 openGauss 数据库在长事务情况下Ustore表膨胀问题
MogDB
309次阅读
2025-04-17 10:41:41
MogDB 发布更新,解决 openGauss 数据库在长事务情况下Ustore表膨胀问题
云和恩墨
202次阅读
2025-04-16 09:52:02
GitCode 成 openGauss 新归宿,国产开源数据库里程碑事件
严少安
176次阅读
2025-04-27 11:37:53
荣誉时刻!openGauss认证证书快递已发,快来看看谁榜上有名!
墨天轮小教习
165次阅读
2025-04-23 17:39:13
单个执行机并行执行MySQL到openGauss数据迁移子任务
Clipnosis
151次阅读
2025-04-30 16:39:58
Postgresql数据库单个Page最多存储多少行数据
maozicb
97次阅读
2025-04-23 16:02:19
openGauss6.0.0适配操作系统自带的软件,不依赖三方库
来杯拿铁
96次阅读
2025-04-18 10:49:53
openGauss新特性 | openGauss-DataVec向量数据库特性介绍
openGauss
68次阅读
2025-04-17 10:41:47
RISC-V 首迎 openGauss 7.0.0-RC1 全量版适配!数据库核心功能完整落地开源架构
openGauss
51次阅读
2025-04-16 10:33:59