PostgreSQL 13 new feature

PostgreSQL 13 new featurehttps://www.postgresql.org/docs/13/release-13.html 1. A big performance leap from 10 to 11. No much…

PostgreSQL 13 new feature

https://www.postgresql.org/docs/13/release-13.html

1. A big performance leap from 10 to 11. No much difference between 11 and 12 in terms of performance

2. Vacuum, Security and Consistency, Partition-wise join

3. Vacuum

   – performance for parallel vacuum of indexes

   – Auto vacuum for append-only transacitons

4. Security and Consistency

   – libpq channel binding

     * stop man in the middle attacks

    * Only for SCRAM authentication

   – New capability for pg_catcheck

     * tool for detect the catalog corruption

5. partition-wise join

6. logical replication for partitioned table. from partitioned to non-partitioned and vice versa

7. Backup manifests. part of pg_backbackup.

   – new tool: pg_verifybackup – read manifects and verify the backups

8.Monitoring

Allow EXPLAIN, auto_explain, autovacuum, and pg_stat_statements to track WAL usage statistics

9.General Performance

Allow hash aggregation to use disk storage for large aggregation result sets

 PPAS

– Partition automation: automatically create partitions when needed without locking

– Interval partition

– Automatic partition for LIST. When enabled, inserting a value not in the initial list, a new partition will be created to accommodate the new value

– Automatic HASH partitioning: PARTITIONS <number> STORE IN <tablespaces>. HASH would be distributed automatically across the specified tablespaces

– EDB*Loader. If any duplicate row, the operation can be configured not to abort but record the duplicated one into BAD file

– Add more Oracle-compatible features

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/6849.html

(0)
上一篇 2023-04-01
下一篇 2023-04-01

相关推荐

  • Python Unicode编码转换成字符

    Python Unicode编码转换成字符Python是一种强大的编程语言,同时也是一种易学易用的语言。在Python中,Unicode编码是一种常见的字符编码格式。Unicode可以将所有字符转换为唯一的数字代码点,这使得在不同的计算机系统中共享和读取文本数据变得方便和容易。

    2024-05-28
    61
  • Python EOF错误调试指南

    Python EOF错误调试指南Python是一种强大的编程语言,使用广泛。但是,无论你是新手还是资深程序员,你都可能会遇到“EOF错误”。

    2024-06-24
    45
  • 用Python编写自动化脚本

    用Python编写自动化脚本在软件开发和系统运维工作中,自动化脚本是每位工程师都需要掌握的技能。自动化脚本可以充分减轻工程师的负担,提高效率,并且可以避免一些重复性的劳动。Python作为一种高级编程语言,已经成为众多程序员的首选语言之一,也是一种十分适合编写自动化脚本的语言。

    2024-06-30
    49
  • Mysql快速找回root密码妙招「建议收藏」

    Mysql快速找回root密码妙招「建议收藏」目前B站正在直播Mysql、Oracle实战,详情关注公众号:IT邦德 QQ群:955286955、168797397 一、Mysql root用户密码忘记 (8.0以下) 1.用命令编辑/etc/…

    2023-04-13
    159
  • mysql的密码是什么_MySQL grant

    mysql的密码是什么_MySQL grantMySQL8系列新增的密码插件策略:caching_sha2_password

    2023-03-16
    151
  • chm索引_search索引器

    chm索引_search索引器与所有的数据库一样,Couchbase数据库必须创建索引才能进行查询。在很多关系型数据库中,创建表创建表时通常会默认创建以ID为主键索引的索引,所以很多人在上手时忽略了关系型数据库的索引。 由于Co…

    2023-03-20
    152
  • SparkStreaming两种方式连接Flume

    SparkStreaming两种方式连接FlumeSparkStreaming 连接Flume的两种方式分别为:Push(推)和Pull(拉)的方式实现,以Spark Streaming的角度来看,Push方式属于推送(由Flume向Spark推送数

    2023-04-10
    164
  • Python开发人员必知:如何操作索引列表

    Python开发人员必知:如何操作索引列表列表是Python中最常用的数据结构之一,可能是因为我们在编程过程中必须经常处理列表数据,比如操作列表的索引。在这篇文章中,我们将学习如何操作索引列表。

    2024-03-13
    77

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注