标签

PostgreSQL , 10.0 , 金秋 , 元旦 , 大礼包 , commitfest


背景

早上送给大家的新年大礼包,一年一个大版本是PostgreSQL社区的传统,虽然发布时间通常为秋天,还有一段时间,但是已经迫不及待地想看看2017金秋将要发布的10.0版本已经装备了哪些核武器。

放心,还会有一波又一波的feature和增强搭上开往2017金秋的列车,本文提到的可能只是其中的某一节车厢沃,PGer是不是开始有一点振奋人心的感觉啦。

1. 并行计算专属动态共享内存区,(加速索引扫描\外部表并行的支持步伐)

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=e13029a5ce353574516c64fd1ec9c50201e705fd

Provide a DSA area for all parallel queries.  This will allow future parallel query code to dynamically allocate
storage shared by all participants.  Thomas Munro, with assorted changes by me.

Parallel tuplesort (for parallel B-Tree index creation)

https://commitfest.postgresql.org/12/690/

Parallel bitmap heap scan

https://commitfest.postgresql.org/12/812/

Parallel Index Scans

https://commitfest.postgresql.org/12/849/

Parallel Merge Join

https://commitfest.postgresql.org/12/918/

Parallel Append implementation

https://commitfest.postgresql.org/12/929/

parallelize queries containing subplans

https://commitfest.postgresql.org/12/941/

2. 多副本新增 "任意节点、顺序" 两种模式自由选择

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=3901fd70cc7ccacef1b0549a6835bb7d8dcaae43

Support quorum-based synchronous replication.  This feature is also known as "quorum commit" especially in discussion
on pgsql-hackers.  This commit adds the following new syntaxes into synchronous_standby_names
GUC. By using FIRST and ANY keywords, users can specify the method to
choose synchronous standbys from the listed servers.  FIRST num_sync (standby_name [, ...])  ANY num_sync (standby_name [, ...])  The keyword FIRST specifies a priority-based synchronous replication
which was available also in 9.6 or before. This method makes transaction
commits wait until their WAL records are replicated to num_sync
synchronous standbys chosen based on their priorities.  The keyword ANY specifies a quorum-based synchronous replication
and makes transaction commits wait until their WAL records are
replicated to *at least* num_sync listed standbys. In this method,
the values of sync_state.pg_stat_replication for the listed standbys
are reported as "quorum". The priority is still assigned to each standby,
but not used in this method.  The existing syntaxes having neither FIRST nor ANY keyword are still
supported. They are the same as new syntax with FIRST keyword, i.e.,
a priorirty-based synchronous replication.  Author: Masahiko Sawada
Reviewed-By: Michael Paquier, Amit Kapila and me
Discussion: <CAD21AoAACi9NeC_ecm+Vahm+MMA6nYh=Kqs3KB3np+MBOS_gZg@mail.gmail.com>  Many thanks to the various individuals who were involved in
discussing and developing this feature.

3. 添加会话级临时replication slots支持

(原来slot是为长时间使用设计,如STANDBY。 对于一些测试、针对性复制场景,不再需要担心忘记删除slot带来的问题了)

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=a924c327e2793d2025b19e18de7917110dc8afd8

Add support for temporary replication slots  This allows creating temporary replication slots that are removed
automatically at the end of the session or on error.  From: Petr Jelinek <petr.jelinek@2ndquadrant.com>

4. 认证协议会更加安全(SCRAM)

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=e7f051b8f9a6341f6d3bf80b29c1dbc1837be9ab

Refactor the code for verifying user's password.  Split md5_crypt_verify() into three functions:
* get_role_password() to fetch user's password from pg_authid, and check  its expiration.
* md5_crypt_verify() to check an MD5 authentication challenge
* plain_crypt_verify() to check a plaintext password.  get_role_password() will be needed as a separate function by the upcoming
SCRAM authentication patch set. Most of the remaining functionality in
md5_crypt_verify() was different for MD5 and plaintext authentication, so
split that for readability.  While we're at it, simplify the *_crypt_verify functions by using
stack-allocated buffers to hold the temporary MD5 hashes, instead of
pallocing.  Reviewed by Michael Paquier.

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=babe05bc2b781eb3eb84a18d7010d08277e2e399

Turn password_encryption GUC into an enum.  This makes the parameter easier to extend, to support other password-based
authentication protocols than MD5. (SCRAM is being worked on.)  The GUC still accepts on/off as aliases for "md5" and "plain", although
we may want to remove those once we actually add support for another
password hash type.  Michael Paquier, reviewed by David Steele, with some further edits by me.  Discussion: <CAB7nPqSMXU35g=W9X74HVeQp0uvgJxvYOuA4A-A3M+0wfEBv-w@mail.gmail.com>

https://postgrespro.com/docs/postgresproee/9.6/auth-methods.html#auth-password

21.3.2. Password Authentication  The password-based authentication methods are md5, scram, and password. These methods operate similarly except for the way that the password is sent across the connection, namely MD5-hashed, SCRAM-SHA-256 and clear-text respectively.  If you are at all concerned about password “sniffing” attacks then md5 is preferred. Plain password should always be avoided if possible. However, md5 cannot be used with the db_user_namespace feature. If the connection is protected by SSL encryption then password can be used safely (though SSL certificate authentication might be a better choice if one is depending on using SSL).  scram has more advantages than md5 as it protects from cases where the hashed password is taken directly from pg_authid in which case a connection using only the stolen hash is possible without knowing the password behind it. It protects as well from password interception and data sniffing where the password data could be directly obtained from the network as well as man-in-the-middle (MITM) attacks. So it is strongly encouraged to use it over md5 for password-based deployments.  Postgres Pro Enterprise database passwords are separate from operating system user passwords. The password for each database user is stored in the pg_authid system catalog. Passwords can be managed with the SQL commands CREATE USER and ALTER ROLE, e.g., CREATE USER foo WITH PASSWORD 'secret'. If no password has been set up for a user, the stored password is null and password authentication will always fail for that user.

5. Support for SCRAM-SHA-256

https://commitfest.postgresql.org/12/829/

6. 分区、多级分区支持

《PostgreSQL 10.0 内置分区表》

此前,我们可以使用pg_pathman插件来实现高性能多级分区

《PostgreSQL 9.5+ 高效分区表实现 - pg_pathman》

《PostgreSQL 9.6 sharding based on FDW & pg_pathman》

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=f0e44751d7175fa3394da2c8f85e3ceb3cdbfe63

Implement table partitioning.  Table partitioning is like table inheritance and reuses much of the
existing infrastructure, but there are some important differences.
The parent is called a partitioned table and is always empty; it may
not have indexes or non-inherited constraints, since those make no
sense for a relation with no data of its own.  The children are called
partitions and contain all of the actual data.  Each partition has an
implicit partitioning constraint.  Multiple inheritance is not
allowed, and partitioning and inheritance can't be mixed.  Partitions
can't have extra columns and may not allow nulls unless the parent
does.  Tuples inserted into the parent are automatically routed to the
correct partition, so tuple-routing ON INSERT triggers are not needed.
Tuple routing isn't yet supported for partitions which are foreign
tables, and it doesn't handle updates that cross partition boundaries.  Currently, tables can be range-partitioned or list-partitioned.  List
partitioning is limited to a single column, but range partitioning can
involve multiple columns.  A partitioning "column" can be an
expression.  Because table partitioning is less general than table inheritance, it
is hoped that it will be easier to reason about properties of
partitions, and therefore that this will serve as a better foundation
for a variety of possible optimizations, including query planner
optimizations.  The tuple routing based which this patch does based on
the implicit partitioning constraints is an example of this, but it
seems likely that many other useful optimizations are also possible.  Amit Langote, reviewed and tested by Robert Haas, Ashutosh Bapat,
Amit Kapila, Rajkumar Raghuwanshi, Corey Huinker, Jaime Casanova,
Rushabh Lathia, Erik Rijkers, among others.  Minor revisions by me.  Discussion: https://www.postgresql.org/message-id/3029e460-d47c-710e-507e-d8ba759d7cbb@iki.fi

7. 聚合运算减少context切换

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=8ed3f11bb045ad7a3607690be668dbd5b3cc31d7

Perform one only projection to compute agg arguments.  Previously we did a ExecProject() for each individual aggregate
argument. That turned out to be a performance bottleneck in queries with
multiple aggregates.  Doing all the argument computations in one ExecProject() is quite a bit
cheaper because ExecProject's fastpath can do the work at once in a
relatively tight loop, and because it can get all the required columns
with a single slot_getsomeattr and save some other redundant setup
costs.  Author: Andres Freund
Reviewed-By: Heikki Linnakangas
Discussion: https://postgr.es/m/20161103110721.h5i5t5saxfk5eeik@alap3.anarazel.de

8. hash index增强

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=6d46f4783efe457f74816a75173eb23ed8930020

Improve hash index bucket split behavior.  Previously, the right to split a bucket was represented by a
heavyweight lock on the page number of the primary bucket page.
Unfortunately, this meant that every scan needed to take a heavyweight
lock on that bucket also, which was bad for concurrency.  Instead, use
a cleanup lock on the primary bucket page to indicate the right to
begin a split, so that scans only need to retain a pin on that page,
which is they would have to acquire anyway, and which is also much
cheaper.  In addition to reducing the locking cost, this also avoids locking out
scans and inserts for the entire lifetime of the split: while the new
bucket is being populated with copies of the appropriate tuples from
the old bucket, scans and inserts can happen in parallel.  There are
minor concurrency improvements for vacuum operations as well, though
the situation there is still far from ideal.  This patch also removes the unworldly assumption that a split will
never be interrupted.  With the new code, a split is done in a series
of small steps and the system can pick up where it left off if it is
interrupted prior to completion.  While this patch does not itself add
write-ahead logging for hash indexes, it is clearly a necessary first
step, since one of the things that could interrupt a split is the
removal of electrical power from the machine performing it.  Amit Kapila.  I wrote the original design on which this patch is
based, and did a good bit of work on the comments and README through
multiple rounds of review, but all of the code is Amit's.  Also
reviewed by Jesper Pedersen, Jeff Janes, and others.  Discussion: http://postgr.es/m/CAA4eK1LfzcZYxLoXS874Ad0+S-ZM60U9bwcyiUZx9mHZ-KCWhw@mail.gmail.com

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=f0e72a25b05d4c29d0102fa0b892782ff193a00e

Improve handling of dead tuples in hash indexes.  When squeezing a bucket during vacuum, it's not necessary to retain
any tuples already marked as dead, so ignore them when deciding which
tuples must be moved in order to empty a bucket page.  Similarly, when
splitting a bucket, relocating dead tuples to the new bucket is a
waste of effort; instead, just ignore them.  Amit Kapila, reviewed by me.  Testing help provided by Ashutosh
Sharma.

9. 支持进程级条件变量,简化sleep\wakeup设计

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=e8ac886c24776295dd9b025386a821061da8e4d1

Support condition variables.  Condition variables provide a flexible way to sleep until a
cooperating process causes an arbitrary condition to become true.  In
simple cases, this can be accomplished with a WaitLatch/ResetLatch
loop; the cooperating process can call SetLatch after performing work
that might cause the condition to be satisfied, and the waiting
process can recheck the condition each time.  However, if the process
performing the work doesn't have an easy way to identify which
processes might be waiting, this doesn't work, because it can't
identify which latches to set.  Condition variables solve that problem
by internally maintaining a list of waiters; a process that may have
caused some waiter's condition to be satisfied must "signal" or
"broadcast" on the condition variable.  Robert Haas and Thomas Munro

10. 支持聚合运算下推至sharding节点(postgres_fdw增强)

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=7012b132d07c2b4ea15b0b3cb1ea9f3278801d98

postgres_fdw: Push down aggregates to remote servers.  Now that the upper planner uses paths, and now that we have proper hooks
to inject paths into the upper planning process, it's possible for
foreign data wrappers to arrange to push aggregates to the remote side
instead of fetching all of the rows and aggregating them locally.  This
figures to be a massive win for performance, so teach postgres_fdw to
do it.  Jeevan Chalke and Ashutosh Bapat.  Reviewed by Ashutosh Bapat with
additional testing by Prabhat Sahu.  Various mostly cosmetic changes
by me.

Push down more full joins in postgres_fdw

https://commitfest.postgresql.org/12/727/

11. 支持流式备份时,同时备份数据文件与REDO文件

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=56c7d8d4552180fd66fe48423bb2a9bb767c2d87

Allow pg_basebackup to stream transaction log in tar mode  This will write the received transaction log into a file called
pg_wal.tar(.gz) next to the other tarfiles instead of writing it to
base.tar. When using fetch mode, the transaction log is still written to
base.tar like before, and when used against a pre-10 server, the file
is named pg_xlog.tar.  To do this, implement a new concept of a "walmethod", which is
responsible for writing the WAL. Two implementations exist, one that
writes to a plain directory (which is also used by pg_receivexlog) and
one that writes to a tar file with optional compression.  Reviewed by Michael Paquier

12. 分布式事务

https://commitfest.postgresql.org/12/853/

13. Twophase transactions on slave, take 2

https://commitfest.postgresql.org/12/915/

14. Scan key push down to heap

https://commitfest.postgresql.org/12/850/

15. 间接索引

indirect indexes

https://commitfest.postgresql.org/12/874/

16. Logical Replication

https://commitfest.postgresql.org/12/836/

实际上9.4开始就已经支持了,通过外部插件+逻辑流复制来实现,但是没有整合到内核中

值得期待的10.0,一起等风来 - 2017金秋

参考

1. https://commitfest.postgresql.org/

2. http://git.postgresql.org/

3. https://git.postgresql.org/gitweb/?p=postgresql.git;a=summary

元旦技术大礼包 - 2017金秋将要发布的PostgreSQL 10.0已装备了哪些核武器?相关推荐

  1. 鸿蒙系统8xmax,华为8月9日发布基于安卓10.0全新系统:自主鸿蒙会同台亮相

    7月27日消息,对于即将开幕的华为开发者大会,华为终端官方再次给出消息称,在8月9日首天的大会上,他们将发布新一代基于Android Q(也叫做Android 10.0)的手机系统EMUI 10.0. ...

  2. 鸿蒙系统荣耀8xmax,华为8月9日发布基于安卓10.0全新系统 自主鸿蒙会同台亮相

    原标题:华为8月9日发布基于安卓10.0全新系统 自主鸿蒙会同台亮相 7月27日消息,对于即将开幕的华为开发者大会,华为终端官方再次给出消息称,在8月9日首天的大会上,他们将发布新一代基于Androi ...

  3. 百度输入法发布AI版本10.0,重磅推出“AI助聊”功能

    近日,拥有深厚AI实力.相关功能落地广泛的百度输入法迎来年度重大AI版本10.0发布,在领先的自然语言处理等AI能力加持下重磅推出"AI助聊"功能.升级后的百度输入法将更懂用户所想 ...

  4. Apache发布NetBeans 10.0,增强对JDK 11的支持

    Apache软件基金会最近发布了NetBeans 10.0,主要特性包括增强对JDK 11的支持.添加对JUnit 5的支持以及重新集成了PHP.JavaScript和Groovy模块.在路线图上,A ...

  5. ​苏宁回应股权质押给淘宝:正常合作;苹果App Store被越狱商店指控垄断;Docker 20.10.0发布|极客日报...

    整理 | 郑丽媛 头图 | CSDN 下载自东方 IC 快来收听极客头条音频版吧,智能播报由出门问问「魔音工坊」提供技术支持. 「极客头条」-- 技术人员的新闻圈! CSDN 的读者朋友们早上好哇,「 ...

  6. 支付宝集五福下周一开始;iPhone 面世 13 周年;Laravel 6.10.0 发布 | 极客头条

    整理 | 屠敏 快来收听极客头条音频版吧,智能播报由标贝科技提供技术支持. 「极客头条」-- 技术人员的新闻圈! CSDN 的读者朋友们早上好哇,「极客头条」来啦,快来看今天都有哪些值得我们技术人关注 ...

  7. 极客日报第 28 期:苹果为取代高通芯片,开始研发蜂窝网调制解调器;Docker 20.10.0 发布

    文章目录 互联网快讯 程序员专属 Github 每日精选 CSDN 社区优质博文精选 互联网快讯 1.360 周鸿祎:用户对个人信息使用应享有知情权.选择权 近日,360 集团董事长兼 CEO 周鸿祎 ...

  8. 安卓10和android区别,华为8月9日发布安卓10.0系统 华为EMUI 10.0功能及适配机型 华为安卓系统和鸿蒙OS区别...

    华为8月9日发布安卓10.0系统 华为EMUI 10.0功能及适配机型 华为安卓系统和鸿蒙OS区别 根据最新消息显示,华为终端官方再次给出消息称,在8月9日华为开发者大会首天,他们将发布新一代基于An ...

  9. 一加7android版本,一加7/7 Pro手机发布基于安卓10的氢OS公测版,附下载包、更新内容大全...

    IT之家9月13日消息 一加论坛今天下午发布[Android 10.0公测版]H2OS For OnePlus 7/7Pro第1版更新公告,本次更新一加7系列迎来了基于全新Android10.0的氢O ...

最新文章

  1. poj1741(树的点分治)
  2. vb操作excel图表_EXCEL的简单介绍(嗯,文本版的)
  3. 程序员,你喜欢抽哪种香烟?(python数据分析)
  4. 利用cx_Freeze将py文件打包成exe文件(图文全解)(转帖)
  5. percona mysql.cnf_Percona MySQL5.6 半同步复制
  6. c语言实现各种排序,c语言实现各种排序算法
  7. spring import resource 文件后bean找不到问题解决
  8. python 卷积神经网络 应用_卷积神经网络在目标定位中的应用
  9. SQL Server 触发器触发器
  10. php调取 zabbix实时数据_Zabbix监控系统部署详细步骤
  11. hive不在同一台机 hue_【Impala篇】---Hue从初始到安装应用
  12. 字母’x’在CSS世界中的角色和故事
  13. HDU 1880 魔咒词典
  14. 北京市基本医疗保险定点医院名单
  15. 又订阅了万维刚的精英日课
  16. java计算机毕业设计特色农产品供需销售系统源码+数据库+系统+lw文档+mybatis+运行部署
  17. 从零开始学WEB前端——JavaScript数据类型
  18. wordpress备份和还原和迁移
  19. 刘强东的“毛乌素”之斗
  20. 智能语音机器人智能在哪里?

热门文章

  1. 《Vue.js实战》第七章.组件
  2. 3个月周末,软考高级复习攻略,信息系统项目管理师考后总结
  3. 你绝对没用过的三电源切换电路
  4. 「企企通」完成Pre-D轮融资,加速采购供应链工业软件和 SaaS 网络生态构建
  5. Linux进程信号——信号的产生
  6. Turtlebot3 buger在仿真环境下建图导航
  7. 健身不用再做一整套动作!最新研究:只做离心收缩就行,最终效果差别不大,还长了更多肌肉...
  8. iOS扫一扫功能开发
  9. word2019输入文字时很卡解决方法。
  10. Terminator的快捷键操作