-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Could not process json - on meltano invoke dagster:start
#2
Comments
With the following
What do the commands:
and
return for you? |
Hi @JulesHuisman, The output of the two commands: ╭─user@local ~/DEV/meltano-pipelines ‹dagster-orchestrator-spike●›
╰─$ meltano job list --format=json 130 ↵
{
"jobs": [
{
"job_name": "tap-okta-target-bigquery",
"tasks": [
"tap-okta target-bigquery"
]
}
]
}
╭─user@local ~/DEV/meltano-pipelines ‹dagster-orchestrator-spike●›
╰─$ meltano schedule list --format=json
{
"schedules": {
"job": [],
"elt": [
{
"name": "postgres-to-jsonl",
"extractor": "tap-postgres",
"loader": "target-jsonl",
"transform": "skip",
"interval": "@once",
"start_date": "2010-01-01",
"env": {},
"cron_interval": null,
"last_successful_run_ended_at": null,
"elt_args": [
"tap-postgres",
"target-jsonl",
"--transform=skip",
"--state-id=postgres-to-jsonl"
]
},
{
"name": "postgres-to-bigquery",
"extractor": "tap-postgres",
"loader": "target-bigquery",
"transform": "skip",
"interval": "@once",
"start_date": "2010-01-01",
"env": {},
"cron_interval": null,
"last_successful_run_ended_at": null,
"elt_args": [
"tap-postgres",
"target-bigquery",
"--transform=skip",
"--state-id=postgres-to-bigquery"
]
},
{
"name": "tap-cloudflare-graphql-to-bigquery",
"extractor": "tap_cloudflare_graphql",
"loader": "target-bigquery",
"transform": "skip",
"interval": "@once",
"start_date": "2010-01-01",
"env": {},
"cron_interval": null,
"last_successful_run_ended_at": null,
"elt_args": [
"tap_cloudflare_graphql",
"target-bigquery",
"--transform=skip",
"--state-id=tap-cloudflare-graphql-to-bigquery"
]
},
{
"name": "cloudflare-graphql-to-csv",
"extractor": "tap-cloudflare-graphql",
"loader": "target-csv",
"transform": "skip",
"interval": "@once",
"start_date": "2010-01-01",
"env": {},
"cron_interval": null,
"last_successful_run_ended_at": null,
"elt_args": [
"tap-cloudflare-graphql",
"target-csv",
"--transform=skip",
"--state-id=cloudflare-graphql-to-csv"
]
},
{
"name": "csv-to-bigquery",
"extractor": "tap-csv",
"loader": "target-bigquery",
"transform": "skip",
"interval": "@once",
"start_date": "2010-01-01",
"env": {},
"cron_interval": null,
"last_successful_run_ended_at": null,
"elt_args": [
"tap-csv",
"target-bigquery",
"--transform=skip",
"--state-id=csv-to-bigquery"
]
}
]
}
}
|
Mmm, that is strange. The The way the exception is constructed is that it shows the string it wants to parse (The part after And does everything work if you create an empty project with just the dagster extension? |
@seanglynn-thrive Did you eventually figure out what the issue was? |
@JulesHuisman my apologies for the late response.
Environment info:
|
I am getting a JSON parser error when I run the
meltano invoke dagster:start
from my meltano project directorySteps I have followed:
meltano add utility dagster-ext meltano install meltano invoke dagster:initialize # Fails here: meltano invoke dagster:start
meltano.yml
utilities:Full error trace
The text was updated successfully, but these errors were encountered: