├── LICENSE ├── Postgres14book_preview.pdf ├── README.md ├── chapters ├── CHAPTER01.md ├── CHAPTER02.md ├── CHAPTER03.md ├── CHAPTER04.md ├── CHAPTER05.md ├── CHAPTER06.md ├── CHAPTER07.md ├── CHAPTER08.md ├── CHAPTER09.md ├── CHAPTER10.md ├── CHAPTER11.md ├── CHAPTER12.md ├── CHAPTER13.md ├── CHAPTER14.md ├── CHAPTER15.md ├── CHAPTER16.md ├── CHAPTER17.md ├── CHAPTER18.md ├── CHAPTER19.md ├── CHAPTER20.md ├── CHAPTER21.md ├── CHAPTER22.md ├── CHAPTER23.md ├── CHAPTER24.md └── CHAPTER25.md └── scripts ├── 10 ├── config.txt └── parameters.md ├── 11 └── bigdata.txt ├── 12 └── indexes.txt ├── 13 └── joins.txt ├── 14 └── stats.txt ├── 15 └── opt.txt ├── 16 └── part.txt ├── 17 ├── backup.txt ├── pg_probackup.txt └── wal-g.txt ├── 18 └── replica.txt ├── 19 ├── GKE.txt ├── deployment.yaml ├── pod.yaml ├── postgres-configmap.yaml ├── postgres-deployment.yaml ├── postgres-service.yaml ├── postgres-service2.yaml ├── postgres-storage.yaml ├── postgres.yaml ├── rs.yaml └── service.yaml ├── 20 └── ha.txt ├── 21 ├── csv.zip ├── my_values.yaml └── parallel.txt ├── 22 └── GCP.txt ├── 23 └── AWS.txt ├── 24 └── Azure.txt ├── 25 └── Yandex.txt ├── 01 ├── docker-compose.yml └── install.txt ├── 02 └── physical_level.txt ├── 03 └── psql.txt ├── 04 └── mvcc.txt ├── 05 └── isolation.txt ├── 06 └── logical.txt ├── 07 └── users.txt ├── 08 └── wal.txt └── 09 └── locks.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/LICENSE -------------------------------------------------------------------------------- /Postgres14book_preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/Postgres14book_preview.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/README.md -------------------------------------------------------------------------------- /chapters/CHAPTER01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER01.md -------------------------------------------------------------------------------- /chapters/CHAPTER02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER02.md -------------------------------------------------------------------------------- /chapters/CHAPTER03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER03.md -------------------------------------------------------------------------------- /chapters/CHAPTER04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER04.md -------------------------------------------------------------------------------- /chapters/CHAPTER05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER05.md -------------------------------------------------------------------------------- /chapters/CHAPTER06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER06.md -------------------------------------------------------------------------------- /chapters/CHAPTER07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER07.md -------------------------------------------------------------------------------- /chapters/CHAPTER08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER08.md -------------------------------------------------------------------------------- /chapters/CHAPTER09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER09.md -------------------------------------------------------------------------------- /chapters/CHAPTER10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER10.md -------------------------------------------------------------------------------- /chapters/CHAPTER11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER11.md -------------------------------------------------------------------------------- /chapters/CHAPTER12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER12.md -------------------------------------------------------------------------------- /chapters/CHAPTER13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER13.md -------------------------------------------------------------------------------- /chapters/CHAPTER14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER14.md -------------------------------------------------------------------------------- /chapters/CHAPTER15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER15.md -------------------------------------------------------------------------------- /chapters/CHAPTER16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER16.md -------------------------------------------------------------------------------- /chapters/CHAPTER17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER17.md -------------------------------------------------------------------------------- /chapters/CHAPTER18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER18.md -------------------------------------------------------------------------------- /chapters/CHAPTER19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER19.md -------------------------------------------------------------------------------- /chapters/CHAPTER20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER20.md -------------------------------------------------------------------------------- /chapters/CHAPTER21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER21.md -------------------------------------------------------------------------------- /chapters/CHAPTER22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER22.md -------------------------------------------------------------------------------- /chapters/CHAPTER23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER23.md -------------------------------------------------------------------------------- /chapters/CHAPTER24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER24.md -------------------------------------------------------------------------------- /chapters/CHAPTER25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/chapters/CHAPTER25.md -------------------------------------------------------------------------------- /scripts/01/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/01/docker-compose.yml -------------------------------------------------------------------------------- /scripts/01/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/01/install.txt -------------------------------------------------------------------------------- /scripts/02/physical_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/02/physical_level.txt -------------------------------------------------------------------------------- /scripts/03/psql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/03/psql.txt -------------------------------------------------------------------------------- /scripts/04/mvcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/04/mvcc.txt -------------------------------------------------------------------------------- /scripts/05/isolation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/05/isolation.txt -------------------------------------------------------------------------------- /scripts/06/logical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/06/logical.txt -------------------------------------------------------------------------------- /scripts/07/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/07/users.txt -------------------------------------------------------------------------------- /scripts/08/wal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/08/wal.txt -------------------------------------------------------------------------------- /scripts/09/locks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/09/locks.txt -------------------------------------------------------------------------------- /scripts/10/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/10/config.txt -------------------------------------------------------------------------------- /scripts/10/parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/10/parameters.md -------------------------------------------------------------------------------- /scripts/11/bigdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/11/bigdata.txt -------------------------------------------------------------------------------- /scripts/12/indexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/12/indexes.txt -------------------------------------------------------------------------------- /scripts/13/joins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/13/joins.txt -------------------------------------------------------------------------------- /scripts/14/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/14/stats.txt -------------------------------------------------------------------------------- /scripts/15/opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/15/opt.txt -------------------------------------------------------------------------------- /scripts/16/part.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/16/part.txt -------------------------------------------------------------------------------- /scripts/17/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/17/backup.txt -------------------------------------------------------------------------------- /scripts/17/pg_probackup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/17/pg_probackup.txt -------------------------------------------------------------------------------- /scripts/17/wal-g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/17/wal-g.txt -------------------------------------------------------------------------------- /scripts/18/replica.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/18/replica.txt -------------------------------------------------------------------------------- /scripts/19/GKE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/GKE.txt -------------------------------------------------------------------------------- /scripts/19/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/deployment.yaml -------------------------------------------------------------------------------- /scripts/19/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/pod.yaml -------------------------------------------------------------------------------- /scripts/19/postgres-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/postgres-configmap.yaml -------------------------------------------------------------------------------- /scripts/19/postgres-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/postgres-deployment.yaml -------------------------------------------------------------------------------- /scripts/19/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/postgres-service.yaml -------------------------------------------------------------------------------- /scripts/19/postgres-service2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/postgres-service2.yaml -------------------------------------------------------------------------------- /scripts/19/postgres-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/postgres-storage.yaml -------------------------------------------------------------------------------- /scripts/19/postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/postgres.yaml -------------------------------------------------------------------------------- /scripts/19/rs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/rs.yaml -------------------------------------------------------------------------------- /scripts/19/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/19/service.yaml -------------------------------------------------------------------------------- /scripts/20/ha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/20/ha.txt -------------------------------------------------------------------------------- /scripts/21/csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/21/csv.zip -------------------------------------------------------------------------------- /scripts/21/my_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/21/my_values.yaml -------------------------------------------------------------------------------- /scripts/21/parallel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/21/parallel.txt -------------------------------------------------------------------------------- /scripts/22/GCP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/22/GCP.txt -------------------------------------------------------------------------------- /scripts/23/AWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/23/AWS.txt -------------------------------------------------------------------------------- /scripts/24/Azure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/24/Azure.txt -------------------------------------------------------------------------------- /scripts/25/Yandex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeuge/Postgres14book/HEAD/scripts/25/Yandex.txt --------------------------------------------------------------------------------