A dagster plugin that allows you to run your Meltano project inside Dagster.
Project description
Dagster-meltano
A dagster plugin that allows you to run Meltano using Dagster.
Installation
You can install using pip install dagster-meltano
.
Examples
An example of automatically loading all jobs and schedules from your Meltano project.
from dagster import repository
from dagster_meltano import load_jobs_from_meltano_project
meltano_jobs = load_jobs_from_meltano_project("<path-to-meltano-root>")
@repository
def repository():
return [meltano_jobs]
An example of running a abitrary meltano run
command.
from dagster import repository, job
from dagster_meltano import meltano_resource, meltano_run_op
@job(resource_defs={"meltano": meltano_resource})
def meltano_run_job():
tap_done = meltano_run_op("tap-1 target-1")()
meltano_run_op("tap-2 target-2")(tap_done)
@repository()
def repository():
return [meltano_run_job]
You can inject Meltano config with the following Dagster config.
ops:
tap_smoke_test_target_jsonl:
config:
env:
TAP_SMOKE_TEST_STREAMS: '[{"stream_name": "new-stream", "input_filename": "demo.json"}]'
Development using VSCode
- Open this repository in Visual Studio Code.
- Install the Remote - Containers plugin for Visual Studio Code.
- Go to the example Meltano project root
cd meltano_project
- Install all plugins
meltano install
- Start dagit
meltano invoke dagster:start
- Visit
localhost:3000
to access Dagit.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dagster_meltano-1.1.0.tar.gz
(10.2 kB
view hashes)
Built Distribution
Close
Hashes for dagster_meltano-1.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc80b8dc1ea559b2e644c83c8133bf93b1166ea4e6108e8240bec2922b5b07fa |
|
MD5 | faababcacc0b9c541cf978c8d48d399c |
|
BLAKE2b-256 | 563fae493d5005deef6ef7da43ddab1a11dd6db8f4b47d58effbbc1c24b31fa8 |