Hi Guys!
Got a big concern on PMM QAN Analytics, on our actual scenario we’re currently using PMM2 QAN on Mariadb Instance where there is a really demanding throughput of different queries.
We are on PMM 2.12.0 server and client.
We were able to config pmm-client to extract QAN --query-source=perfschema as we would love to get full stats on all queries and slowlog with a value of long_query_time=0 would have a big performance impact on server side.
The issue now is that performance digesting is constantly losing digest info as follow:
And we also configured performance_schema_digests_size=-1 and performance_schema_events_stages_history_long_size=-1 and still at their highest values possible and digest_lost is always present.
The pseudo solution we’ve found its to periodically truncate performance_schema.events_statements_summary_by_digest and performane_schema.events_statements_history_long, in order to let pmm2-client to re-fetch newest digest .
Is there any pmm2-client configuration recommended on this high load scenarios to reduce data lost? We are constantly getting a small partial queries on QAN side, not showing all queries.
Is there any configuration to indicate pmm2-client to “clean” already fetched data from perfschema??, for example, this truncate perfschema tables operation after fetching last digests??
Hello,
As stated in the manual you should not set a value of -1 for either parameter. Instead you should set this parameter to the max value of 1048576. If you are still losing queries even with this max value, then I will try to have a member of our PMM team give a comment.
Hello Matthweb thans you so much for your reply!
We actually did run all servers will the highest perfschema values possible of 1048576 regardless the extra RAM being used, but still losing queries most of the time , and also found that pmm-client queries on perfschema tables are quite demanding when these tables are on max size (these statement perfschema queries got on top of load).
That’s why looking for different strategies, found that if perfschema digest tables gets empty periodically a more complete sample is taken, even if i’m sure as it’s not normal usage the full stats are not ok.
Has pmm2-client a cache-like feature in order to extract perfschema digest and delete periodically from mysql itself which one has already fetched?
Maybe our mysql usage is beyond normal throughput of queries and mysql nor pmm2-client aren’t ready to manage this quantity of differents digest
Lets face it if you will have say 1M of different queries every minute it would be expensive to process and store…
Generally we would not recommend going over much more than defaults with performance_schema table sizes as it can get PMM queries expensive. Yes you will loose some of the queries but hopefully it is not the most important one.
One thing also you can use is to clean those performance_schema tables periodically to see if it improves results
Also if you’re running Percona Server consider using slow query log with sampling it typically allows to balance the overhead with ensuring all types of queries are presented.
Hi Peter, thanks so much for you reply.
Totally agree it would be so expensive to pretend gather and process all different queries.
I found that best solution is to clean performance_schema tables periodically as i got bigger sample this way , but had the feeling that best case scenario is to clean them after pmm2-client fetches data. In the case of best frequency , my “tempo” on custom cleaning perf_tables might not be precise nor deterministic, i mean, pmm-client gather data one per 30 seconds and if I batch perfschema clean once per 30 seconds it will not run immediately after each pmm-client run.
Is there any way to add this clean operations as part of pmm-client activity? to sync it with gathering. Maybe as a fake “custom metrics”? Tried this but truncate operation does not fit on custom metrics specs as much as I tested.
Thanks a lot for your help at this with any idea.
Regards