Open
Conversation
Modified README to clarify the way config settings are applied to a running postgresql server
tonsV2
requested changes
Dec 17, 2025
| Custom configuration for Postgresql can be done by adding to the files in the `./config/postgresql/conf.d/` directory. If your configuration doesn't belong in either of the existing files, you can create a new file. However, it's advised not to make changes to the [postgresql.conf](config/postgresql/postgresql.conf) file. | ||
|
|
||
| ## Deployment For Production | ||
| Some postgresql configuration parameters can be applied by reloading the configuration. Others will only take effect when the database is restarted. The detailed description of each configuration option (on postgresql v16) is avalable [here](https://www.postgresql.org/docs/16/runtime-config.html). The documentation for each setting generally indicates whether the setting requires a restart in order to take effect. |
Collaborator
There was a problem hiding this comment.
You have multiple double spaces in this paragraph
| ``` | ||
|
|
||
| ### Deployment Prerequisites | ||
| If you need to restart the database server, it is safest to stop the application container first, restart the database, then start the application again. This will mean some minutes of downtime for your users so it is best to co-ordinate such operations with users or execute during quiet times of the day. A typical sequence might look like: |
Collaborator
There was a problem hiding this comment.
You have multiple double spaces in this paragraph
changed postgres restart instructions as ber suggestion Co-authored-by: tonsV2 <tonsV2@users.noreply.github.com>
Contributor
Philip-Larsen-Donnelly
left a comment
There was a problem hiding this comment.
The additions look sensible, but unfortunately this PR branch is based on quite an old version of the README.md, so it can't be merged as is.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Made a few tuning changes