PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

PostgreSQL के लिए pt-pg-सारांश Percona टूलकिट का उपयोग करना

पेरकोना टूलकिट पेरकोना द्वारा विकसित एक शक्तिशाली, मुक्त और मुक्त स्रोत उत्पाद है। यह कमांड-लाइन टूल का एक संग्रह है जो आपको विभिन्न MySQL, MongoDB, PostgreSQL और सिस्टम कार्यों को करने की अनुमति देता है, जो सामान्य रूप से मैन्युअल रूप से करने के लिए बहुत जटिल हैं। यह MySQL, MySQL, MariaDB, PostgreSQL, MongoDB के लिए Percona सर्वर और MongoDB के लिए Percona सर्वर को सपोर्ट करता है।

इस ब्लॉग में, हम आपको दिखाएंगे कि पेरकोना टूलकिट कैसे स्थापित करें और पीटी-पीजी-सारांश नामक पेरकोना टूलकिट पैकेज में हाल ही में जोड़े गए एक नए टूल का उपयोग कैसे करें।

पेरकोना टूलकिट इंस्टॉल करना

सबसे पहले, आइए देखें कि पीटी-पीजी-सारांश का उपयोग करने में सक्षम होने के लिए पेरकोना टूलकिट कैसे स्थापित करें। इस मामले में, हम CentOS 7 और PostgreSQL 12 का उपयोग करेंगे।

पेरकोना भंडार स्थापित करें:

$ yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm

रिपॉजिटरी स्थापित होने के बाद, आपको परकोना-टूलकिट पैकेज स्थापित करने में सक्षम होना चाहिए:

$ yum install percona-toolkit

अब आपको इसे सही पैरामीटर का उपयोग करके चलाने की आवश्यकता है।

$ pt-pg-summary --help

usage: pt-pg-summary [<flags>]

Percona Toolkit - PostgreSQL Summary

Flags:

      --help                     Show context-sensitive help (also try --help-long and --help-man).

      --version                  Show application version.

      --databases=DATABASES ...  Summarize this comma-separated list of databases. All if not specified

  -h, --host=HOST                Host to connect to

  -W, --password=PASSWORD        Password to use when connecting

  -p, --port=PORT                Port number to use for connection

      --sleep=10                 Seconds to sleep when gathering status counters

  -U, --username=USERNAME        User for login if not current user

      --disable-ssl              Diable SSL for the connection

      --verbose                  Show verbose log

      --debug                    Show debug information in the logs

पेरकोना टूलकिट चलाना

जब आप इस टूल को चलाते हैं, तो आपको निम्न श्रेणियों द्वारा समूहीकृत एक आउटपुट दिखाई देगा:

  • डेटाबेस पोर्ट और Data_Directory
  • टेबलस्पेस की सूची
  • दास और गुरु के साथ अंतराल
  • क्लस्टर जानकारी
  • डेटाबेस
  • इंडेक्स कैश हिट अनुपात
  • टेबल कैश हिट अनुपात
  • संपूर्ण क्लस्टर के लिए Wait_events की सूची - सभी-डेटाबेस
  • उपयोगकर्ताओं की सूची और client_addr या client_hostname --all-databases से कनेक्टेड हैं
  • 10 सेकंड के बाद काउंटर अलग हो जाते हैं
  • प्रति डेटाबेस टेबल एक्सेस
  • इंस्टेंस सेटिंग
  • स्टार्टअप कमांड को प्रोसेस करता है

तो, एक उदाहरण देखने के लिए इसे PostgreSQL इंस्टेंस पर चलाते हैं:

$ pt-pg-summary -hlocalhost -p5432 -Uadmindb

पहली कार्रवाई आपके PostgreSQL सर्वर से जानकारी एकत्र करना है:

INFO[0000] Connecting to the database server using: host=localhost port=5432 user=admindb sslmode=disable dbname=postgres

INFO[0000] Connection OK

INFO[0000] Detected PostgreSQL version: 12.0.5

INFO[0000] Getting global information

INFO[0000] Collecting global counters (1st pass)

INFO[0000] Collecting Cluster information

INFO[0000] Waiting 10 seconds to read  counters

INFO[0000] Collecting Connected Clients information

INFO[0000] Collecting Database Wait Events information

INFO[0000] Collecting Global Wait Events information

...

फिर, यह सभी एकत्रित जानकारी को इस तरह दिखाएगा:

##### --- Database Port and Data_Directory --- ####

+----------------------+----------------------------------------------------+

|         Name         |                      Setting                       |

+----------------------+----------------------------------------------------+

| data_directory       | /var/lib/pgsql/12/data                             |

+----------------------+----------------------------------------------------+

##### --- List of Tablespaces ---- ######

+----------------------+----------------------+-----------------------------+

|         Name         |         Owner        |               Location      |

+----------------------+----------------------+-----------------------------+

| pg_default           | postgres             |                             |

| pg_global            | postgres             |                             |

+----------------------+----------------------+-----------------------------+

##### --- Slave and the lag with Master --- ####

+----------------------+----------------------+------------------+----------+

|  Application Name    |    Client Address    |      State       |   Lag    |

+----------------------+----------------------+------------------+----------+

| pgsql_14_node_0      | 10.10.10.127         | streaming        |     0.00 |

+----------------------+----------------------+------------------+----------+

##### --- Cluster Information --- ####

+---------------------------------------------------------------------------+

 Usename        : admindb

 Time           : 2020-11-12 17:27:18.200552 +0000 UTC

 Client Address : ::1

 Client Hostname:

 Version        : PostgreSQL 12.5 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8....

 Started        : 2020-11-12 17:07:07.185407 +0000 UTC

 Is Slave       : false

+---------------------------------------------------------------------------+

##### --- Databases --- ####

+----------------------+------------+

|       Dat Name       |    Size    |

+----------------------+------------+

| postgres             |    8193 kB |

| template1            |    8193 kB |

| template0            |    8049 kB |

+----------------------+------------+

##### --- Index Cache Hit Ratios --- ####

Database: postgres

+----------------------+------------+

|      Index Name      |    Ratio   |

+----------------------+------------+

| index hit rate       |      0.00  |

+----------------------+------------+

##### --- Table Cache Hit Ratios --- ####

Database: postgres

+----------------------+------------+

|      Index Name      |    Ratio   |

+----------------------+------------+

| cache hit rate       |       0.00 |

+----------------------+------------+

##### --- List of Wait_events for the entire Cluster - all-databases --- ####

+----------------------+----------------------+---------+

|   Wait Event Type    |        Event         |  Count  |

+----------------------+----------------------+---------+

| Activity             | BgWriterHibernate    |     1   |

| Activity             | WalWriterMain        |     1   |

| Activity             | LogicalLauncherMain  |     1   |

| Activity             | WalSenderMain        |     1   |

| Client               | ClientRead           |     2   |

| Activity             | CheckpointerMain     |     1   |

| Activity             | AutoVacuumMain       |     1   |

+----------------------+----------------------+---------+

##### --- List of users and client_addr or client_hostname connected to --all-databases --- ####

+----------------------+------------+---------+----------------------+--------+

|   Wait Event Type    |        Client        |         State        |  Count |

+----------------------+------------+---------+----------------------+--------+

| admindb              | 10.10.10.121/32      | idle                 |      2 |

| cmon_replication     | 10.10.10.127/32      | active               |      1 |

| admindb              | ::1/128              | active               |      1 |

+----------------------+------------+---------+----------------------+--------+

##### --- Counters diff after 10 seconds --- ####

+----------------------+-------------+------------+--------------+-------------+------------+-------------+------------+-------------+------------+------------+-----------+-----------+-----------+------------+

| Database             | Numbackends | XactCommit | XactRollback | BlksRead    | BlksHit    | TupReturned | TupFetched | TupInserted | TupUpdated | TupDeleted | Conflicts | TempFiles | TempBytes | Deadlocks  |

+----------------------+-------------+------------+--------------+-------------+------------+-------------+------------+-------------+------------+------------+-----------+-----------+-----------+------------+

|                      |       0     |       0    |       0      |       0     |     119    |      77     |      31    |       0     |       0    |       0    |       0   |       0   |       0   |       0    |

| postgres             |       0     |      39    |       0      |       0     |    1541    |    1641     |     816    |       0     |       0    |       0    |       0   |       0   |       0   |       0    |

...

##### --- Table access per database --- ####

Database: postgres

+----------------------------------------------------+------+--------------------------------+---------+

|                       Relname                      | Kind |             Datname            |  Count  |

+----------------------------------------------------+------+--------------------------------+---------+

| pg_database_datname_index                          |   i  |                                |       1 |

| pg_class                                           |   r  | postgres                       |       1 |

| pg_database                                        |   r  |                                |       1 |

...

##### --- Instance settings --- ####

                      Setting                                            Value

allow_system_table_mods                       : off

application_name                              :

archive_cleanup_command                       :

archive_command                               : (disabled)

archive_mode                                  : off

archive_timeout                               : 0

array_nulls                                   : on

authentication_timeout                        : 60

autovacuum                                    : on

autovacuum_analyze_scale_factor               : 0.1

…

##### --- Processes start up command --- ####

PID  :    Command line

  5158 : /usr/pgsql-12/bin/postgres -p 5432

अब आपके पास यह सारी जानकारी है, आप इसका उपयोग विभिन्न उद्देश्यों जैसे समस्या निवारण, प्रदर्शन निगरानी, ​​या यहां तक ​​कि अपने वर्तमान कॉन्फ़िगरेशन का अवलोकन करने के लिए कर सकते हैं। जिस सिस्टम पर यह चल रहा है उसके बारे में अधिक जानकारी प्राप्त करने के लिए आप "pt-summary" जैसे अन्य Percona टूलकिट के साथ भी इसे पूरक कर सकते हैं।

निष्कर्ष

डेटाबेस प्रबंधन कार्यों में आपकी मदद करने के लिए Percona टूलकिट एक शक्तिशाली उपकरण है। अब pt-pg-summary के साथ, आप अपने PostgreSQL इंस्टेंस के बारे में जानकारी प्राप्त करने में सक्षम होंगे, और आप इसे एक मॉनिटरिंग सिस्टम में एकीकृत कर सकते हैं या अपने सिस्टम से और भी अधिक जानकारी एकत्र करने के लिए इस टूल को किसी अन्य Percona टूलकिट घटक के साथ जोड़ सकते हैं।

  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. टाइमस्टैम्प के विरुद्ध प्रारंभ और समाप्ति समय के बीच PostgreSQL मिलान अंतराल

  2. पीजी कॉलम को न्यूलेबल ट्रू में कैसे बदलें?

  3. कैसे PostgreSQL तालिका के लिए पांडा DataFrame upsert करने के लिए?

  4. माता-पिता से पूछताछ करते समय एक पंक्ति की स्रोत तालिका का नाम प्राप्त करें

  5. डेटाबेस में पंक्तियों को सम्मिलित करने के लिए लूप के लिए SQL का उपयोग कैसे करें?