Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
awesome-postgres-hacking
A curated list of awesome PostgreSQL hacking resources.
https://github.com/pghacking/awesome-postgres-hacking
Last synced: 4 days ago
JSON representation
-
Core Hacking
-
Books
- PostgreSQL 14 Internals - Egor Rogov - This book is for those who will not settle for a black-box approach when working with a database.
- The Internals of PostgreSQL - Hironobu SUZUKI - The main purposes of this document are to explain how each subsystem works, and to provide the whole picture of PostgreSQL.
- PostgreSQL 14 Internals - Egor Rogov - This book is for those who will not settle for a black-box approach when working with a database.
-
Community
-
Contributing
- Developer FAQ
- So, you want to be a developer?
- Submitting a Patch
- Walk-through of implementing simple Postgres patch. From sources to CI. - Andrey Borodin
- PGConf.EU 2023, Making your patch more committable - Melanie Plageman
- Developer FAQ
- So, you want to be a developer?
- Submitting a Patch
- Walk-through of implementing simple Postgres patch. From sources to CI. - Andrey Borodin
- PGConf.EU 2023, Making your patch more committable - Melanie Plageman
- PGConf.EU 2023, PostgreSQL Hacker Tips - Michael Paquier
- PGConf.EU 2023, PostgreSQL Hacker Tips - Michael Paquier
-
General
- A Tour of PostgreSQL Internals - Tom Lane, 2000
- PostgreSQL Backend Flowchart
- A Comprehensive Overview of PostgreSQL Query Processing Stages - Cary Huang
- Hooks in PostgreSQL - Guillaume Lelarge
- A Tour of PostgreSQL Internals - Tom Lane, 2000
- PostgreSQL Backend Flowchart
- A Comprehensive Overview of PostgreSQL Query Processing Stages - Cary Huang
- Hooks in PostgreSQL - Guillaume Lelarge
- Unofficial documentation for PostgreSQL hooks - Tamika Nomara
- Unofficial documentation for PostgreSQL hooks - Tamika Nomara
-
[Mailing Lists](https://www.postgresql.org/list/)
- pgsql-hackers - The PostgreSQL developers team lives here. Discussion of current development issues, problems and bugs, and proposed new features. If your question cannot be answered by people in the other lists, and it is likely that only a developer will know the answer, you may re-post your question in this list. You must try elsewhere first!
- pgsql-committers - Notification of git commits are sent to this list. Do not post here!
- pgsql-hackers - The PostgreSQL developers team lives here. Discussion of current development issues, problems and bugs, and proposed new features. If your question cannot be answered by people in the other lists, and it is likely that only a developer will know the answer, you may re-post your question in this list. You must try elsewhere first!
- pgsql-committers - Notification of git commits are sent to this list. Do not post here!
- pgsql-bugs - If you find a bug, please use the [bug reporting form](http://www.postgresql.org/support/submitbug).
- Posting Your Patch On pgsql-hackers - Robert Haas
- Will Postgres development rely on mailing lists forever? - Tomas Vondra
- pgsql-bugs - If you find a bug, please use the [bug reporting form](http://www.postgresql.org/support/submitbug).
- Posting Your Patch On pgsql-hackers - Robert Haas
- Will Postgres development rely on mailing lists forever? - Tomas Vondra
- Understanding the Postgres Hackers Mailing List Language - Greg Sabino Mullane
- Understanding the Postgres Hackers Mailing List Language - Greg Sabino Mullane
-
Planner
- Recent PostgreSQL Optimizer Improvements - Tom Lane, 2003
- Recent PostgreSQL Optimizer Improvements - Tom Lane, 2003
- Inside the PostgreSQL Query Optimizer - Neil Conway, 2005
- Inside the PostgreSQL Query Optimizer - Neil Conway, 2005
- PGCon 2011, Hacking the Query Planner - Tom Lane
- PGCon 2011, Hacking the Query Planner - Tom Lane
- PGCon 2020, Hacking the Query Planner, Again - Richard Guo - [slides](https://www.pgcon.org/events/pgcon_2020/sessions/session/39/slides/7/Hacking%20the%20Query%20Planner,%20Again.pdf)
- Understand PostgreSQL’s Planner – Simple Scan Paths vs Plans - Cary Huang
- PGCon 2020, Hacking the Query Planner, Again - Richard Guo - [slides](https://www.pgcon.org/events/pgcon_2020/sessions/session/39/slides/7/Hacking%20the%20Query%20Planner,%20Again.pdf)
- Understand PostgreSQL’s Planner – Simple Scan Paths vs Plans - Cary Huang
- CMU Database Group, PostgreSQL Optimizer Methodology - Robert Haas
- PGCon 2019, Learning to Hack on Postgres Planner - Melanie Plageman
- CMU Database Group, PostgreSQL Optimizer Methodology - Robert Haas
- PGCon 2019, Learning to Hack on Postgres Planner - Melanie Plageman
-
Executor
- Query Evaluation Techniques in PostgreSQL - Neil Conway, 2007
- Query Evaluation Techniques in PostgreSQL - Neil Conway, 2007
-
Storage
- PGCon 2022, Breaking away from FREEZE and Wraparound - Masahiko Sawada
- PGConf.dev 2024, Problem in PostgreSQL SLRU - And how we are optimizing it - Dilip Kumar
- PGCon 2022, Breaking away from FREEZE and Wraparound - Masahiko Sawada
- PGConf.dev 2024, Problem in PostgreSQL SLRU - And how we are optimizing it - Dilip Kumar
-
Performance Analysis
- Dynamic Tracing
- Dynamic Tracing
- Citus Con 2022, Analyzing Postgres performance problems using perf and eBPF - Andres Freund - [slides](https://anarazel.de/talks/2022-04-12-cituscon/perf-bpf.pdf)
- PGConf.dev 2024, Analyzing cacheline contention using perf c2c - Andres Freund - [slides](https://anarazel.de/talks/2024-05-29-pgconf-dev-c2c/postgres-perf-c2c.pdf)
- Citus Con 2022, Analyzing Postgres performance problems using perf and eBPF - Andres Freund - [slides](https://anarazel.de/talks/2022-04-12-cituscon/perf-bpf.pdf)
- PGConf.dev 2024, Analyzing cacheline contention using perf c2c - Andres Freund - [slides](https://anarazel.de/talks/2024-05-29-pgconf-dev-c2c/postgres-perf-c2c.pdf)
-
Tools
- pg_plugins - Michael Paquier - Gathering of template plugins for PostgreSQL: background workers, logical replication things, etc.
- .devcontainer - Junwang Zhao - Unofficial devcontainer config for Postgres
- pg_plugins - Michael Paquier - Gathering of template plugins for PostgreSQL: background workers, logical replication things, etc.
- .devcontainer - Junwang Zhao - Unofficial devcontainer config for Postgres
-
-
Extension Hacking
-
Tools
- pgrx - Build Postgres Extensions with Rust!
- pgzx - Create PostgreSQL extensions using Zig.
- PGCon 2023, Writing a Foreign Data Wrapper - Christophe Pettus
- pgrx - Build Postgres Extensions with Rust!
- pgzx - Create PostgreSQL extensions using Zig.
- PGCon 2023, Writing a Foreign Data Wrapper - Christophe Pettus
-
Programming Languages
Categories
Sub Categories