m6米乐安卓版下载-米乐app官网下载
暂无图片
20

opengauss/mogdb/postgresql对比学习 -m6米乐安卓版下载

原创 多比爸比 2021-12-03
2354

本文将从日常使用的角度对比学习国产数据库opengauss/mogdb与开源数据库postgresql之间的差异点。

1.服务的启动模式

在主备场景下,pg服务启动命令不区分角色,mogdb服务启动需要指定启动模式,参考如下链接:
《opengauss/mogdb数据库服务启动模式分析》

2.服务的关闭模式

postgresql

smart quit after all clients have disconnected
fast quit directly, with proper shutdown (default)
immediate quit without complete shutdown; will lead to recovery on restart

opengauss/mogdb

fast quit directly, with proper shutdown
immediate quit without complete shutdown; will lead to recovery on restart

smart模式下,数据库会等待所有的客户端链接主动断开连接,此时数据库服务不允许接受新连接请求,但允许现有连接继续操作,直到所有连接都主动退出之后,数据库主进程才会发送sigusr2信号给checkpointer进程去执行shutdown checkpoint类型的检查点。这样所有客户端连接提交的数据都已刷盘,下次pg启动时不需要做crash恢复。

fast模式是默认关闭方式,这种模式下数据库会通过发送sigterm信息来立刻终止所有打开的事务,同时也不允许接受新的连接请求。终止客户端连接之后也会发起shutdown checkpoint类型的检查点来避免下次启动服务时做restart point。这种模式也是生产中推荐的使用方式,会终止当前的客户端连接。

immediate模式,这种模式数据库会强制关闭相关进程,数据库主进程会发送sigquit信号给所有进程强制退出。这样情况下数据库关闭之前并没有做一次干净的checkpoint操作。下次服务启动需要从事务日志文件读取最后一次提交的位点及最后一次checkpoint位点之间的事务日志来做apply,刷新到磁盘数据文件(注意:这里的数据文件是指data file,不是xlog file)。

上述三种模式,smart其实极少使用,生产通常也是使用fast模式,immediate模式只有在紧急情况下才会考虑。

3.xlog

由于历史原因,pg对xlog的命名更新为了wal,包括相应的二进制工具、命令参数、系统相关函数等。

例如查看事务日志点位信息

postgresql

postgres=# select pg_current_wal_lsn();
 pg_current_wal_lsn 
--------------------
 0/174e780
(1 row)

opengauss/mogdb

opengauss=# select pg_current_xlog_location();
 pg_current_xlog_location 
--------------------------
 0/22331c0
(1 row)

mogdb设置xlog目录路径设置的几种方式可以参考:《mogdb数据库安装部署之xlog目录设置》

4.归档

归档开关参数都是archive_mode,但是归档命令参数有区别。

postgresql

archive_command = 'cp %p /opt/archive/%f'

pg里面是配置archive_command参数,可以配置shell命令。

opengauss/mogdb

archive_dest='/opt/archive'

mogdb是配置archive_dest参数,直接配置归档路径即可。

5.public模式的使用权限

postgresql

pg里面创建的用户默认是具有public模式的使用及创建权限,owner用户可以管理自己的对象。

postgres=> select * from pg_namespace where nspname='public' ;
 oid  | nspname | nspowner |               nspacl                
------ --------- ---------- -------------------------------------
 2200 | public  |       10 | {postgres=uc/postgres,=uc/postgres}
(1 row)

上面从schema元数据列nspacl也可以看到默认是具有uc权限(u:usage,c create)

opengauss/mogdb

gs_initdb初始化时使用-s, --security后,用户默认将不具有public模式的使用权限。

opengauss=#  select nspacl from pg_namespace where nspname='public' ;
    nspacl    
--------------
 {omm=uc/omm}
(1 row)

上面从schema元数据列nspacl也可以看到默认不具有模式的使用权限。

下面进行测试,可以看到有报错提示

opengauss=# \c - test
password for user test: 
non-ssl connection (ssl connection is recommended when requiring high-security)
you are now connected to database "postgres" as user "test".
opengauss=> create table public.t(id int);
error:  permission denied for schema public
detail:  n/a

6.ssl

《mogdb数据库与postgresql对比测试ssl之自签名私有证书测试》
《mogdb数据库与postgresql对比测试ssl之自签名ca证书单向认证测试》
《mogdb数据库与postgresql对比测试ssl之自签名ca证书双向认证测试》

简单总结如下,详细测试对比参考上面的文章链接。

  • postgresql需要编译支持openssl,而opengauss/mogdb已经内置支持。
  • opengauss/mogdb不会识别openssl默认配置文件,需要显示指定openssl.cnf文件路径,否则会报错找不到配置文件。
  • opengauss/mogdb与postgresql对clientcert=verify-full认证支持有差异。

7.sha256口令加密

用户口令加密的参数名称有区别,同时sha256算法有不同的实现,互相不兼容。

postgresql

password_encryption = 'scram-sha-256'

pg里面是配置password_encryption参数,可以配置md5或者scram-sha-256。

opengauss/mogdb

password_encryption_type=1

mogdb是配置password_encryption_type参数,0 只支持标准的md5口令存储,与pg保持兼容,1 支持md5和国密的sha256,2 只支持国密sha256,不兼容pg。

8.copy

copy的分隔符:

postgresql

postgres=# \copy t to t.dat delimiter '@$'
error:  copy delimiter must be a single one-byte character

opengauss/mogdb

image.png

copy的容错机制

opengauss/mogdb

表结构

create temp table foo (a bigint, b text);

数据文件tab.dat

 1	one
 2	
 3	three	111
 four    4
 5	five

普通的copy导入,因为有多余的数据项会报错

omm=# copy foo from '/home/omm/tab.dat';
error:  extra data after last expected column
context:  copy foo, line 3: " 3	three	111"

copy使用ignore_extra_data忽略多余的列

omm=#  copy foo from '/home/omm/tab.dat' with(ignore_extra_data);
error:  invalid input syntax for type bigint: " four    4"
context:  copy foo, line 4, column a: " four    4"

copy使用log_errors和reject_limit

omm=#  copy foo from '/home/omm/tab.dat' with(ignore_extra_data,log_errors,reject_limit 'unlimited');
copy 4

reject_limit参数对copy from的容错机制设置数值上限,一旦错误数据超过选项指定条数,则会按照原有机制报错。取值范围:正整数(1-intmax),‘unlimited’(无最大值限制)
此时已经导入成功了4条数据,可以从下面的查询看出。

omm=# select * from foo;
 a |   b   
--- -------
 1 | one
 2 | 
 3 | three
 5 | five
(4 rows)

还有一条报错的信息记录在系统自动创建的pgxc_copy_error_log表中。

omm=# \x
expanded display is on.
omm=# select * from pgxc_copy_error_log ;
-[ record 1 ]-------------------------------------------------
relname   | pg_temp_gaussdb_8_1_140368156813056.foo
begintime | 2021-06-27 11:29:00.529073 00
filename  | /home/omm/tab.dat
lineno    | 4
rawrecord | 
detail    | invalid input syntax for type bigint: " four    4"

上面rawrecord是没有内容的,使用log_errors_data替代log_errors会记录rawrecord

truncate table pgxc_copy_error_log;
truncate table foo;
copy foo from '/home/omm/tab.dat' with(ignore_extra_data,log_errors_data,reject_limit 'unlimited');
omm=# select * from pgxc_copy_error_log ;
-[ record 1 ]-------------------------------------------------
relname   | pg_temp_gaussdb_8_1_140368156813056.foo
begintime | 2021-06-27 11:34:34.104653 00
filename  | /home/omm/tab.dat
lineno    | 4
rawrecord |  four    4
detail    | invalid input syntax for type bigint: " four    4"

9.upsert(insert or update)

postgresql

create table test_upsert (id int primary key, info varchar);
postgres=# insert into test_upsert  (id,info) 
postgres-# values (1,'aaa');
insert 0 1

下面插入主键重复的数据

postgres=# insert into test_upsert  (id,info) 
postgres-# values (1,'bbb');
error:  duplicate key value violates unique constraint "test_upsert_pkey"
detail:  key (id)=(1) already exists.

不使用upsert语法,会报错返回给客户端,不太友好

postgres=# insert into test_upsert  (id,info) 
postgres-# values (1,'bbb') 
postgres-# on conflict(id) do update set info=excluded.info;
insert 0 1
postgres=# select * from test_upsert;
 id | info 
---- ------
  1 | bbb
(1 row)

使用upsert语法,有冲突时可选择do nothing跳过或者do update覆盖更新

opengauss/mogdb

omm=# create table test_upsert (id int primary key, info varchar);
notice:  create table / primary key will create implicit index "test_upsert_pkey" for table "test_upsert"
create table
omm=# insert into test_upsert  (id,info) 
values (1,'aaa');omm-# 
insert 0 1
omm=# insert into test_upsert  (id,info) 
values (1,'bbb'); 
error:  duplicate key value violates unique constraint "test_upsert_pkey"
detail:  key (id)=(1) already exists.
omm=# insert into test_upsert  (id,info) 
values (1,'bbb')
 on duplicate key  update  info=excluded.info;
insert 0 1
omm=# select * from test_upsert;
 id | info 
---- ------
  1 | bbb
(1 row)

10.分区表

《opengauss/mogdb数据库postgresql表分区语法测试》

简单总结如下,详细测试对比参考上面的文章链接。

  • opengauss/mogdb目前只支持声明式分区,支持范围分区、列表分区、哈希分区以及interval-range的自动扩展间隔分区。postgresql支持继承及声明式分区,不支持自动扩展间隔分区。
  • 自动扩展间隔分区的分区字段目前只支持时间类型(date或timestamp)。
  • opengauss/mogdb目前不支持子分区,pg支持声明式子分区。
  • 对于声明式分区的分区来说,分区必须具有和分区表正好相同的列集合,表结构必须严格一致,而在表继承中,子表可以有父表中没有出现过的额外列,同时表继承允许多继承。
最后修改时间:2022-10-22 12:48:48
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
2人已赞赏
【米乐app官网下载的版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论

网站地图