gpdb cdb
- 1 Data structures
- 1.1 Slice Table
- 2 PostgresMain
- 2.1 Call graph (QE):
- 2.2 QD
- 3 Receiver
- 4 Sender
1 Data structures
1.1 Slice Table
| |
| |
ResourceGroupGetQueryMemoryLimit(void) 用于获取内存限制的绝对大小 (非百分比)绕开资源限制模式
Enabled when:
gp_resource_group_bypass is true: guc_gp.c
| |
Or command is one of:
本文为摘录(或转载),侵删,原文为: -https://docs.vmware.com/en/VMware-Tanzu-Greenplum/6/greenplum-database/GUID-install_guide-prep_os.html#networking -https://docs.vmware.com/en/VMware-Tanzu-Greenplum/6/greenplum-database/GUID-install_guide-prep_os.html
IP Fragmentation Settings
When the Greenplum Database interconnect uses UDP (the default), the network interface card controls IP packet fragmentation and reassemblies.
If the UDP message size is larger than the size of the maximum transmission unit (MTU) of a network, the IP layer fragments the message. (Refer to Networking later in this topic for more information about MTU sizes for Greenplum Database.) The receiver must store the fragments in a buffer before it can reorganize and reassemble the message.
本文为摘录(或转载),侵删,原文为: ../../../Work/pg_master/src/backend/access/hash/README
这个目录包含了 Postgres 的散列索引实现。其中大部分核心思想来自于 Margo Seltzer 和 Ozan Yigit 在 1991 年 1 月举行的冬季 USENIX 会议上的论文《A New Hashing Package for UNIX》。我们的内存哈希表实现(src/backend/utils/hash/dynahash.c)也依赖于相同的概念;它源自于 Esmond Pitt 编写的代码,后来又由 Margo 和其他人进行了改进。
本文为摘录(或转载),侵删,原文为: https://www.digitalocean.com/community/tutorials/how-to-use-journalctl-to-view-and-manipulate-systemd-logs
要查看 journald 守护程序收集的日志,请使用 journalctl 命令。
当单独使用时,系统中的每个日志条目都会在翻页器(通常是 less)中显示,供您浏览。最旧的条目将显示在顶部:
本文为摘录(或转载),侵删,原文为: attachments/pdf/e/p1092-loghin.pdf
Abbrs:
学术界出现了集成分布式数据库与区块链特性的系统
本文为摘录(或转载),侵删,原文为: attachments/pdf/8/p3548-yan.pdf
下一代向量数据库应该有的特性:
Manu 通过放宽数据模型和一致性约束来换取上述特性:
本文为摘录(或转载),侵删,原文为: attachments/pdf/a/p1187-zhang.pdf
PM stands for Persistent Memory, 持久内存,它是一种非易失性内存,即使断电也能保留数据。
eADR 保证了 CPU 缓存中的数据在电源故障时会被刷新到 PM 中