You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a large system with around 1000 ProxySQL instances it was detected that SHOW GLOBAL VARIABLES LIKE 'read_only' could cause serious contention/locking issues.
The average execution time to run SHOW GLOBAL VARIABLES LIKE 'read_only' is 2ms, but could spike to 300ms at high concurrency.
On the other hand, the average execution time for SELECT @@global.read_only is around 0.05ms (40 times faster than SHOW GLOBAL.
The text was updated successfully, but these errors were encountered:
On a large system with around 1000 ProxySQL instances it was detected that
SHOW GLOBAL VARIABLES LIKE 'read_only'
could cause serious contention/locking issues.The average execution time to run
SHOW GLOBAL VARIABLES LIKE 'read_only'
is 2ms, but could spike to 300ms at high concurrency.On the other hand, the average execution time for
SELECT @@global.read_only
is around 0.05ms (40 times faster thanSHOW GLOBAL
.The text was updated successfully, but these errors were encountered: