generated from dbt-labs/jaffle-shop-template
-
Notifications
You must be signed in to change notification settings - Fork 72
/
meltano.yml
46 lines (41 loc) · 1.1 KB
/
meltano.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Meltano Configuration File
#
# Sample usage:
# > meltano run tap-jaffle-shop target-duckdb
#
# Or equivalently:
# > meltano run el # Run the job named 'el' to extract and load data
version: 1
project_id: Jaffle Shop Template Project
env:
JAFFLE_DB_PATH: ./reports/jaffle_shop.duckdb
JAFFLE_DB_NAME: jaffle_shop
JAFFLE_RAW_SCHEMA: jaffle_raw
default_environment: dev
environments:
- name: dev
plugins:
extractors:
- name: tap-jaffle-shop
namespace: tap_jaffle_shop
variant: meltanolabs
pip_url: git+https://github.com/MeltanoLabs/tap-jaffle-shop.git@v0.3.0
capabilities:
- catalog
- discover
config:
years: 2
stream_name_prefix: ${JAFFLE_RAW_SCHEMA}-raw_
loaders:
- name: target-duckdb
variant: jwills
pip_url: target-duckdb~=0.4
config:
filepath: ${JAFFLE_DB_PATH}
default_target_schema: $JAFFLE_RAW_SCHEMA
jobs:
# Sample usage: `meltano run el`
# Equivalent to: `meltano run tap-jaffle-shop target-duckdb`
- name: el # Extract and load the raw data
tasks:
- tap-jaffle-shop target-duckdb