PostgreSQL 10.0 preview 变化 - pg_xlog,pg_clog,pg_log目录更名为pg_wal,pg_xact,log

本文涉及的产品
RDS PostgreSQL Serverless,0.5-4RCU 50GB 3个月
推荐场景:
对影评进行热评分析
云原生数据库 PolarDB 分布式版,标准版 2核8GB
云数据库 RDS SQL Server,基础系列 2核4GB
简介:

标签

PostgreSQL , 10.0 , pg_xact , pg_wal , log , pg_clog , pg_xlog , pg_log


背景

10.0 把几个有一定“歧义”的目录更名了。它们分别为

pg_xlog, pg_clog, pg_log

更名为

pg_wal, pg_xact, log

分别对应WAL(write ahead log)日志,事务状态日志,日志。

省得有人误删其中的LOG目录中的文件。(还真有发生过)。

坏处是,如果有对应的程序用到了这几个目录名的,需要修改一下。

对应patch

Rename "pg_xlog" directory to "pg_wal".  
  
author	Robert Haas <rhaas@postgresql.org>	  
Thu, 20 Oct 2016 23:24:37 +0800 (11:24 -0400)  
committer	Robert Haas <rhaas@postgresql.org>	  
Thu, 20 Oct 2016 23:32:18 +0800 (11:32 -0400)  
"xlog" is not a particularly clear abbreviation for "write-ahead log",  
and it sometimes confuses users into believe that the contents of the  
"pg_xlog" directory are not critical data, leading to unpleasant  
consequences.  So, rename the directory to "pg_wal".  
  
This patch modifies pg_upgrade and pg_basebackup to understand both  
the old and new directory layouts; the former is necessary given the  
purpose of the tool, while the latter merely avoids an unnecessary  
backward-compatibility break.  
  
We may wish to consider renaming other programs, switches, and  
functions which still use the old "xlog" naming to also refer to  
"wal".  However, that's still under discussion, so let's do just this  
much for now.  
  
Discussion: CAB7nPqTeC-8+zux8_-4ZD46V7YPwooeFxgndfsq5Rg8ibLVm1A@mail.gmail.com  
  
Michael Paquier  
Rename "pg_clog" directory to "pg_xact".  
  
author	Robert Haas <rhaas@postgresql.org>	  
Fri, 17 Mar 2017 21:46:58 +0800 (09:46 -0400)  
committer	Robert Haas <rhaas@postgresql.org>	  
Fri, 17 Mar 2017 21:48:38 +0800 (09:48 -0400)  
Names containing the letters "log" sometimes confuse users into  
believing that only non-critical data is present.  It is hoped  
this renaming will discourage ill-considered removals of transaction  
status data.  
  
Michael Paquier  
  
Discussion: http://postgr.es/m/CA+Tgmoa9xFQyjRZupbdEFuwUerFTvC6HjZq1ud6GYragGDFFgA@mail.gmail.com  
Change default of log_directory to 'log'  
  
author	Peter Eisentraut <peter_e@gmx.net>	  
Mon, 27 Mar 2017 22:34:33 +0800 (10:34 -0400)  
committer	Peter Eisentraut <peter_e@gmx.net>	  
Mon, 27 Mar 2017 22:34:33 +0800 (10:34 -0400)  
The previous default 'pg_log' might have indicated by its "pg_" prefix  
that it is an internal system directory.  The new default is more in  
line with the typical naming of directories with user-facing log files.  
Together with the renaming of pg_clog and pg_xlog, this should clear up  
that difference.  
  
Author: Andreas Karlsson <andreas@proxel.se>  

这个patch的讨论,详见邮件组,本文末尾URL。

PostgreSQL社区的作风非常严谨,一个patch可能在邮件组中讨论几个月甚至几年,根据大家的意见反复的修正,patch合并到master已经非常成熟,所以PostgreSQL的稳定性也是远近闻名的。

参考

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=f82ec32ac30ae7e3ec7c84067192535b2ff8ec0e

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=88e66d193fbaf756b3cc9bf94cad116aacbb355b

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=3371e4d9b12455fe1f8d1516d0bd915aab86be17

相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
目录
相关文章
|
6月前
|
Dubbo Java 应用服务中间件
Dubbo日志文件输出到指定目录 如何定义?
Dubbo日志文件输出到指定目录 如何定义?
|
2月前
|
消息中间件 存储 监控
Kafka的logs目录下的文件都是什么日志?
Kafka的logs目录下的文件都是什么日志?
125 11
|
3月前
|
存储 安全 Linux
在Linux中,日志文件通常存储在哪些目录?
在Linux中,日志文件通常存储在哪些目录?
|
3月前
|
Ubuntu Linux 测试技术
在Linux中,已知 apache 服务的访问日志按天记录在服务器本地目录/app/logs 下,由于磁盘空间紧张现在要求只能保留最近7天的访问日志,请问如何解决?
在Linux中,已知 apache 服务的访问日志按天记录在服务器本地目录/app/logs 下,由于磁盘空间紧张现在要求只能保留最近7天的访问日志,请问如何解决?
|
4月前
|
Java Serverless 应用服务中间件
函数计算操作报错合集之JVM启动时找不到指定的日志目录,该如何解决
Serverless 应用引擎(SAE)是阿里云提供的Serverless PaaS平台,支持Spring Cloud、Dubbo、HSF等主流微服务框架,简化应用的部署、运维和弹性伸缩。在使用SAE过程中,可能会遇到各种操作报错。以下是一些常见的报错情况及其可能的原因和解决方法。
|
6月前
|
Dubbo Java 应用服务中间件
Dubbo日志文件输出到指定目录 如何定义?
Dubbo日志文件输出到指定目录 如何定义?
|
6月前
|
Dubbo Java 应用服务中间件
Dubbo日志文件输出到指定目录 如何定义?
Dubbo日志文件输出到指定目录 如何定义?
|
4月前
|
应用服务中间件 开发工具 nginx
Ngnix09目录结构分析,使用tree工具可以Ngnix目录中以一个树的方式呈现出来,yum install -y tree,tail -f nginx/logs/access.log
Ngnix09目录结构分析,使用tree工具可以Ngnix目录中以一个树的方式呈现出来,yum install -y tree,tail -f nginx/logs/access.log
|
5月前
|
Shell Linux
linux shell 脚本实现:根据文件内容中的每行分隔符放入数组,根据规则打印日志并重新创建目录 备份文件
linux shell 脚本实现:根据文件内容中的每行分隔符放入数组,根据规则打印日志并重新创建目录 备份文件
52 0
|
6月前
|
SQL 关系型数据库 数据库
实时计算 Flink版产品使用合集之同步PostgreSQL数据时,WAL 日志无限增长,是什么导致的
实时计算Flink版作为一种强大的流处理和批处理统一的计算框架,广泛应用于各种需要实时数据处理和分析的场景。实时计算Flink版通常结合SQL接口、DataStream API、以及与上下游数据源和存储系统的丰富连接器,提供了一套全面的解决方案,以应对各种实时计算需求。其低延迟、高吞吐、容错性强的特点,使其成为众多企业和组织实时数据处理首选的技术平台。以下是实时计算Flink版的一些典型使用合集。

相关产品

  • 云原生数据库 PolarDB
  • 云数据库 RDS PostgreSQL 版