Re: More issues with pg_verify_checksums and checksum verification in base backups
David Steele <david@pgmasters.net>
From: David Steele <david@pgmasters.net>
To: Stephen Frost <sfrost@snowman.net>,
Kyotaro HORIGUCHI <horiguchi.kyotaro@lab.ntt.co.jp>, michael@paquier.xyz
Cc: pgsql-hackers@postgresql.org, andres@anarazel.de, andrew@dunslane.net,
daniel@yesql.se, magnus@hagander.net, tgl@sss.pgh.pa.us
Date: 2018-10-30T18:32:43Z
Lists: pgsql-hackers
On 10/30/18 11:59 AM, Stephen Frost wrote: > > * Kyotaro HORIGUCHI (horiguchi.kyotaro@lab.ntt.co.jp) wrote: >> >> So I'm +1 for the Michael's current patch as (I think) we can't >> make visible or large changes. >> >> That said, I agree with Stephen's concern on the point we could >> omit requried files in future, but on the other hand I don't want >> random files are simply rejected. > > They aren't rejected- there's a warning thrown about them. pgBackRest has been using a whitelist/blacklist method for identifying checksummable files for almost 2 years we haven't seen any issues. The few times a "random" file appeared in the logs with checksum warnings it was later identified as having been mistakenly copied into $PGDATA. The backup still completed successfully in these cases. So to be clear, we whitelist the global, base, and pg_tblspc dirs and blacklist PG_VERSION, pg_filenode.map, pg_internal.init, and pg_control (just for global) when deciding which files to checksum. Recently we added logic to exclude unlogged and temporary relations as well, though that's not required. For PG11 I would recommend just adding the param file generated by exec backend to the black list for both pg_basebackup and pg_verifychecksums, then create a common facility for blacklisting for PG12. I'm not very excited about the idea of encouraging extensions to drop files in the postgres relation directories (base, global, pg_tblspc). If we don't say we support it then in my mind that means we don't. There are lots of ways extension authors could make naming mistakes that would lead to their files being cleaned up by Postgres at startup or included in a DROP DATABASE. I am OK with allowing an extension directory for each tablespace/db dir where extensions can safe drop files for PG12, if we decide that's something worth doing. Regards, -- -David david@pgmasters.net
Commits
-
Fix various checksum check problems for pg_verify_checksums and base backups
- 19516afdf167 11.2 landed
- 5c995139752f 12.0 landed
-
Switch pg_verify_checksums back to a blacklist
- 85036308dc58 11.2 landed
- a1c91dd1108c 12.0 landed