1
0
mirror of synced 2026-01-28 01:01:59 -05:00
Files
airbyte/airbyte-config/config-persistence
Evan Tahler e39ee94b8c Pass allowedHosts to container runners (#21676)
* Pass allowed hosts to Process Factories and log

* fix loading method

* github allowed hosts

* StringSubstitutor

* lint

* ConfigReplacerTest class + tests

* tests are private
2023-01-24 16:55:51 -08:00
..

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.java is the interface over "low-level" access to the db. The most commonly used implementation of it is DatabaseConfigPersistence.java.
  • ConfigRepository.java is what is most used for accessing the databases. The ConfigPersistence iface was hard to work with. ConfigRepository builds on top of it and houses any databases queries to keep them from proliferating throughout the codebase.