* WIP Convert airbyte-workers to Micronaut framework * Rebase cleanup * Fix broken tests * Simplify code * Support control vs data plane configuration * make WORFKLOW_PROXY_CACHE non-static to avoid cacheing mocks in unit tests * Formatting * Pairing on Worker Micronaut (#16364) * add RouteToSyncTaskQueue activity * use new route activity in connection manager workflow * format * call router service for task queue * Revert temporal proxy changes * Formatting * Fix default value * register new route activity in test * fix SyncWorkflowTest now that it isn't doing any routing * Update dependencies * More dependency updates * Update dependencies * Improve conditional bean check * Match existing Optional functionality * Add notEquals check * Add missing env var to Helm chart * Fix typo * Mark LogConfigs as Singleton * Env vars for log/state storage type * Remove use of Optional in bean declarations * Fix typo in config property name * Support Temporal Cloud namespace * Change to @Value * Use correct value for conditional check * Upgrade Micronaut * Fix merge conflict * Formatting * Add missing env var * Use sync task queue environment variable * Handle sync task queue as set * format and force http * Handle case where sync task queue is empty * Add correct path to config property * Remove unused import * Remove unused parameter * Formatting * Use pattern for condition process factory beans * Cleanup * PR feedback * Revert hack for testing Co-authored-by: pmossman <parker@airbyte.io>
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
# For internal Airbyte dev use.
|
|
|
|
VERSION=dev
|
|
DATABASE_USER=docker
|
|
DATABASE_PASSWORD=docker
|
|
DATABASE_DB=airbyte
|
|
DATABASE_URL=jdbc:postgresql://db:5432/airbyte
|
|
CONFIG_ROOT=/data
|
|
WORKSPACE_ROOT=/tmp/workspace
|
|
DATA_DOCKER_MOUNT=airbyte_data_dev
|
|
DB_DOCKER_MOUNT=airbyte_db_dev
|
|
WORKSPACE_DOCKER_MOUNT=airbyte_workspace_dev
|
|
# todo (cgardens) - when we are mount raw directories instead of named volumes, *_DOCKER_MOUNT must
|
|
# be the same as *_ROOT.
|
|
# Issue: https://github.com/airbytehq/airbyte/issues/578
|
|
LOCAL_ROOT=/tmp/airbyte_local_dev
|
|
LOCAL_DOCKER_MOUNT=/tmp/airbyte_local_dev
|
|
TRACKING_STRATEGY=logging
|
|
# todo (cgardens) - hack to handle behavior change in docker compose. *_PARENT directories MUST
|
|
# already exist on the host filesystem and MUST be parents of *_ROOT.
|
|
# Issue: https://github.com/airbytehq/airbyte/issues/577
|
|
HACK_LOCAL_ROOT_PARENT=/tmp
|
|
WEBAPP_URL=http://localhost:8000/
|
|
API_URL=/api/v1/
|
|
INTERNAL_API_HOST=airbyte-server:8001
|
|
SYNC_JOB_MAX_ATTEMPTS=3
|
|
SYNC_JOB_MAX_TIMEOUT_DAYS=3
|
|
WORKERS_MICRONAUT_ENVIRONMENTS=control
|
|
|
|
# Sentry
|
|
SENTRY_DSN=""
|
|
|
|
# Migration Configuration
|
|
CONFIGS_DATABASE_MINIMUM_FLYWAY_MIGRATION_VERSION=0.35.15.001
|
|
JOBS_DATABASE_MINIMUM_FLYWAY_MIGRATION_VERSION=0.29.15.001
|