* airbyte-9328: Added Sentry integration to BigQuery and BigQuery denormalized connector. * airbyte-5050: Added strategy for INSERT ROW. * airbyte-9328: Added Sentry integration to Snowflake. * airbyte-9328: Fix Sentry config. * airbyte-9328: Fixed PR comments. * airbyte-9328: Fixed PR comments. * airbyte-9328: Fix PR comments. * airbyte-9328: Fixed PR comments. * airbyte-9328: Fixed PR comments. * airbyte-9328: Fixed PR comments. * airbyte-9328: Small changes. * airbyte-9328: Small changes. * airbyte-9328: Move SENTRY DSN keys to Dockerfiles. * Use new dsn * Revert format * Remove sentry dsn from compose temporarily * Log sentry event id * Move sentry to java base * Remove sentry code from bigquery * Update dockerfiles * Fix build * Update release tag format * Bump version * Add env to dockerfiles * Fix e2e test connector dockerfil * Fix snowflake bigquery dockerfile * Mark new versions as unpublished Co-authored-by: LiRen Tu <tuliren@gmail.com> Co-authored-by: Liren Tu <tuliren.git@outlook.com>
30 lines
970 B
Plaintext
30 lines
970 B
Plaintext
# For internal Airbyte dev use.
|
|
|
|
VERSION=dev
|
|
DATABASE_USER=docker
|
|
DATABASE_PASSWORD=docker
|
|
DATABASE_DB=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
|
|
|
|
# Sentry
|
|
SENTRY_DSN=""
|