postgresql

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
postgresql [2024/02/06 09:16] adminpostgresql [2024/08/04 02:07] (current) – [Postgresql] admin
Line 1: Line 1:
 ====== Postgresql ====== ====== Postgresql ======
 +<code PYTHON> 
 +
 +psql -h 192.168.1.100 -p 5432 -U u1 mydatabase
 +
 +
 +import psycopg2
 +conn = psycopg2.connect("host='10.59.1.50' dbname='DB' user='perm' password='perm'")
 +</code>
 ===== Interesting sites ===== ===== Interesting sites =====
 ** PostgreSQL ** ** PostgreSQL **
 +  * https://postgresqlco.nf/ - configuration
   * https://pgpedia.info/ - encyclopedia of postgres   * https://pgpedia.info/ - encyclopedia of postgres
   * https://www.interdb.jp/pg/ - internal structure postgresql  Pavel Kopalov, [13.04.21 22:23]     * https://www.interdb.jp/pg/ - internal structure postgresql  Pavel Kopalov, [13.04.21 22:23]  
Line 19: Line 28:
   * <https://dbdiagram.io/home> нарисовать диаграмму данных    * <https://dbdiagram.io/home> нарисовать диаграмму данных 
  
 +** Kubernetes - postgres VIEW  **
 +  * https://cloudnative-pg.io/documentation/1.19/
  
 ===== Postgres.Cmd ===== ===== Postgres.Cmd =====
Line 49: Line 60:
 ++++ ++++
 ===== Postgres.Sql ===== ===== Postgres.Sql =====
 +  * https://habr.com/ru/articles/791260/ - courses
   * https://gist.github.com/rgreenjr/3637525 - useful sqls   * https://gist.github.com/rgreenjr/3637525 - useful sqls
   * https://habr.com/ru/post/280912/ Pg Трюки   * https://habr.com/ru/post/280912/ Pg Трюки
Line 743: Line 755:
  
   *  shared memory no space left https://medium.com/@tough_jonquil_dog_815/postgresql-no-space-left-on-device-a9c5c3b41cff   *  shared memory no space left https://medium.com/@tough_jonquil_dog_815/postgresql-no-space-left-on-device-a9c5c3b41cff
 +  * docker shared memory https://www.instaclustr.com/blog/postgresql-docker-and-shared-memory/
  
 ==== Postgres.DBA locale collation LC_COLLATE setlocale==== ==== Postgres.DBA locale collation LC_COLLATE setlocale====
Line 1214: Line 1227:
   * Wal-g - https://habr.com/ru/post/506610/ - пример   * Wal-g - https://habr.com/ru/post/506610/ - пример
   * пример ручного dump c WAL https://pgdash.io/blog/postgres-incremental-backup-recovery.html   * пример ручного dump c WAL https://pgdash.io/blog/postgres-incremental-backup-recovery.html
 +  * пример pg_backup <https://stormatics.tech/blogs/postgresql-physical-backups-using-pg_basebackup-a-comprehensive-guide>
  
 === Wal-g.Backup статьи === === Wal-g.Backup статьи ===
Line 1370: Line 1384:
 ===== Postgres Cluster ===== ===== Postgres Cluster =====
 https://github.com/vitabaks/postgresql_cluster https://github.com/vitabaks/postgresql_cluster
-===== Postgres Information =====+===== Postgres Information , monitoring , performance , tools =====
  
   * :!:[[https://tapoueh.org/conf/|Автор Postgresql]]   * :!:[[https://tapoueh.org/conf/|Автор Postgresql]]
Line 1395: Line 1409:
   * [[https://www.slideshare.net/samokhvalov/postgres-docker-highload-2018|Docker Highload]]   * [[https://www.slideshare.net/samokhvalov/postgres-docker-highload-2018|Docker Highload]]
   * [[https://tapoueh.org/tags/concurrency/|Postgresql concurrency]]   * [[https://tapoueh.org/tags/concurrency/|Postgresql concurrency]]
 +  * [[https://habr.com/ru/companies/tensor/articles/808931/|Неожиданные последствия запуска PostgreSQL в Docker: отключение JIT и разбор запросов / Хабр
  
 ==== Postgres.Pooler ==== ==== Postgres.Pooler ====
Line 1427: Line 1442:
 ===== Postgres Install ===== ===== Postgres Install =====
   * postgres install example in docker https://habr.com/ru/post/578744/   * postgres install example in docker https://habr.com/ru/post/578744/
 +  * https://habr.com/ru/articles/735274/comments/ - postgresql docker shared_buffers effective_cache_size work_mem shm_size Random_page_cost ssd
  
 ===== Postgres Additional info ===== ===== Postgres Additional info =====
  • postgresql.1707210994.txt.gz
  • Last modified: 2024/02/06 09:16
  • by admin