Issues
- When using a non-default pg_stat_statements.max value, the calculated QPS displayed in QAN may be wrong.PMM-13694
- VictoriaMetrics Error on PMM Server 2.38.0 on Ubuntu 22.04 VMPMM-13367Aaditya Dubey
- Issues upgrading to >=2.38.x with SELinux enabledPMM-12652Resolved issue: PMM-12652
- Unable to install required libs for image renderer pluginPMM-12513
- Due to the click house DB, the PMM server is under too much CPU strain.PMM-12438
- PMM dashboard has a high CPU load and UI is unresponsive after adding 100 Servers.PMM-12415Resolved issue: PMM-12415
- pmm shows not correct value of inbound/outbound network traffic on gke nodesPMM-12412Aaditya Dubey
- ERROR 1193: Unknown system variable 'slow_query_log_always_write_time'PMM-12399Resolved issue: PMM-12399
- pmm-agent: Unknown database 'heartbeat' and Unknown storage engine 'TOKUDB' errorsPMM-12398Resolved issue: PMM-12398
- Cannot find metric names: error when searching for metricIDs in the current indexdb: the number of matching timeseries exceeds 30000PMM-12396Aaditya Dubey
- Run regression tests when create built-in version of PMM DumpPMM-12369Roma Novikov
- PMM-agent service running as root from RPM installPMM-12362talha.rizwan
- Issues upgrading to >=2.38.x with SELinux enabledPMM-12357Resolved issue: PMM-12357talha.rizwan
- Make pmm-client tarball installation more user-friendlyPMM-12333Resolved issue: PMM-12333Alex Demidoff
- Update the link from Settings page to Backup management pagePMM-12303
- The Portal user is not able to re-login into PMM using Percona AccountPMM-12293Resolved issue: PMM-12293
- Comments are parsed by default for remotely added PostgreSQL and MySQLPMM-12290Resolved issue: PMM-12290Jiří Čtvrtka
- Service Summary Panel on Home Dashboard Seems BrokenPMM-12280Resolved issue: PMM-12280Alex Demidoff
- Unsupported property found in repository config filesPMM-12270talha.rizwan
- Added SSH-key via Settings page for different usersPMM-12262
- Incorrect label's name on MySQL Summary dashboard for rds instancePMM-12260
- ClickHouse 21.3.20 is unsupported by the driverPMM-12259Resolved issue: PMM-12259
- Commands are not executed by default in rhel9 images due to PATH problemPMM-12248Resolved issue: PMM-12248
- Problem with PMM after upgrade from version <=2.12.0PMM-12245
- PostgreSQL is not started after docker upgrade of PMM serverPMM-12239Resolved issue: PMM-12239
- CPU and Memory usage increased after upgrade to 2.38.0PMM-12238Resolved issue: PMM-12238Nailya Kutlubaeva
- Paths for OVA download don't workPMM-12222Resolved issue: PMM-12222talha.rizwan
- User Logged out in the Middle of UI UpgradePMM-12221Resolved issue: PMM-12221Nurlan Moldomurov
- Unable to add MongoDB due to "+" in passwordPMM-12219Resolved issue: PMM-12219Peter Sirotnak
- QAN: Error 1064 (42000): You have an error in your SQL syntax;PMM-12218
- PMM upgrade with enabled external Postgres is failedPMM-12193
- BM folder field has a inconsistent validation on BE & FEPMM-12158Fábio Da Silva
- Custom dashboard is not preserved as Home dashboard after upgradePMM-12157Resolved issue: PMM-12157Nurlan Moldomurov
- proxysql_runtime_servers_status does not existPMM-12138
- Shift to El9 as default base image for PMM-ServerPMM-12136Resolved issue: PMM-12136talha.rizwan
- Upgrades to 2.38.0 failsPMM-12110Resolved issue: PMM-12110Nurlan Moldomurov
- QAN: Cannot convert undefined or null to objectPMM-12105Resolved issue: PMM-12105Jiří Čtvrtka
- Typo in Point-In-Time Recovery error message for sharded cluster featurePMM-12094Fábio Da Silva
- Incorrect Status Displayed for External Services in PMM InventoryPMM-12072Alex Demidoff
- BM: Unrestricted Special Characters Accepted in Folder PropertyPMM-12049
- Folder path not properly rendered in Backup Management feature of PMM2 for very long folder locationsPMM-12048Resolved issue: PMM-12048Fábio Da Silva
- unauthorized backups are possible through a directory traversal attack in the Backup Management featurePMM-12047Resolved issue: PMM-12047
- If user specified directory doesent have proper permissions the error is visible only in via pbm tool and does not reflect on UI via display log featurePMM-12046
43 of 43
If pg_stat_statements.max is changed, the current PMM client-side cache for queries may not be enough for the query churn, and the results of calculating the per-minute query call deltas may be wrong.
From ClickHouse pmm.metrics table, for the problematic query, we see num_queries in the millions per minute, which is wrong. After 00:46, pg_stat_statements.max was changed from 20000 back to its default of 5000:
This can be easily reproduced by increasing pg_stat_statements.max:
and having a workload that generates unique queries, like:
Check statements stored:
And run an intensive workload for a SELECT count query in another session. If you let that query call reach the millions, it will be much more visible.
I’m attaching two screenshots showing the good and bad examples from QAN itself.
Suggested implementation:
Set cache size by the value from
pg_stat_statements.max
Check if it affects pg_stat_monitor, perfschema