PostgreSQL 10.1 手册_部分 II. SQL 语言_第 5 章 数据定义_5.8. 模式

本文详细介绍PostgreSQL数据库中模式的创建、使用及权限管理。模式在PostgreSQL中扮演着组织数据库对象的重要角色,允许用户在共享数据库环境下独立工作,避免命名冲突。文章涵盖模式的创建、搜索路径设定、权限分配等内容。

5.8. 模式

一个PostgreSQL数据库集簇中包含一个或更多命名的数据库。用户和用户组被整个集簇共享,但没有其他数据在数据库之间共享。任何给定客户端连接只能访问在连接中指定的数据库中的数据。

注意

一个集簇的用户并不必拥有访问集簇中每一个数据库的权限。用户名的共享意味着不可能在同一个集簇中出现重名的不同用户,例如两个数据库中都有叫joe的用户。但系统可以被配置为只允许joe访问某些数据库。

一个数据库包含一个或多个命名模式,模式中包含着表。模式还包含其他类型的命名对象,包括数据类型、函数和操作符。相同的对象名称可以被用于不同的模式中而不会出现冲突,例如schema1myschema都可以包含名为mytable的表。和数据库不同,模式并不是被严格地隔离:一个用户可以访问他们所连接的数据库中的所有模式内的对象,只要他们有足够的权限。

下面是一些使用模式的原因:

  • 允许多个用户使用一个数据库并且不会互相干扰。

  • 将数据库对象组织成逻辑组以便更容易管理。

  • 第三方应用的对象可以放在独立的模式中,这样它们就不会与其他对象的名称发生冲突。

模式类似于操作系统层的目录,但是模式不能嵌套。

5.8.1. 创建模式

要创建一个模式,可使用CREATE SCHEMA命令,并且给出选择的模式名称。例如:

CREATE SCHEMA myschema;

在一个模式中创建或访问对象,需要使用由模式名和表名构成的限定名,模式名和表名之间以点号分隔:

模式.

在任何需要一个表名的地方都可以这样用,包括表修改命令和后续章节要讨论的数据访问命令(为了简洁我们在这里只谈到表,但是这种方式对其他类型的命名对象同样有效,例如类型和函数)。

事实上,还有更加通用的语法:

数据库.模式.

也可以使用,但是目前它只是在形式上与SQL标准兼容。如果我们写一个数据库名称,它必须是我们正在连接的数据库。

因此,如果要在一个新模式中创建一个表,可用:

CREATE TABLE myschema.mytable (
 ...
);

要删除一个为空的模式(其中的所有对象已经被删除),可用:

DROP SCHEMA myschema;

要删除一个模式以及其中包含的所有对象,可用:

DROP SCHEMA myschema CASCADE;

有关于此的更一般的机制请参见第 5.13 节

我们常常希望创建一个由其他人所拥有的模式(因为这是将用户动作限制在良定义的名字空间中的方法之一)。其语法是:

CREATE SCHEMA schema_name AUTHORIZATION user_name;

我们甚至可以省略模式名称,在此种情况下模式名称将会使用用户名,参见第 5.8.6 节

pg_开头的模式名被保留用于系统目的,所以不能被用户所创建。

5.8.2. 公共模式

在前面的小节中,我们创建的表都没有指定任何模式名称。默认情况下这些表(以及其他对象)会自动的被放入一个名为public的模式中。任何新数据库都包含这样一个模式。因此,下面的命令是等效的:

CREATE TABLE products ( ... );

以及:

CREATE TABLE public.products ( ... );

5.8.3. 模式搜索路径

限定名写起来很冗长,通常最好不要把一个特定模式名拉到应用中。因此,表名通常被使用非限定名来引用,它只由表名构成。系统将沿着一条搜索路径来决定该名称指的是哪个表,搜索路径是一个进行查看的模式列表。 搜索路径中第一个匹配的表将被认为是所需要的。如果在搜索路径中没有任何匹配,即使在数据库的其他模式中存在匹配的表名也将会报告一个错误。

搜索路径中的第一个模式被称为当前模式。除了是第一个被搜索的模式外,如果CREATE TABLE命令没有指定模式名,它将是新创建表所在的模式。

要显示当前搜索路径,使用下面的命令:

SHOW search_path;

在默认设置下这将返回:

 search_path
--------------
 "$user",public

第一个元素说明一个和当前用户同名的模式会被搜索。如果不存在这个模式,该项将被忽略。第二个元素指向我们已经见过的公共模式。

搜索路径中的第一个模式是创建新对象的默认存储位置。这就是默认情况下对象会被创建在公共模式中的原因。当对象在任何其他没有模式限定的环境中被引用(表修改、数据修改或查询命令)时,搜索路径将被遍历直到一个匹配对象被找到。因此,在默认配置中,任何非限定访问将只能指向公共模式。

要把新模式放在搜索路径中,我们可以使用:

SET search_path TO myschema,public;

(我们在这里省略了$user,因为我们并不立即需要它)。然后我们可以该表而无需使用模式限定:

DROP TABLE mytable;

同样,由于myschema是路径中的第一个元素,新对象会被默认创建在其中。

我们也可以这样写:

SET search_path TO myschema;

这样我们在没有显式限定时再也不必去访问公共模式了。公共模式没有什么特别之处,它只是默认存在而已,它也可以被删除。

其他操作模式搜索路径的方法请见第 9.25 节

搜索路径对于数据类型名称、函数名称和操作符名称的作用与表名一样。数据类型和函数名称可以使用和表名完全相同的限定方式。如果我们需要在一个表达式中写一个限定的操作符名称,我们必须写成一种特殊的形式:

OPERATOR(schema.operator)

这是为了避免句法歧义。例如:

SELECT 3 OPERATOR(pg_catalog.+) 4;

实际上我们通常都会依赖于搜索路径来查找操作符,因此没有必要去写如此“丑陋”的东西。

5.8.4. 模式和权限

默认情况下,用户不能访问不属于他们的模式中的任何对象。要允许这种行为,模式的拥有者必须在该模式上授予USAGE权限。为了允许用户使用模式中的对象,可能还需要根据对象授予额外的权限。

一个用户也可以被允许在其他某人的模式中创建对象。要允许这种行为,模式上的CREATE权限必须被授予。注意在默认情况下,所有人都拥有在public模式上的CREATEUSAGE权限。这使得用户能够连接到一个给定数据库并在它的public模式中创建对象。如果不希望允许这样,可以撤销该权限:

REVOKE CREATE ON SCHEMA public FROM PUBLIC;

(第一个public是模式,第二个public指的是 每一个用户。第一种是一个标识符,第二种是一个关键词,所以两者的大小写不同。请回想第 4.1.1 节中的指导方针。)

5.8.5. 系统目录模式

public和用户创建的模式之外,每一个数据库还包括一个pg_catalog模式,它包含了系统表和所有内建的数据类型、函数以及操作符。pg_catalog总是搜索路径的一个有效部分。如果没有在路径中显式地包括该模式,它将在路径中的模式之前被搜索。这保证了内建的名称总是能被找到。然而,如果我们希望用用户定义的名称重载内建的名称,可以显式的将pg_catalog放在搜索路径的末尾。

由于系统表名称以pg_开头,最好还是避免使用这样的名称,以避免和未来新版本中 可能出现的系统表名发生冲突。系统表将继续采用以pg_开头的方式,这样它们不会 与非限制的用户表名称冲突。

5.8.6. 惯用法

模式可以被用来以多种方式组织我们的数据。在默认配置下,一些常见的用法是:

  • 如果我们不创建任何模式则所有用户会隐式地访问公共模式。这就像根本不存在模式一样。当数据库中只有一个用户或者少量合作用户时,推荐使用这种配置。这种配置使得我们很容易从没有模式的环境中转换过来。

  • 我们可以为每一个用户创建与它同名的模式。回想一下,默认的搜索路径以$user开始,它将会被解析成用户名。因此,如果每一个用户有一个独立的模式,它们将会默认访问自己的模式。

    如果我们使用这种配置,则我们可能也希望撤销到公共模式的访问(或者把它也一起删除),这样用户被真正地限制在他们自己的模式中。

  • 要安装共享的应用(任何人都可以用的表、由第三方提供的附加函数等),将它们放在独立的模式中。记住要授予适当的权限以允许其他用户访问它们。然后用户就可以使用带模式名的限定名称来引用这些附加对象,或者他们可以把附加模式放入到他们的搜索路径中。

5.8.7. 可移植性

在SQL标准中,在由不同用户拥有的同一个模式中的对象是不存在的。此外,某些实现不允许创建与拥有者名称不同名的模式。事实上,在那些仅实现了标准中基本模式支持的数据库中,模式和用户的概念是等同的。因此,很多用户认为限定名称实际上是由user_name.table_name组成的。如果我们为每一个用户都创建了一个模式,PostgreSQL实际也是这样认为的。

同样,在SQL标准中也没有public模式的概念。为了最大限度的与标准一致,我们不应使用(甚至是删除)public模式。

当然,某些SQL数据库系统可能根本没有实现模式,或者提供允许跨数据库访问的名字空间。如果需要使用这样一些系统,最好不要使用模式。

本文转自PostgreSQL中文社区,原文链接:5.8. 模式

[root@localhost ~]# ps aux |grep postgre systemd+ 32997 0.1 4.2 34818560 2811840 ? Ss 03:30 0:53 postgres: postgres xytocc_business 10.201.8.41(55674) idle systemd+ 57615 2.3 8.9 34817536 5865664 ? Ss 04:01 12:21 postgres: postgres xytocc_business 10.201.8.41(37090) idle systemd+ 67985 0.1 3.5 34931008 2331456 ? Ss 04:15 0:49 postgres: postgres xytocc_business 10.201.8.42(52818) idle systemd+ 80671 2.5 9.2 34931712 6058112 ? Ss 04:31 12:49 postgres: postgres xytocc_business 10.201.8.41(36894) idle systemd+ 104292 0.2 5.5 34944960 3637184 ? Ss 05:01 1:00 postgres: postgres xytocc_business 10.201.8.42(54392) idle systemd+ 105687 0.2 5.4 34944960 3594432 ? Ss 05:03 0:58 postgres: postgres xytocc_business 10.201.8.43(41320) idle systemd+ 155999 0.0 0.5 34815808 390592 ? Ss 06:08 0:04 postgres: postgres xytocc_business 10.201.8.43(56494) idle systemd+ 183508 0.0 2.4 34813824 1639232 ? Ss Jun14 0:46 postgres: postgres xytocc_business 10.29.105.4(52226) idle systemd+ 184395 0.0 0.0 34813376 19136 ? Ss Jul10 0:00 postgres: postgres xytocc_business 10.201.8.22(35848) idle systemd+ 184396 0.0 0.0 34813376 19200 ? Ss Jul10 0:00 postgres: postgres xytocc_business 10.201.8.22(35864) idle systemd+ 184397 0.0 0.0 34813376 19200 ? Ss Jul10 0:00 postgres: postgres xytocc_business 10.201.8.22(35880) idle systemd+ 184398 0.0 0.0 34813376 19200 ? Ss Jul10 0:00 postgres: postgres xytocc_business 10.201.8.22(35884) idle systemd+ 184399 0.0 0.0 34813376 19200 ? Ss Jul10 0:00 postgres: postgres xytocc_business 10.201.8.22(40948) idle systemd+ 202687 0.0 2.9 34815296 1928064 ? Ss 07:08 0:01 postgres: postgres xytocc_business 10.29.105.4(42024) idle systemd+ 202688 0.0 3.6 34931008 2396800 ? Ss 07:08 0:05 postgres: postgres xytocc_business 10.29.105.4(42026) idle systemd+ 202691 0.0 0.1 34813696 124608 ? Ss 07:08 0:00 postgres: postgres xytocc_business 10.29.105.4(42028) idle systemd+ 202719 0.0 1.0 34814976 713472 ? Ss 07:08 0:00 postgres: postgres xytocc_business 10.29.105.4(42358) idle systemd+ 202720 0.0 3.6 34932032 2405056 ? Ss 07:08 0:09 postgres: postgres xytocc_business 10.29.105.4(42364) idle systemd+ 202721 0.0 3.8 34931840 2515136 ? Ss 07:08 0:05 postgres: postgres xytocc_business 10.29.105.4(42384) idle systemd+ 202986 0.0 0.0 34813504 36544 ? Ss 07:09 0:00 postgres: postgres xytocc_business 10.29.105.4(43296) idle systemd+ 202987 0.0 0.0 34813568 35968 ? Ss 07:09 0:00 postgres: postgres xytocc_business 10.29.105.4(43298) idle systemd+ 203596 0.3 7.3 34950720 4798592 ? Ss 07:10 1:03 postgres: postgres xytocc_business 10.29.105.4(45808) idle systemd+ 203597 0.0 3.7 34951104 2437056 ? Ss 07:10 0:07 postgres: postgres xytocc_business 10.29.105.4(45812) idle systemd+ 203598 0.0 0.9 34922496 594240 ? Ss 07:10 0:05 postgres: postgres xytocc_business 10.29.105.4(45822) idle systemd+ 203626 0.0 0.4 34814848 295296 ? Ss 07:10 0:00 postgres: postgres xytocc_business 10.29.105.4(45824) idle systemd+ 203627 0.0 2.5 34914112 1671872 ? Ss 07:10 0:04 postgres: postgres xytocc_business 10.29.105.4(45826) idle systemd+ 203629 0.1 1.9 34961536 1283840 ? Ss 07:10 0:26 postgres: postgres xytocc_business 10.29.105.4(45828) idle systemd+ 204405 0.0 0.1 34813696 95808 ? Ss 07:10 0:00 postgres: postgres xytocc_business 10.29.105.4(49596) idle systemd+ 255181 0.1 10.6 34930624 7007808 ? Ss 08:14 0:24 postgres: postgres xytocc_business 10.201.8.42(50014) idle systemd+ 269200 0.0 6.1 34915456 4014016 ? Ss 08:32 0:14 postgres: postgres xytocc_business 10.201.8.42(42106) idle systemd+ 269209 0.0 3.7 34913536 2439744 ? Ss 08:32 0:01 postgres: postgres xytocc_business 10.201.8.43(32788) idle systemd+ 269396 2.9 4.5 34995968 2964736 ? Ss 08:32 7:38 postgres: postgres xytocc_business 10.201.8.42(37370) idle systemd+ 269512 0.0 0.0 34813376 22336 ? Ss 08:32 0:00 postgres: postgres xytocc_business 10.201.8.42(52748) idle systemd+ 269513 0.0 1.4 34814336 956224 ? Ss 08:32 0:00 postgres: postgres xytocc_business 10.201.8.43(43914) idle systemd+ 269514 0.0 1.5 34814656 992896 ? Ss 08:32 0:00 postgres: postgres xytocc_business 10.201.8.43(43928) idle systemd+ 269515 0.0 0.0 34826176 45760 ? Ss 08:32 0:00 postgres: postgres xytocc_business 10.201.8.42(52762) idle systemd+ 269683 3.0 4.6 35002944 3027392 ? Ss 08:32 7:57 postgres: postgres xytocc_business 10.201.8.43(43868) idle systemd+ 274217 0.7 4.6 34872128 3068480 ? Ss 08:38 1:54 postgres: postgres xytocc_business 10.201.8.42(34290) idle systemd+ 278993 0.0 5.6 34929792 3739200 ? Ss 08:44 0:04 postgres: postgres xytocc_business 10.29.105.4(21740) idle systemd+ 285162 0.3 18.5 34933568 12196928 ? Ss 08:52 0:47 postgres: postgres xytocc_business 10.201.8.43(34462) idle systemd+ 285163 0.5 15.0 34917312 9861760 ? Ss 08:52 1:18 postgres: postgres xytocc_business 10.201.8.43(34468) idle systemd+ 285164 1.3 17.0 34929024 11188160 ? Ss 08:52 3:17 postgres: postgres xytocc_business 10.201.8.42(33532) idle systemd+ 285165 0.9 7.2 34928320 4760192 ? Ss 08:52 2:16 postgres: postgres xytocc_business 10.201.8.42(33538) idle systemd+ 285166 2.6 12.0 34932288 7887040 ? Ss 08:52 6:25 postgres: postgres xytocc_business 10.201.8.42(33546) idle systemd+ 285173 0.0 6.7 34935040 4402176 ? Ss 08:52 0:11 postgres: postgres xytocc_business 10.201.8.42(33550) idle systemd+ 285180 0.0 0.0 34814080 39616 ? Ss 08:52 0:00 postgres: postgres xytocc_business 10.201.8.42(33552) idle systemd+ 285199 0.0 10.0 34917632 6614080 ? Ss 08:52 0:06 postgres: postgres xytocc_business 10.201.8.43(33250) idle systemd+ 285230 0.0 2.7 34815680 1815296 ? Ss 08:52 0:01 postgres: postgres xytocc_business 10.201.8.42(33568) idle systemd+ 285241 1.1 18.6 34930688 12228096 ? Ss 08:52 2:51 postgres: postgres xytocc_business 10.201.8.43(33274) idle systemd+ 290374 0.0 3.5 34833280 2302464 ? Ss 08:58 0:02 postgres: postgres xytocc_business 10.201.8.43(47906) idle systemd+ 290375 0.0 0.2 34830976 147520 ? Ss 08:58 0:00 postgres: postgres xytocc_business 10.201.8.42(45552) idle systemd+ 290376 0.2 3.5 34833216 2302720 ? Ss 08:58 0:37 postgres: postgres xytocc_business 10.201.8.43(47922) idle systemd+ 292132 4.5 3.6 34932288 2414720 ? Ss 09:00 10:28 postgres: postgres xytocc_business 10.201.8.42(60636) idle systemd+ 295306 0.1 2.6 34947264 1742784 ? Ss 09:03 0:21 postgres: postgres xytocc_business 10.201.8.43(38738) idle systemd+ 295448 1.1 2.7 34954112 1822656 ? Ss 09:03 2:30 postgres: postgres xytocc_business 10.201.8.42(36402) idle systemd+ 295813 4.3 5.0 34896256 3339136 ? Ss 09:04 9:54 postgres: postgres xytocc_business 10.201.8.43(43230) idle systemd+ 298822 3.5 4.9 34896192 3233792 ? Ss 09:07 8:03 postgres: postgres xytocc_business 10.201.8.43(50804) idle systemd+ 300862 0.2 3.5 34833216 2303616 ? Ss 09:09 0:39 postgres: postgres xytocc_business 10.201.8.42(54830) idle systemd+ 300867 0.0 0.0 34813376 22208 ? Ss 09:09 0:00 postgres: postgres xytocc_business 10.201.8.43(48118) idle systemd+ 301682 5.0 4.8 34871808 3209536 ? Ss 09:10 11:08 postgres: postgres xytocc_business 10.201.8.42(47060) idle systemd+ 302123 0.0 2.9 34860160 1942336 ? Ss 09:10 0:00 postgres: postgres xytocc_business 10.29.105.4(54790) idle systemd+ 302124 1.7 4.5 34866368 2996416 ? Ss 09:10 3:53 postgres: postgres xytocc_business 10.29.105.4(54792) idle systemd+ 302125 1.7 4.6 34865152 3061056 ? Ss 09:10 3:54 postgres: postgres xytocc_business 10.29.105.4(54794) idle systemd+ 305965 3.4 4.5 34965632 3010752 ? Ss 09:15 7:26 postgres: postgres xytocc_business 10.201.8.43(49816) idle systemd+ 306118 0.0 0.3 34813568 206208 ? Ss 09:15 0:00 postgres: postgres xytocc_business 10.29.105.4(7924) idle systemd+ 307608 0.2 0.7 34822720 479104 ? Ss 09:16 0:27 postgres: postgres xytocc_business 10.29.105.4(14420) idle systemd+ 314122 5.1 4.8 34869888 3169600 ? Ss 09:23 10:35 postgres: postgres xytocc_business 10.201.8.42(48364) idle systemd+ 357244 0.1 0.7 34821632 477248 ? Ss 10:07 0:12 postgres: postgres xytocc_business 10.29.105.4(34262) idle systemd+ 379279 0.0 0.0 34813760 45376 ? Ss 10:30 0:00 postgres: postgres postgres 10.29.105.4(62716) idle systemd+ 379978 0.0 1.0 34820672 710912 ? Ss 10:31 0:00 postgres: postgres xytocc_business 10.29.105.4(1444) idle systemd+ 380297 0.0 2.8 34825088 1842880 ? Ss 10:31 0:01 postgres: postgres xytocc_business 10.29.105.4(2492) idle systemd+ 381687 0.1 0.7 34826560 481664 ? Ss 10:33 0:14 postgres: postgres xytocc_business 10.29.105.4(7800) idle systemd+ 384137 0.2 3.3 34949824 2193088 ? Ss 10:35 0:17 postgres: postgres xytocc_business 10.29.105.4(17382) idle systemd+ 384276 0.0 0.0 34813632 47232 ? Ss 10:35 0:00 postgres: postgres xytocc_business 10.29.105.4(17870) idle systemd+ 402190 0.0 3.5 34930560 2347072 ? Ss 10:53 0:03 postgres: postgres xytocc_business 10.201.8.43(37662) idle systemd+ 402513 0.0 0.3 34814976 246912 ? Ss 10:53 0:00 postgres: postgres xytocc_business 10.201.8.43(35986) idle systemd+ 403104 0.0 1.7 34818176 1118272 ? Ss 10:54 0:00 postgres: postgres xytocc_business 10.201.8.42(38002) idle systemd+ 403111 0.0 0.0 34813568 37184 ? Ss 10:54 0:00 postgres: postgres xytocc_business 10.201.8.43(41148) idle systemd+ 403112 0.0 0.0 34814400 51264 ? Ss 10:54 0:00 postgres: postgres xytocc_business 10.201.8.43(41158) idle systemd+ 403149 0.0 0.5 34927104 353088 ? Ss 10:54 0:00 postgres: postgres xytocc_business 10.201.8.42(38014) idle systemd+ 403150 0.0 5.5 34954496 3644032 ? Ss 10:54 0:04 postgres: postgres xytocc_business 10.201.8.42(38016) idle systemd+ 403151 0.0 5.0 34924416 3342976 ? Ss 10:54 0:06 postgres: postgres xytocc_business 10.201.8.42(38026) idle systemd+ 403152 0.0 5.9 34956480 3934976 ? Ss 10:54 0:05 postgres: postgres xytocc_business 10.201.8.42(38028) idle systemd+ 403445 0.0 0.3 34814976 219136 ? Ss 10:54 0:00 postgres: postgres xytocc_business 10.201.8.42(60684) idle systemd+ 434814 0.1 0.6 34815680 411520 ? Ss 11:27 0:07 postgres: postgres xytocc_business 10.29.105.4(21224) idle systemd+ 435081 0.0 0.0 34813376 22208 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.43(50130) idle systemd+ 435082 0.0 0.0 34813376 22208 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.43(50140) idle systemd+ 435083 0.0 0.0 34813376 22336 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.43(50156) idle systemd+ 435085 0.0 0.0 34813376 22400 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.43(50162) idle systemd+ 435086 0.0 0.0 34813376 22272 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.43(50174) idle systemd+ 435143 22.2 24.5 35030400 16089536 ? Rs 11:27 18:32 postgres: postgres xytocc_business 10.201.8.42(36510) SELECT systemd+ 435180 36.0 30.5 35043136 20010816 ? Ss 11:27 29:59 postgres: postgres xytocc_business 10.201.8.42(36526) idle systemd+ 435181 25.8 31.1 35043008 20433216 ? Ss 11:27 21:30 postgres: postgres xytocc_business 10.201.8.42(36528) idle systemd+ 435184 0.0 0.0 34813376 22272 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.42(36550) idle systemd+ 435185 0.0 0.0 34813376 22272 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.42(36554) idle systemd+ 435186 0.0 0.0 34813376 22336 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.42(36556) idle systemd+ 435187 0.0 0.0 34813376 22336 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.42(36558) idle systemd+ 435188 0.0 0.0 34813376 22400 ? Ss 11:27 0:00 postgres: postgres xytocc_business 10.201.8.42(36560) idle systemd+ 435213 12.9 28.7 34976704 18852992 ? Ss 11:28 10:47 postgres: postgres xytocc_business 10.29.105.4(22802) idle systemd+ 435214 7.8 30.2 34969792 19841728 ? Ss 11:28 6:30 postgres: postgres xytocc_business 10.29.105.4(22804) idle systemd+ 435215 9.8 30.9 34990976 20297920 ? Ss 11:28 8:09 postgres: postgres xytocc_business 10.29.105.4(22806) idle systemd+ 435216 6.8 30.9 34964032 20273024 ? Ss 11:28 5:41 postgres: postgres xytocc_business 10.29.105.4(22808) idle systemd+ 435219 3.7 30.1 35008064 19752448 ? Ss 11:28 3:07 postgres: postgres xytocc_business 10.29.105.4(22810) REFRESH MATERIALIZED VIEW waiting systemd+ 435220 0.0 0.0 34813376 22272 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(22822) idle systemd+ 435221 0.0 0.0 34813376 22208 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(22824) idle systemd+ 435222 0.0 0.0 34813376 22272 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(22828) idle systemd+ 435223 0.0 0.0 34813376 22336 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(22832) idle systemd+ 435225 0.0 0.0 34813376 22144 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(22834) idle systemd+ 435347 12.7 30.9 34977664 20327232 ? Ss 11:28 10:36 postgres: postgres xytocc_business 10.29.105.4(23694) idle systemd+ 435349 11.5 30.9 34968640 20301248 ? Ss 11:28 9:34 postgres: postgres xytocc_business 10.29.105.4(23728) idle systemd+ 435350 10.5 30.9 34979776 20296128 ? Rs 11:28 8:47 postgres: postgres xytocc_business 10.29.105.4(23730) REFRESH MATERIALIZED VIEW systemd+ 435353 3.4 30.8 34960192 20263424 ? Ss 11:28 2:52 postgres: postgres xytocc_business 10.29.105.4(23740) idle systemd+ 435356 0.0 0.0 34813376 22144 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(23766) idle systemd+ 435357 0.0 0.0 34813376 22272 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(23772) idle systemd+ 435358 0.0 0.0 34813376 22208 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(23774) idle systemd+ 435359 0.0 0.0 34813376 22272 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(23776) idle systemd+ 435360 0.0 0.0 34813376 22272 ? Ss 11:28 0:00 postgres: postgres xytocc_business 10.29.105.4(23780) idle systemd+ 435384 0.0 1.0 34817344 710336 ? Ss Jul10 0:39 postgres: postgres xytocc_business 10.201.8.43(35652) idle systemd+ 435551 32.2 30.0 35036544 19725248 ? Rs 11:28 26:43 postgres: postgres xytocc_business 10.201.8.42(39346) SELECT systemd+ 436008 30.6 30.3 35184896 19918400 ? Ss 11:28 25:19 postgres: postgres xytocc_business 10.201.8.42(36198) idle systemd+ 436037 0.0 2.3 34814592 1517632 ? Ss 11:28 0:02 postgres: postgres xytocc_business 10.201.8.43(47540) idle systemd+ 436222 29.0 29.9 35010944 19651264 ? Ss 11:28 23:55 postgres: postgres xytocc_business 10.201.8.42(58966) idle systemd+ 438235 4.2 30.1 35006464 19779264 ? Ss 11:30 3:25 postgres: postgres xytocc_business 10.29.105.4(31510) idle systemd+ 440158 24.3 30.2 35181696 19851200 ? Ss 11:32 19:12 postgres: postgres xytocc_business 10.201.8.42(36964) idle systemd+ 452858 31.2 21.9 35024384 14392064 ? Ss 11:44 20:47 postgres: postgres xytocc_business 10.201.8.42(43994) idle systemd+ 456016 7.7 4.7 34871872 3141888 ? Ss 11:47 4:56 postgres: postgres xytocc_business 10.201.8.42(59750) idle systemd+ 461249 16.9 29.6 35291584 19419136 ? Rs 11:51 10:01 postgres: postgres xytocc_business 10.201.8.43(50892) REFRESH MATERIALIZED VIEW systemd+ 461400 12.1 29.3 35073152 19245888 ? Ss 11:52 7:10 postgres: postgres xytocc_business 10.201.8.43(49608) idle systemd+ 461415 21.0 30.6 35189120 20083968 ? Ss 11:52 12:24 postgres: postgres xytocc_business 10.201.8.43(49642) idle systemd+ 465784 0.7 3.4 34951488 2258112 ? Ss 11:55 0:25 postgres: postgres xytocc_business 10.201.19.2(40003) idle systemd+ 466701 0.9 3.4 34951488 2242240 ? Ss 11:56 0:31 postgres: postgres xytocc_business 10.201.19.2(40067) idle systemd+ 466702 0.0 0.2 34820160 131648 ? Ss 11:56 0:00 postgres: postgres xytocc_business 10.201.19.2(40068) idle systemd+ 469484 17.0 29.2 35024960 19173248 ? Ss 11:58 8:57 postgres: postgres xytocc_business 10.201.8.43(42498) idle systemd+ 471663 34.2 30.3 35026816 19929792 ? Ss 12:00 17:19 postgres: postgres xytocc_business 10.201.8.42(48218) REFRESH MATERIALIZED VIEW waiting systemd+ 471664 33.6 24.9 35022080 16335360 ? Ss 12:00 17:00 postgres: postgres xytocc_business 10.201.8.42(48230) idle systemd+ 482757 17.6 29.1 34978624 19131776 ? Ss 12:10 7:14 postgres: postgres xytocc_business 10.201.8.43(35554) idle systemd+ 482939 1.1 1.0 34815168 665280 ? Ss 12:10 0:28 postgres: postgres xytocc_business 10.201.9.36(60308) idle systemd+ 488796 1.6 1.0 34815168 666304 ? Ss 12:15 0:35 postgres: postgres xytocc_business 10.201.9.36(37194) idle systemd+ 491194 0.0 0.0 34813376 22272 ? Ss 12:17 0:00 postgres: postgres xytocc_business 10.201.8.23(57432) idle systemd+ 491195 0.0 0.0 34813376 22272 ? Ss 12:17 0:00 postgres: postgres xytocc_business 10.201.8.23(57442) idle systemd+ 491196 0.0 0.0 34813376 22336 ? Ss 12:17 0:00 postgres: postgres xytocc_business 10.201.8.23(57458) idle systemd+ 491198 0.0 0.0 34813376 22336 ? Ss 12:17 0:00 postgres: postgres xytocc_business 10.201.8.23(57466) idle systemd+ 491199 0.0 0.0 34813376 22336 ? Ss 12:17 0:00 postgres: postgres xytocc_business 10.201.8.23(57468) idle systemd+ 491523 0.0 2.6 34820736 1747008 ? Ss 12:17 0:01 postgres: postgres xytocc_business 10.29.105.4(11432) idle systemd+ 491880 0.0 0.0 34813376 32192 ? Ss 12:18 0:00 postgres: postgres xytocc_business 10.29.105.4(12568) idle systemd+ 502342 15.8 23.5 34974272 15423168 ? Ss 12:27 3:46 postgres: postgres xytocc_business 10.201.8.43(60710) idle systemd+ 505742 2.9 1.0 34815168 661952 ? Ss 12:30 0:36 postgres: postgres xytocc_business 10.201.9.36(33718) idle systemd+ 507263 0.0 0.0 34813376 24000 ? Ss 12:31 0:00 postgres: postgres xytocc_business 10.201.8.21(49070) idle systemd+ 511404 0.0 1.3 34820352 902912 ? Ss 12:35 0:00 postgres: postgres xytocc_business 10.29.105.4(11466) idle systemd+ 511405 0.0 0.0 34813568 49344 ? Ss 12:35 0:00 postgres: postgres xytocc_business 10.29.105.4(11468) idle systemd+ 511406 0.0 0.0 34813568 35136 ? Ss 12:35 0:00 postgres: postgres xytocc_business 10.29.105.4(11472) idle systemd+ 512083 0.1 1.2 34823168 810688 ? Ss 12:36 0:01 postgres: postgres xytocc_business 10.29.105.4(13656) idle systemd+ 512292 0.0 0.0 34813376 23808 ? Ss 12:36 0:00 postgres: postgres xytocc_business 10.29.105.4(14310) idle systemd+ 512834 0.0 0.0 34813376 23936 ? Ss 12:36 0:00 postgres: postgres xytocc_business 10.201.8.21(60368) idle systemd+ 512879 0.0 0.0 34813376 20352 ? Ss 12:36 0:00 postgres: postgres xytocc_business 10.29.105.4(16052) idle systemd+ 512880 0.0 0.0 34813376 20352 ? Ss 12:36 0:00 postgres: postgres xytocc_business 10.29.105.4(16054) idle systemd+ 514756 0.0 0.0 34815168 60672 ? Ss 12:38 0:00 postgres: postgres xytocc_business 10.29.105.4(21544) idle systemd+ 517792 0.0 0.0 34813376 20352 ? Ss 12:41 0:00 postgres: postgres xytocc_business 10.29.105.4(31584) idle systemd+ 517793 0.0 0.0 34813376 20352 ? Ss 12:41 0:00 postgres: postgres xytocc_business 10.29.105.4(31586) idle systemd+ 518294 0.0 0.0 34813376 20352 ? Ss 12:41 0:00 postgres: postgres xytocc_business 10.201.8.21(53186) idle systemd+ 518295 0.0 0.0 34813376 20288 ? Ss 12:41 0:00 postgres: postgres xytocc_business 10.201.8.21(53202) idle systemd+ 518333 0.0 0.0 34813376 20352 ? Ss 12:41 0:00 postgres: postgres xytocc_business 10.29.105.4(33150) idle systemd+ 518334 0.0 0.0 34813376 20352 ? Ss 12:41 0:00 postgres: postgres xytocc_business 10.29.105.4(33152) idle systemd+ 518335 0.0 0.0 34813376 20352 ? Ss 12:41 0:00 postgres: postgres xytocc_business 10.29.105.4(33154) idle systemd+ 518743 0.0 0.0 34813376 20352 ? Ss 12:42 0:00 postgres: postgres xytocc_business 10.29.105.4(35070) idle systemd+ 521053 33.6 3.3 34848448 2203136 ? Rs 12:44 2:17 postgres: postgres xytocc_business 10.201.8.42(58882) SELECT systemd+ 521058 0.1 2.0 34816064 1355136 ? Ss 12:44 0:00 postgres: postgres xytocc_business 10.201.8.42(58902) idle systemd+ 521059 20.2 3.1 34834624 2086464 ? Rs 12:44 1:23 postgres: postgres xytocc_business 10.201.8.42(58906) SELECT systemd+ 521197 0.0 0.0 34813376 20352 ? Ss 12:44 0:00 postgres: postgres xytocc_business 10.29.105.4(42208) idle systemd+ 521198 0.0 0.0 34813376 20352 ? Ss 12:44 0:00 postgres: postgres xytocc_business 10.29.105.4(42210) idle systemd+ 521199 0.0 0.0 34813376 20288 ? Ss 12:44 0:00 postgres: postgres xytocc_business 10.29.105.4(42212) idle systemd+ 521762 0.0 0.0 34813376 20224 ? Ss 12:44 0:00 postgres: postgres xytocc_business 10.29.105.4(44158) idle systemd+ 521763 0.0 0.0 34813376 20288 ? Ss 12:44 0:00 postgres: postgres xytocc_business 10.29.105.4(44160) idle systemd+ 521764 0.0 0.0 34813376 20224 ? Ss 12:44 0:00 postgres: postgres xytocc_business 10.29.105.4(44162) idle systemd+ 522320 0.2 0.9 34815232 627264 ? Ss 12:45 0:00 postgres: postgres xytocc_business 10.201.9.36(41252) idle systemd+ 522327 0.4 0.9 34815040 630272 ? Ss 12:45 0:01 postgres: postgres xytocc_business 10.201.9.36(41308) idle systemd+ 522335 5.0 0.9 34816192 644800 ? Ss 12:45 0:17 postgres: postgres xytocc_business 10.201.9.36(41326) idle systemd+ 522336 0.6 0.9 34815104 629760 ? Ss 12:45 0:02 postgres: postgres xytocc_business 10.201.9.36(41334) idle systemd+ 522341 3.9 0.9 34815232 646912 ? Ss 12:45 0:13 postgres: postgres xytocc_business 10.201.9.36(41352) idle systemd+ 522342 0.1 0.9 34815104 615552 ? Ss 12:45 0:00 postgres: postgres xytocc_business 10.201.9.36(41356) idle systemd+ 522347 1.8 0.9 34815232 637248 ? Ss 12:45 0:06 postgres: postgres xytocc_business 10.201.9.36(41366) idle systemd+ 523318 0.0 0.0 34813376 20416 ? Ss 12:46 0:00 postgres: postgres xytocc_business 10.29.105.4(50124) idle systemd+ 523319 0.0 0.0 34813376 20352 ? Ss 12:46 0:00 postgres: postgres xytocc_business 10.29.105.4(50126) idle systemd+ 523828 0.0 0.0 34813376 20416 ? Ss 12:46 0:00 postgres: postgres xytocc_business 10.201.8.21(33150) idle systemd+ 523981 0.0 0.0 34813376 20352 ? Ss 12:46 0:00 postgres: postgres xytocc_business 10.29.105.4(52278) idle systemd+ 523982 0.0 0.0 34813376 20352 ? Ss 12:46 0:00 postgres: postgres xytocc_business 10.29.105.4(52280) idle systemd+ 523983 0.0 0.0 34813376 20352 ? Ss 12:46 0:00 postgres: postgres xytocc_business 10.29.105.4(52282) idle systemd+ 526877 0.0 0.0 34813376 20352 ? Ss 12:49 0:00 postgres: postgres xytocc_business 10.29.105.4(60838) idle systemd+ 526878 0.0 0.0 34813376 20352 ? Ss 12:49 0:00 postgres: postgres xytocc_business 10.29.105.4(60840) idle systemd+ 526900 2.6 5.8 34833984 3865408 ? Ds 12:49 0:02 postgres: autovacuum worker xytocc_business systemd+ 527391 0.0 0.0 34813376 20352 ? Ss 12:49 0:00 postgres: postgres xytocc_business 10.29.105.4(62338) idle systemd+ 527392 0.0 0.0 34813376 20352 ? Ss 12:49 0:00 postgres: postgres xytocc_business 10.29.105.4(62340) idle systemd+ 527393 0.0 0.0 34813376 20352 ? Ss 12:49 0:00 postgres: postgres xytocc_business 10.29.105.4(62342) idle systemd+ 527862 100 9.1 35509440 6005760 ? Rs 12:50 0:48 postgres: postgres xytocc_business 10.201.9.36(48400) SELECT systemd+ 527866 0.0 0.0 34813568 31936 ? Ss 12:50 0:00 postgres: postgres xytocc_business 10.201.9.36(48442) idle systemd+ 527876 94.7 3.2 34814656 2100864 ? Rs 12:50 0:45 postgres: postgres xytocc_business 10.201.9.36(48514) BIND systemd+ 527885 93.9 3.3 34814720 2185728 ? Rs 12:50 0:44 postgres: postgres xytocc_business 10.201.9.36(48528) INSERT root 528826 0.0 0.0 214016 1536 pts/0 S+ 12:51 0:00 grep postgre systemd+ 569629 0.3 16.2 34983040 10678656 ? Ss Jul10 17:53 postgres: postgres xytocc_business 10.201.8.41(38250) idle systemd+ 816752 0.3 47.2 35111040 31024064 ? Ss Jun25 95:37 postgres: postgres xytocc_business 10.201.8.41(44936) idle systemd+ 856330 0.0 0.0 34813376 23424 ? Ss Jul11 0:03 postgres: postgres xytocc_business 10.29.105.4(34090) idle systemd+ 1141065 1.5 10.6 34895872 6967360 ? Ss Jul11 72:02 postgres: postgres xytocc_business 10.29.105.4(20448) idle systemd+ 1141451 1.6 10.1 34897408 6642048 ? Ss Jul11 75:57 postgres: postgres xytocc_business 10.29.105.4(22266) idle systemd+ 1148543 0.0 0.6 34815808 397120 ? Ss Jul11 0:24 postgres: postgres xytocc_business 10.201.8.43(60986) idle systemd+ 1154706 0.5 5.9 34935744 3872704 ? Ss Jul11 25:12 postgres: postgres xytocc_business 10.201.8.43(48754) idle systemd+ 1154707 0.7 5.9 34938496 3899968 ? Ss Jul11 32:45 postgres: postgres xytocc_business 10.201.8.42(34528) idle systemd+ 1195945 2.6 11.0 34908224 7269376 ? Ss Jul11 119:46 postgres: postgres xytocc_business 10.201.8.43(35608) idle systemd+ 1309795 2.2 6.0 34929280 3964096 ? Ss Jul11 97:23 postgres: postgres xytocc_business 10.201.8.41(48050) idle systemd+ 1359058 1.8 14.8 34929344 9769920 ? Ds Jun30 379:01 postgres: postgres xytocc_business 10.201.8.41(43012) INSERT systemd+ 1441579 0.9 14.9 35028800 9825472 ? Ss Jul11 38:16 postgres: postgres xytocc_business 10.201.8.43(46736) idle systemd+ 1467690 0.1 31.3 34964480 20551040 ? Ss Jul11 6:51 postgres: postgres xytocc_business 10.201.8.41(44288) idle systemd+ 1587365 2.5 12.0 35066176 7932800 ? Ss Jul11 103:03 postgres: postgres xytocc_business 10.29.105.4(9276) idle systemd+ 1633448 0.8 0.0 34813568 14208 ? Ss Jul11 35:19 postgres: walsender repl 10.201.9.50(46462) streaming 2CDC/7D44EA88 systemd+ 1637669 0.2 23.2 34813696 15273792 ? Ss Jun30 42:35 postgres: postgres xytocc_business 10.201.8.41(33434) idle systemd+ 1952392 0.2 43.1 35442688 28322624 ? Ss Jul12 9:51 postgres: postgres xytocc_business 10.201.8.42(50898) idle systemd+ 2278828 0.0 17.3 34967552 11385728 ? Ss Jul12 2:15 postgres: postgres xytocc_business 10.201.8.41(47112) idle systemd+ 2293552 1.0 12.6 35038848 8286144 ? Ss Jul12 32:08 postgres: postgres xytocc_business 10.201.8.42(38900) idle systemd+ 2412923 0.1 1.5 34808640 1029440 ? Ss Jun12 75:28 postgres systemd+ 2412956 0.0 0.0 69312 6144 ? Ss Jun12 0:03 postgres: logger systemd+ 2412966 0.4 48.3 34813632 31724736 ? Ss Jun12 203:51 postgres: checkpointer systemd+ 2412967 0.0 46.7 34810368 30653696 ? Ss Jun12 27:28 postgres: background writer systemd+ 2412968 0.1 0.2 34808640 138304 ? Ss Jun12 47:11 postgres: walwriter systemd+ 2412969 0.0 0.0 34812992 11328 ? Ss Jun12 5:24 postgres: autovacuum launcher systemd+ 2412970 0.2 0.0 76032 11200 ? Ds Jun12 135:54 postgres: stats collector systemd+ 2412971 0.0 0.0 34812800 10432 ? Ss Jun12 0:51 postgres: logical replication launcher systemd+ 2412994 0.1 35.7 34942528 23426368 ? Ss Jun12 52:43 postgres: postgres xytocc_business 10.29.105.4(21246) idle systemd+ 2412995 7.8 36.6 35916224 24055424 ? Ss Jun12 3642:53 postgres: postgres xytocc_business 10.29.105.4(21248) idle systemd+ 2413232 0.0 2.2 34813376 1455232 ? Ss Jun12 3:16 postgres: postgres xytocc_business 10.201.8.41(49564) idle systemd+ 2413241 1.2 0.6 34814144 429504 ? Ss Jun12 579:21 postgres: postgres xytocc_business 10.29.105.4(22132) idle systemd+ 2413242 1.2 0.6 34814144 428288 ? Ss Jun12 585:58 postgres: postgres xytocc_business 10.201.8.42(51444) idle systemd+ 2413243 1.2 0.6 34814144 428288 ? Ss Jun12 602:20 postgres: postgres xytocc_business 10.29.105.4(22136) idle systemd+ 2413250 1.2 0.6 34814144 420736 ? Ss Jun12 567:21 postgres: postgres xytocc_business 10.201.8.43(53388) idle systemd+ 2413735 1.8 46.9 34980480 30803392 ? Ss Jun12 870:41 postgres: postgres xytocc_business 10.201.8.43(51974) idle systemd+ 2419961 0.0 3.4 34813376 2245120 ? Ss Jun12 1:06 postgres: postgres xytocc_business 10.29.105.4(55866) idle systemd+ 2419962 0.0 3.4 34813376 2242624 ? Ss Jun12 1:06 postgres: postgres xytocc_business 10.29.105.4(55868) idle systemd+ 2431267 0.1 43.9 34942080 28844224 ? Ss Jun12 89:45 postgres: postgres xytocc_business 10.29.105.4(50476) idle systemd+ 2431268 0.0 29.6 34940544 19459648 ? Ss Jun12 38:22 postgres: postgres xytocc_business 10.29.105.4(50478) idle systemd+ 2433716 0.0 0.1 34813504 86784 ? Ss Jun12 0:46 postgres: postgres xytocc_business 10.29.105.4(63412) idle systemd+ 2439761 0.0 0.1 34813568 82560 ? Ss Jun12 0:44 postgres: postgres xytocc_business 10.29.105.4(30996) idle systemd+ 2540527 0.7 7.6 34890240 4987328 ? Ss Jul12 20:07 postgres: postgres xytocc_business 10.201.8.42(52584) idle systemd+ 2572791 3.3 41.5 34958144 27241024 ? Ss Jul08 275:51 postgres: postgres xytocc_business 10.201.8.41(37346) idle systemd+ 2817354 3.6 20.0 34926016 13177088 ? Ss Jul12 87:08 postgres: postgres xytocc_business 10.201.8.41(59400) idle systemd+ 2835108 0.2 42.0 34941376 27573056 ? Ss Jun12 104:52 postgres: postgres xytocc_business 10.29.105.4(12496) idle systemd+ 2904091 0.0 0.0 34813568 36544 ? Ss Jun23 0:05 postgres: postgres xytocc_business 10.29.105.4(53746) idle systemd+ 3002596 0.0 27.3 34932672 17923584 ? Ss Jul13 1:08 postgres: postgres xytocc_business 10.201.8.41(53886) idle systemd+ 3388834 0.0 6.2 34928768 4104960 ? Ss Jul13 0:50 postgres: postgres xytocc_business 10.201.8.43(44382) idle systemd+ 3419404 2.8 15.8 35098624 10430080 ? Ss Jul09 199:49 postgres: postgres xytocc_business 10.201.8.43(44776) idle systemd+ 3419408 2.7 13.0 35077888 8567168 ? Ss Jul09 193:15 postgres: postgres xytocc_business 10.201.8.42(47776) idle systemd+ 3427806 1.1 3.7 34934016 2490240 ? Ss Jul13 18:07 postgres: postgres xytocc_business 10.201.8.43(47192) idle systemd+ 3448065 0.0 0.0 34813376 23680 ? Ss Jul13 0:01 postgres: postgres xytocc_business 10.29.105.4(21380) idle systemd+ 3535566 0.3 46.6 35674304 30582656 ? Ss Jul09 22:49 postgres: postgres xytocc_business 10.201.8.42(60030) idle systemd+ 3599835 0.0 1.3 34822592 892416 ? Ss Jul13 1:00 postgres: postgres xytocc_business 10.29.105.4(54160) idle systemd+ 3717752 0.5 13.8 34986176 9094848 ? Ss Jul13 7:09 postgres: postgres xytocc_business 10.29.105.4(21708) idle systemd+ 3717754 0.6 10.9 34982144 7188352 ? Ss Jul13 8:28 postgres: postgres xytocc_business 10.29.105.4(21714) idle systemd+ 3736178 0.2 15.0 35421120 9871360 ? Ss Jul13 2:47 postgres: postgres xytocc_business 10.201.8.42(38204) idle systemd+ 3851087 0.3 2.7 34955328 1799552 ? Ss Jul13 3:16 postgres: postgres xytocc_business 10.201.8.41(59724) idle systemd+ 3878356 0.6 4.0 34955456 2676800 ? Ss Jul13 6:34 postgres: postgres xytocc_business 10.201.8.41(56436) idle systemd+ 4105266 1.8 11.2 34961984 7361856 ? Ss 00:54 12:54 postgres: postgres xytocc_business 10.201.8.41(46510) idle 用了多少运行内存
07-15
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值