Sterling Paramore
08/03/2022, 9:01 PMZach
08/03/2022, 10:59 PMOperation name: RunRootQuery
Message: Internal Server Error (Trace ID: 6611625006052030400)
Path: ["pipelineRunOrError","assets"]
Locations: [{"line":24,"column":3}]
If I remember correctly these runs had somewhere around 7 or 8k event logs and maybe 1 or 2k debug/info/warning/error logs.
Somewhat similarly a job I have for scraping Dagster run info from the graphQL API started failing with a gateway timeout error this afternoon when querying 10 runIds at a time via runsOrError
(I can adjust this to query less runs at a time, but this was having no issues until around when the maintenance window hit)Stephen Bailey
08/05/2022, 12:53 AMmaterialize
button, i am told that i can shift + click
to add config, but even if i don't, i am prompted for config. is that expected?geoHeil
08/08/2022, 4:42 PMCaleb Fornari
08/09/2022, 4:50 PMPieter Custers
08/09/2022, 5:07 PMYang
08/09/2022, 5:18 PMMultiprocess executor: child process for step asset_overview_table.parse_asset_overview_xml[globalexusafull_LGDF_20220729_004171_065_FUL_35086254_xml] unexpectedly exited with code -9
dagster._core.executor.child_process_executor.ChildProcessCrashException
Stack Trace:
File "/usr/local/lib/python3.9/site-packages/dagster/_core/executor/multiprocess.py", line 210, in execute
event_or_none = next(step_iter)
, File "/usr/local/lib/python3.9/site-packages/dagster/_core/executor/multiprocess.py", line 324, in execute_step_out_of_process
for ret in execute_child_process_command(multiproc_ctx, command):
, File "/usr/local/lib/python3.9/site-packages/dagster/_core/executor/child_process_executor.py", line 163, in execute_child_process_command
raise ChildProcessCrashException(exit_code=process.exitcode)
Zach
08/09/2022, 6:32 PMYang
08/09/2022, 11:34 PMRemco Loof
08/10/2022, 1:11 PMGraphQLStorageError: Invalid URL '***/prod/graphql': No scheme supplied.
Perhaps you meant http://***/prod/graphql?
Could not load registry information - your serverless deployment may still be activating.
Charlie Bini
08/10/2022, 5:09 PMError when evaluating 'strategy' for job 'dagster_cloud_build_push'. .github/workflows/dev-deploy.yaml (Line: 48, Col: 19): Error parsing fromJson,.github/workflows/dev-deploy.yaml (Line: 48, Col: 19): Error reading JToken from JsonReader. Path '', line 0, position 0.,.github/workflows/dev-deploy.yaml (Line: 48, Col: 19): Unexpected type of value '', expected type: Sequence.
Yang
08/10/2022, 5:48 PMCharlie Bini
08/11/2022, 6:45 PMRun dagster-io/dagster-cloud-action/actions/utils/notify@main
Traceback (most recent call last):
File "/create_or_update_comment.py", line 86, in <module>
main()
File "/create_or_update_comment.py", line 82, in main
pr.create_issue_comment(message)
File "/usr/local/lib/python3.8/site-packages/github/PullRequest.py", line 456, in create_issue_comment
headers, data = self._requester.requestJsonAndCheck(
File "/usr/local/lib/python3.8/site-packages/github/Requester.py", line 353, in requestJsonAndCheck
return self.__check(
File "/usr/local/lib/python3.8/site-packages/github/Requester.py", line 378, in __check
raise self.__createException(status, responseHeaders, output)
github.GithubException.GithubException: 403 {"message": "Resource not accessible by integration", "documentation_url": "<https://docs.github.com/rest/reference/issues#create-an-issue-comment>"}
geoHeil
08/11/2022, 7:58 PMDagsterInvariantViolationError: new_repo_name not found at module scope in file package/repository.py.
Charlie Bini
08/11/2022, 8:47 PMNicholas
08/11/2022, 10:41 PMYang
08/12/2022, 4:59 PMJason
08/15/2022, 8:48 PMv1+
and one on 0.15+
with legacy APIs such as @solid
. Can I upgrade my agent (k8) to v1+
without messing up my repo on 0.15 and still have any newer functionality available to me?Mark Fickett
08/16/2022, 5:07 PMMark Fickett
08/16/2022, 7:35 PMk8s_job_executor
, and the spot instances get interrupted, how will the executor respond -- retry the step on a new instance? Treat it as a failure? (Is that something I would expect to be handled at the k8s control plane, or the job executor?)Jason
08/16/2022, 7:49 PM1.0.3
and wanted to use my existing agent for branch deployments (I have a separate environment than production).
However, the env DAGSTER_CLOUD_DEPLOYMENT_NAME
is showing up as `a725e19f`… which also happens to be the last random value at the end of my deployment.
(if this helps, I was on the beta and I made no changes except no longer using a dedicated agent for branching)Charlie Bini
08/17/2022, 4:14 PMYang
08/17/2022, 6:18 PMAndrew Leverentz
08/17/2022, 11:15 PMcontext.get_tag
), although the default tags in dagster-cloud don't seem to contain info about the current deployment or dagit URL. I wonder if there might be any relevant info stored as instance-level settings under context.instance.get_settings
? Or perhaps as environment variables?Charlie Bini
08/18/2022, 4:02 PMAaron Ortega
08/19/2022, 4:30 PMsuccess
status on dbt cloud, so i know the jobs completed, but dagster jobs were still going on the dagster UI (it keeps polling). We’re running a hybrid deployment on ECS and i saw both ECS tasks had stopped. Therefore, i’m guessing the issue was on dagster-cloud’s end. I’ve clicked Terminate
and got the following message. I retried with the force option and it took ~15min to finally cancel.geoHeil
08/22/2022, 8:52 AMgeoHeil
08/23/2022, 3:56 AMgeoHeil
08/23/2022, 7:31 AMParas Mehta
08/23/2022, 2:12 PMlocation_name: my-test-dagster-location
image: ${MY_AWS_ACCOUNT_ID}.<http://dkr.ecr.us-east-1.amazonaws.com/bu-dagster-development:latest|dkr.ecr.us-east-1.amazonaws.com/bu-dagster-development:latest>
code_source:
package_name: data_warehouse
• contents of Dockerfile for Dagster code:
FROM python:3.8-slim
ADD requirements.txt .
RUN pip install -r requirements.txt
ADD . .
• contents of requirements.txt for Dagster code (previously, I did not have pinned versions for each; however, I tried this after seeing this suggested in a previous discussion; however, both methods resulted in the same below error):
dagster==0.15.8
dagster-cloud==0.15.8
dagster-airbyte==0.15.8
dagster-aws==0.15.8
dagster-dbt==0.15.8
Will post the stack traces / logs in a reply to this message