You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dagster api execute_run command captures all Dagster events generated for the run, and then prints them out after the run is complete. This logging to stdout cannot be configured via the run config or through any logging configuration.
stdout is used as logging. For example, we forward stdout to Datadog as logs.
dagster api execute_run command is how various RunLaunchers (like the DockerRunLauncher) launch runs
The combination of the two generates a lot of log spam that cannot be controlled or configured. Log spam makes it harder to pick out important or relevant events.
Reproduction
Any run using dagster api execute_run will generate this stdout output
Dagit UI/UX Issue Screenshots
Additional Info about Your Environment
Message from the maintainers:
Impacted by this bug? Give it a 👍. We factor engagement into prioritization.
The text was updated successfully, but these errors were encountered:
Summary
As discussed with @OwenKephart:
The
dagster api execute_run
command captures all Dagster events generated for the run, and then prints them out after the run is complete. This logging to stdout cannot be configured via the run config or through any logging configuration.dagster/python_modules/dagster/dagster/cli/api.py
Line 67 in f61a89a
This can be a problem when:
dagster api execute_run
command is how variousRunLauncher
s (like theDockerRunLauncher
) launch runsReproduction
Any run using
dagster api execute_run
will generate this stdout outputDagit UI/UX Issue Screenshots
Additional Info about Your Environment
Message from the maintainers:
Impacted by this bug? Give it a 👍. We factor engagement into prioritization.
The text was updated successfully, but these errors were encountered: