1
0
mirror of synced 2026-01-05 12:05:28 -05:00
Files
airbyte/airbyte-config/config-persistence
Malik Diarra 17ee3ad44f Ignore custom connectors during connectors update (#13581)
* Ignore Custom connectors during connectors update

* Skip any connector flagged as custom as well

* Format
2022-06-14 15:30:31 -07:00
..
2022-06-06 02:21:54 +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-scheduler and 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 The only other one that is used is the YamlSeedConfigPersistence.java which is used for loading configs that ship with the app.
  • 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.