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
Improve current implementation of shared_buffers value calculation
the concept is:
check if pg_stat_statements is installed. if not, use default formula
implement job (inherited from JobBase) to log statistic values from pg_stat_statements view
calculate value {shared_blks_hit / shared_blks_read} for each statement and get average
use retrieved average during calculation:
if cache is relatively (?) low and shared_buffers doesn't occupy more then 30% (?) of total server RAM, suggest higher value
The text was updated successfully, but these errors were encountered:
Improve current implementation of
shared_buffers
value calculationthe concept is:
JobBase
) to log statistic values from pg_stat_statements viewcalculate value {shared_blks_hit / shared_blks_read} for each statement and get average
if cache is relatively (?) low and shared_buffers doesn't occupy more then 30% (?) of total server RAM, suggest higher value
The text was updated successfully, but these errors were encountered: