-
Notifications
You must be signed in to change notification settings - Fork 27
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
Consolidate configuration option hierarchies #130
Comments
I've been thinking about the same thing! Can you create a spreadsheet with the following columns:
and take a first stab at the renaming? Implicit in this is that I'd like to avoid deeply nested hierarchies of parameter names. The earlier we do this, the less backward compatibility around renaming we need to do. |
jhiemstrawisc
added a commit
to jhiemstrawisc/pelican
that referenced
this issue
Oct 4, 2023
In issue PelicanPlatform#130 we discussed making config variables hierarchical, such that each variable describes which service it affects. One goal was to keep the hierarchies flat (<= 2 layers). This PR breaks out the config variables and assigns them to various parent services. It also adds many new viper config variables to `docs/parameters.yaml` so that users can figure out which components of Pelican they have control over.
Merged
bbockelm
pushed a commit
to jhiemstrawisc/pelican
that referenced
this issue
Oct 5, 2023
In issue PelicanPlatform#130 we discussed making config variables hierarchical, such that each variable describes which service it affects. One goal was to keep the hierarchies flat (<= 2 layers). This PR breaks out the config variables and assigns them to various parent services. It also adds many new viper config variables to `docs/parameters.yaml` so that users can figure out which components of Pelican they have control over.
jhiemstrawisc
added a commit
to jhiemstrawisc/pelican
that referenced
this issue
Oct 5, 2023
In issue PelicanPlatform#130 we discussed making config variables hierarchical, such that each variable describes which service it affects. One goal was to keep the hierarchies flat (<= 2 layers). This PR breaks out the config variables and assigns them to various parent services. It also adds many new viper config variables to `docs/parameters.yaml` so that users can figure out which components of Pelican they have control over.
jhiemstrawisc
added a commit
to jhiemstrawisc/pelican
that referenced
this issue
Oct 5, 2023
In issue PelicanPlatform#130 we discussed making config variables hierarchical, such that each variable describes which service it affects. One goal was to keep the hierarchies flat (<= 2 layers). This PR breaks out the config variables and assigns them to various parent services. It also adds many new viper config variables to `docs/parameters.yaml` so that users can figure out which components of Pelican they have control over.
jhiemstrawisc
added a commit
to jhiemstrawisc/pelican
that referenced
this issue
Oct 5, 2023
In issue PelicanPlatform#130 we discussed making config variables hierarchical, such that each variable describes which service it affects. One goal was to keep the hierarchies flat (<= 2 layers). This PR breaks out the config variables and assigns them to various parent services. It also adds many new viper config variables to `docs/parameters.yaml` so that users can figure out which components of Pelican they have control over.
bbockelm
pushed a commit
to jhiemstrawisc/pelican
that referenced
this issue
Oct 6, 2023
In issue PelicanPlatform#130 we discussed making config variables hierarchical, such that each variable describes which service it affects. One goal was to keep the hierarchies flat (<= 2 layers). This PR breaks out the config variables and assigns them to various parent services. It also adds many new viper config variables to `docs/parameters.yaml` so that users can figure out which components of Pelican they have control over.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We should make the options configurable via
pelican.yaml
more consistent and hierarchical. For example, there's an optionDirector.DefaultResponse
that is clearly an option to configure behavior for a director instance. Elsewhere, we have options that configure the director like "MaxMindKeyFile" and "GeoIPLocation", but it's not immediately obvious from the name what service(s) these affect. I think we should make these types of configurations hierarchical so that we wind up with a config more like:The text was updated successfully, but these errors were encountered: