Created
August 12, 2023 17:19
-
-
Save anna-geller/254c1009c11e9317d7346fdb9e65263e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id: airbyteDbtCore | |
namespace: dev | |
tasks: | |
- id: data-ingestion | |
type: io.kestra.core.tasks.flows.Parallel | |
tasks: | |
- id: psyduck | |
type: io.kestra.plugin.airbyte.connections.Sync | |
connectionId: 4de8ab1e-50ef-4df0-aa01-7f21491081f1 | |
- id: charizard | |
type: io.kestra.plugin.airbyte.connections.Sync | |
connectionId: 9bb96539-73e7-4b9a-9937-6ce861b49cb9 | |
- id: pikachu | |
type: io.kestra.plugin.airbyte.connections.Sync | |
connectionId: 39c38950-b0b9-4fce-a303-06ced3dbfa75 | |
- id: sample-data | |
type: io.kestra.plugin.airbyte.connections.Sync | |
connectionId: 71291950-ccc1-4875-91b7-e801376c549e | |
- id: dbt | |
type: io.kestra.core.tasks.flows.WorkingDirectory | |
tasks: | |
- id: cloneRepository | |
type: io.kestra.plugin.git.Clone | |
url: https://github.com/kestra-io/dbt-demo | |
branch: main | |
- id: dbt-build | |
type: io.kestra.plugin.dbt.cli.DbtCLI | |
runner: DOCKER | |
docker: | |
image: ghcr.io/kestra-io/dbt-duckdb:latest | |
profiles: | | |
jaffle_shop: | |
outputs: | |
dev: | |
type: duckdb | |
path: ":memory:" | |
extensions: | |
- parquet | |
fixed_retries: 1 | |
threads: 16 | |
timeout_seconds: 300 | |
target: dev | |
commands: | |
- dbt deps | |
- dbt build | |
taskDefaults: | |
- type: io.kestra.plugin.airbyte.connections.Sync | |
values: | |
url: http://host.docker.internal:8000/ | |
username: "{{ secret('AIRBYTE_USERNAME') }}" | |
password: "{{ secret('AIRBYTE_PASSWORD') }}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment