* Refactoring to improve code re-use * Add ProtocolVersionChecker * Add an option to configure if we are automatically upgrading connectors * Add airbyte version check to pass the fresh install case * Inject DefinitionsProvider in the BootloaderApp * Remove AutoUpgradeConnector config * Improve logging * Use named argument rather than positional * Make DefinitionsProvider optional * Format
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.