Contents:
Dataverse uses different types of configuration:
1 and 2 are usually simple text strings, boolean switches or digits. All of those can be found in Configuration.
Anything for 3 is configured via the API using either TSV or JSON structures. Examples are metadata blocks, authentication providers, harvesters and others.
Developers have accessed the simple properties via
System.getProperty(...)
for JVM system property settingsSettingsServiceBean.get(...)
for database settings andSystemConfig.xxx()
for specially treated settings, maybe mixed from 1 and 2 and other sources.SettingsWrapper
, reading from 2 and 3 for use in frontend pages based on JSFAs of Dataverse 5.3, we start to streamline our efforts into using a more consistent approach, also bringing joy and happiness to all the system administrators out there. This will be done by adopting the use of MicroProfile Config over time.
So far we streamlined configuration of these Dataverse parts:
We should enable variable substitution in JSON configuration. Example: using substitution to retrieve values from MicroProfile Config and insert into the authentication provider would allow much easier provisioning of secrets into the providers.
Developers benefit from:
META-INF/microprofile-config.properties
allow for optional values without much hassle.System administrators benefit from:
/etc/dataverse/config.properties
.asadmin
commands and change a setting comfortably instead.This technology is introduced on a step-by-step basis. There will not be a big shot, crashing upgrades for everyone. Instead, we will provide backward compatibility by deprecating renamed or moved config options, while still supporting the old way of setting them.
dataverse.<scope/task/module/...>.<setting>
.
That way we enable sys admins to recognize the meaning of an option and avoid name conflicts.
Starting with dataverse
makes it perfectly clear that this is a setting meant for this application, which is
important when using environment variables, system properties or other MPCONFIG sources.System.getProperty()
calls with either injected configs or retrieve programmatically if more complex
handling is necessary. If you rename the property, you should provide an alias. See below.When moving an old key to a new (especially when doing so with a former JVM system property setting), you should
add an alias to src/main/resources/META-INF/microprofile-aliases.properties
to enable backward compatibility.
The format is always like dataverse.<scope/....>.newname...=old.property.name
.
Details can be found in edu.harvard.iq.dataverse.settings.source.AliasConfigSource
When moving a database setting (:ExampleSetting
), configure an alias
dataverse.my.example.setting=dataverse.settings.fromdb.ExampleSetting
in
src/main/resources/META-INF/microprofile-aliases.properties
. This will enable backward compatibility.
A database setting with an i18n attribute using lang will have available language codes appended to the name.
Example: dataverse.settings.fromdb.ExampleI18nSetting.en
, dataverse.settings.fromdb.ExampleI18nSetting.de
More details in edu.harvard.iq.dataverse.settings.source.DbSettingConfigSource