* Pass allowed hosts to Process Factories and log * fix loading method * github allowed hosts * StringSubstitutor * lint * ConfigReplacerTest class + tests * tests are private
airbyte-config:config-persistence
This module contains the logic for accessing the config database. This database is primarily used by the airbyte-server but is also accessed from airbyte-workers. It contains all configuration information for Airbyte.
Key files
ConfigPersistence.javais the interface over "low-level" access to the db. The most commonly used implementation of it isDatabaseConfigPersistence.java.ConfigRepository.javais what is most used for accessing the databases. TheConfigPersistenceiface was hard to work with.ConfigRepositorybuilds on top of it and houses any databases queries to keep them from proliferating throughout the codebase.