-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove inaccurate references to corruption, remove SEGTERM suggestion… #1303
Conversation
…, update information links to current docs. Postgres is carefully designed such that data is not corrupted on crashes or unclean shutdowns - the main tradeoff is that WAL replay is needed on startup. In practice, SIGTERM can cause unexpected long delays to shutdowns - often during maintenance windows - so best not to activaly suggest this. The links back to official Postgres documentation seem sufficient.
Normally I'm not a fan of links with We need to apply this template change to all the variants, but I'm happy to push that change for you, if you'd like me to (otherwise this looks good to me). |
I'm still new to this repo; I think the last commit applies the change to the variants - did i do it correctly? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
Changes: - docker-library/postgres@32b6fcd: Remove inaccurate references to corruption, remove SEGTERM suggestion… (docker-library/postgres#1303) - docker-library/postgres@cb04936: Simplify and update `verify-templating.yml`
Changes: - docker-library/postgres@e2a4302: Update 12 to bookworm 12.22-2.pgdg120+1, bullseye 12.22-2.pgdg110+1 - docker-library/postgres@32b6fcd: Remove inaccurate references to corruption, remove SEGTERM suggestion… (docker-library/postgres#1303) - docker-library/postgres@cb04936: Simplify and update `verify-templating.yml`
Changes: - docker-library/postgres@3521b2f: Merge pull request docker-library/postgres#1312 from infosiftr/eol-12 - docker-library/postgres@042d8d0: Remove PostgreSQL 12 since it is end of life - docker-library/postgres@e2a4302: Update 12 to bookworm 12.22-2.pgdg120+1, bullseye 12.22-2.pgdg110+1 - docker-library/postgres@32b6fcd: Remove inaccurate references to corruption, remove SEGTERM suggestion… (docker-library/postgres#1303) - docker-library/postgres@cb04936: Simplify and update `verify-templating.yml`
Remove inaccurate references to corruption, remove SEGTERM suggestion, update information links to current docs.
Postgres is carefully designed such that data is not corrupted on crashes or unclean shutdowns - the main tradeoff is that WAL replay is needed on startup.
On the SIGTERM suggestion - in practice this can cause unexpected long delays to shutdowns - often during maintenance windows - so best not to actively suggest this. The links back to official Postgres documentation seem sufficient.