-
Notifications
You must be signed in to change notification settings - Fork 606
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
Rotate pgAdmin/gunicorn logs according to retentionPeriod #4101
Conversation
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.
LGTM
) | ||
var ( | ||
maxBackupRetentionNumber = "1" | ||
// One day in minutes for pgadmin rotation | ||
pgAdminRetentionPeriod = "24 * 60" | ||
// Daily rotation for gunicorn rotation | ||
gunicornRetentionPeriod = "D" | ||
) |
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.
Thinking out loud: So it seems like we are defaulting to retaining a day's worth of logs whether we have the OpenTelemetryLogs feature enabled or not? Which looks like it was already the case for pgAdmin, but for gunicorn the behavior is changing from retaining based on size to time?
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.
🤔 Yeah -- and actually if we go back far enough, we weren't actually making any changes to the default logging until we added OTel. Which makes me think we should maybe only add these logging configs if OTel is enabled...
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.
mmhmm
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.
OK, we made some changes about where we're logging, so I couldn't put all the logging stuff in as optional, but made some changes to get us closer to that original state if you're not using the new telemetry.
config/crd/bases/postgres-operator.crunchydata.com_pgupgrades.yaml
Outdated
Show resolved
Hide resolved
Issues: [PGO-2168]
2d85f6d
to
1d8abd3
Compare
logconfig_dict['loggers']['gunicorn.access']['handlers'] = ['file'] | ||
logconfig_dict['loggers']['gunicorn.error']['handlers'] = ['file'] |
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.
🤔 What are these handlers before we overwrite them?
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.
We start with the default settings from here, so
"loggers": {
"gunicorn.error": {
"level": "INFO",
"handlers": ["error_console"],
"propagate": True,
"qualname": "gunicorn.error"
},
"gunicorn.access": {
"level": "INFO",
"handlers": ["console"],
"propagate": True,
"qualname": "gunicorn.access"
}
},
So we set all our logger.*.handlers
to file
, and then below we set the handlers.file
, so we skip using the default handlers (right below in the default settings):
"handlers": {
"console": {
"class": "logging.StreamHandler",
"formatter": "generic",
"stream": "ext://sys.stdout"
},
"error_console": {
"class": "logging.StreamHandler",
"formatter": "generic",
"stream": "ext://sys.stderr"
},
},
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.
Thank you for making those changes. One question, but not a blocker.
" --reload-extra-file " + configMountPath + `/` + gunicornLogConfFilePath + | ||
" --log-config-json " + configMountPath + `/` + gunicornLogConfFilePath + |
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.
👍🏻 Nice! We can do a lot with config files.
❓ My read of reload_extra_files
is that it requires reload
to be enabled. Do we use that?
❓ I see reload_extra_files
and logconfig_json
mentioned in the config file settings. Is it possible to set these through settings
in generateGunicornConfig()
? 🤔 If so, we might end up with all JSON and no change to the entrypoint?
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.
See benoitc/gunicorn#3353 for an issue I ran into.
Not in that GH issue, but as a precursor to it: all the reload
stuff is expressly for development. So I was thinking of adding a SIGHUP signal into our mtime checking loop, only SIGHUP doesn't work -- but SIGKILL might if we want to do that every time a cluster changes or the config changes. (The mtime for all those files change together since they are in the same configmap.)
Do we really want to do this?
Checklist:
Type of Changes:
What is the current behavior (link to any open issues here)?
pgAdmin/Gunicorn log rotation is hard-coded
What is the new behavior (if this is a feature change)?
pgAdmin has a built in logfile rotation system, as does gunicorn. We want to use those systems, but respect the retention setting that a user sets in the instrumentation section. This PR uses the RetentionPeriod to
Other Information:
Issues: [PGO-2168]