-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkdp.config.yaml
More file actions
31 lines (27 loc) · 1.72 KB
/
kdp.config.yaml
File metadata and controls
31 lines (27 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# knowledge-dataplane configuration
# Copy this file to the root of your deployment and edit for your environment.
# Reference: https://github.com/Teradata/knowledge-dataplane/docs/configuration.md
# ── Catalog backend ──────────────────────────────────────────────────────────
# MVP: adapter: openmetadata
# Production: adapter: datahub
catalog:
adapter: openmetadata
base_url: http://localhost:8585
token: "" # Set via KDP_CATALOG_TOKEN env var in production
# ── Lineage backend ───────────────────────────────────────────────────────────
# MVP: adapter: marquez (2 containers, simple)
# Production: adapter: datahub (consolidates with catalog — one less service)
lineage:
adapter: marquez
base_url: http://localhost:5000
# ── Orchestration backend ─────────────────────────────────────────────────────
# Dagster is the only supported orchestration adapter.
# Future: prefect, airflow
orchestration:
adapter: dagster
base_url: http://localhost:3000
token: "" # Required for Dagster+ / Dagster Cloud
# ── Contract backend ──────────────────────────────────────────────────────────
contracts:
adapter: datacontract_cli
cli_path: datacontract # Assumes datacontract is on PATH