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
Remove buffers_backend and buffers_backend_fsync from pg_stat_checkpointer
Two attributes related to checkpointer statistics are removed in thiscommit:- buffers_backend, that counts the number of buffers written directly bya backend.- buffers_backend_fsync, that counts the number of times a backend hadto do fsync() by its own.These are actually not checkpointer properties but backend properties.Also, pg_stat_io provides a more accurate and equivalent report of thesenumbers, by tracking all the I/O stats related to backends, includingwrites and fsyncs, so storing them in pg_stat_checkpointer wasredundant.Thanks also to Robert Haas and Amit Kapila for their input.Bump catalog version.Author: Bharath RupireddyReviewed-by: Bertrand Drouvot, Andres FreundDiscussion:https://postgr.es/m/20230210004604.mcszbscsqs3bc5nx@awork3.anarazel.de