当前位置:网站首页>postgresql 之 数据目录内部结构 简介
postgresql 之 数据目录内部结构 简介
2022-07-06 18:39:00 【happytree001】
一、一切皆为Oid
在Linux中一切皆为文件,在postgresql中一切皆为Oid。
1.1 什么是Oid
Object identifier(Oid), 对象标识符。 在postgresql内部,所有的数据库对象都是通过相应的Oid进行管理。
typedef unsigned int Oid;
Oid在代码中是一个4字节的无符号的整数。
1.2 数据库Oid
[email protected]:~$ /usr/local/pgsql/bin/psql
psql (14.2)
Type "help" for help.
postgres=# select datname,oid from pg_database where datname='test';
datname | oid
---------+-------
test | 16384
(1 row)
postgres=#
[email protected]:~$ ls /usr/local/pgsql/data/base/ -l
total 24
drwx------ 2 postgres postgres 4096 Jun 6 14:38 1
drwx------ 2 postgres postgres 4096 Jun 6 14:38 12971
drwx------ 2 postgres postgres 4096 Jul 4 12:50 12972
drwx------ 2 postgres postgres 4096 Jun 7 12:19 16384
drwx------ 2 postgres postgres 4096 Jun 11 02:01 24577
drwx------ 2 postgres postgres 4096 Jul 4 12:50 40960
1.3 表Oid
[email protected]:~$ /usr/local/pgsql/bin/psql test
psql (14.2)
Type "help" for help.
test=# create table stu (name varchar(32), age int, sex char(2));
CREATE TABLE
test=# \dS+ stu
Table "public.stu"
Column | Type | Collation | Nullable | Default | Storage | Compression | Stats target | Description
--------+-----------------------+-----------+----------+---------+----------+-------------+--------------+-------------
name | character varying(32) | | | | extended | | |
age | integer | | | | plain | | |
sex | character(2) | | | | extended | | |
Access method: heap
test=# select oid,relname from pg_class where relname = 'stu';
oid | relname
-------+---------
49152 | stu
(1 row)
test=#
[email protected]:~$ ls /usr/local/pgsql/data/base/16384/49152 -hal
-rw------- 1 postgres postgres 0 Jul 4 12:57 /usr/local/pgsql/data/base/16384/49152
二、和MySQL对比
数据库 | 数据库存储 | 表存储 | 编码影响 |
---|---|---|---|
postgresql | 目录名为对应的Oid(数字) | 文件名为对应的Oid (数字) | 只是一个数值,不受影响 |
mysql | 目录名为数据库名(字符串) | 文件名为表名 (字符串) | 受影响 |
postgresql和mysql都是将数据库作为目录,对应的表则在对应的目录下,方便查找以及管理。
三、 数据目录结构
[email protected]:/# tree /usr/local/pgsql/data/ -L 1
/usr/local/pgsql/data/
|-- PG_VERSION
|-- base
|-- global
|-- pg_commit_ts
|-- pg_dynshmem
|-- pg_hba.conf
|-- pg_ident.conf
|-- pg_logical
|-- pg_multixact
|-- pg_notify
|-- pg_replslot
|-- pg_serial
|-- pg_snapshots
|-- pg_stat
|-- pg_stat_tmp
|-- pg_subtrans
|-- pg_tblspc
|-- pg_twophase
|-- pg_wal
|-- pg_xact
|-- postgresql.auto.conf
|-- postgresql.conf
|-- postmaster.opts
`-- postmaster.pid
17 directories, 7 files
名称 | 描述 |
---|---|
PG_VERSION | pg服务器主版本号文件 |
base/ | 数据库目录都在此目录下 |
global/ | 数据库集簇范围的表(比如pg_database, 类似mysql的performance_schema) |
pg_commit_ts/ | 事物提交的时间戳数据 |
pg_dynshmem/ | 动态共享内存子系统中使用的文件 |
pg_hba.conf | 控制pg客户端认证配置的文件 |
pg_ident.conf | pg用户映射文件 |
pg_logical/ | 逻辑解码的状态数据 |
pg_multixact/ | 多事务状态数据 |
pg_notify/ | Listen/Notify状态数据 |
pg_replslot/ | 复制槽数据 |
pg_serial/ | 已提交的可串行化事务相关信息 |
pg_snapshots/ | 快照信息 |
pg_stat/ | 统计子系统的永久文件 |
pg_stat_tmp/ | 统计子系统的临时文件 |
pg_subtrans/ | 子事务状态数据 |
pg_tblspc/ | 指向表空间的符号链接 |
pg_twophase/ | 两阶段事务的状态文件 |
pg_wal/ | WAL文件 |
pg_xact/ | 事务提交状态数据 |
postgresql.auto.conf | 存储使用alter system修改的配置 |
postgresql.conf | 配置文件 |
postmaster.opts | 记录服务器上一次启动的命令行选项 |
postmaster.pid | 服务器pid文件 |
边栏推荐
- The empirical asset pricing package (EAP) can be installed through pypi
- Threadlocalutils (tool class IV)
- 微服务架构介绍
- Draco - glTF模型压缩利器
- Freeswitch dials extension number source code tracking
- Introduction to RC oscillator and crystal oscillator
- [paper reading | deep reading] dngr:deep neural networks for learning graph representations
- Jacob Steinhardt, assistant professor of UC Berkeley, predicts AI benchmark performance: AI has made faster progress in fields such as mathematics than expected, but the progress of robustness benchma
- Centos8 install MySQL 8.0 using yum x
- 激光雷达:Ouster OS产品介绍及使用方法
猜你喜欢
FLIR blackfly s industrial camera: synchronous shooting of multiple cameras through external trigger
Big guys gather | nextarch foundation cloud development meetup is coming!
Blackfly S USB3工业相机:缓冲区处理
Flir Blackfly S 工业相机:自动曝光配置及代码
组合导航:中海达iNAV2产品描述及接口描述
CISP-PTE之命令注入篇
Flir Blackfly S USB3 工业相机:白平衡设置方法
A new path for enterprise mid Platform Construction -- low code platform
Flir Blackfly S 工业相机:配置多个摄像头进行同步拍摄
[paper reading | deep reading] graphsage:inductive representation learning on large graphs
随机推荐
强化学习如何用于医学影像?埃默里大学最新《强化学习医学影像分析》综述,阐述最新RL医学影像分析概念、应用、挑战与未来方向
一片葉子兩三萬?植物消費爆火背後的“陽謀”
TiFlash 源码阅读(四)TiFlash DDL 模块设计及实现分析
Recommended collection!! Which is the best flutter status management plug-in? Please look at the ranking list of yard farmers on the island!
Collection recommandée!! Quel plug - in de gestion d'état flutter est le plus fort? Regardez le classement des manons de l'île, s'il vous plaît!
组合导航:中海达iNAV2产品描述及接口描述
leetcode:5. 最长回文子串【dp + 抓着超时的尾巴】
New generation cloud native message queue (I)
Batch delete data in SQL - set in entity
【LeetCode】Day97-移除链表元素
The use of video in the wiper component causes full screen dislocation
张平安:加快云上数字创新,共建产业智慧生态
How can reinforcement learning be used in medical imaging? A review of Emory University's latest "reinforcement learning medical image analysis", which expounds the latest RL medical image analysis co
大咖云集|NextArch基金会云开发Meetup来啦!
长安链学习笔记-证书研究之证书模式
建議收藏!!Flutter狀態管理插件哪家强?請看島上碼農的排行榜!
ROS學習(23)action通信機制
Several classes and functions that must be clarified when using Ceres to slam
SchedulX V1.4.0及SaaS版发布,免费体验降本增效高级功能!
张平安:加快云上数字创新,共建产业智慧生态