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
I'm running a mutli-asset materialization with dagster-pipes using the setting can_subset=True.
However, the can_subset=True (combined with is_required=False in the outs) seems to not function correctly.
When I run a one of my five assets in the Dagster UI, I receive the following error message:
dagster._core.errors.DagsterInvariantViolationError: op 'ingest' did not yield or return
expected outputs 'asset1', 'asset2 'asset3 'asset4'}. Did you forget to `yield from pipes_session.get_results()`
or `return <PipesClient>.run(...).get_results`?
If I attempt to return a blank Output for the assets that are not selected as well, I receive this error:
dagster._core.errors.DagsterInvariantViolationError: Core compute for op "ingest"
returned an output "asset1" that is not selected. The selected outputs are {'asset5'}
What did you expect to happen?
I would expect to be able to run any number of our assets at one time and have the job finish successfully.
Impacted by this issue? Give it a 👍! We factor engagement into prioritization.
By submitting this issue, you agree to follow Dagster's Code of Conduct.
The text was updated successfully, but these errors were encountered:
What's the issue?
I'm running a
mutli-asset
materialization withdagster-pipes
using the settingcan_subset=True
.However, the
can_subset=True
(combined withis_required=False
in theouts
) seems to not function correctly.When I run a one of my five assets in the Dagster UI, I receive the following error message:
If I attempt to return a blank Output for the assets that are not selected as well, I receive this error:
What did you expect to happen?
I would expect to be able to run any number of our assets at one time and have the job finish successfully.
How to reproduce?
dagster_code.py
external_code.py
Dagster version
1.9.3
Deployment type
None
Deployment details
No response
Additional information
No response
Message from the maintainers
Impacted by this issue? Give it a 👍! We factor engagement into prioritization.
By submitting this issue, you agree to follow Dagster's Code of Conduct.
The text was updated successfully, but these errors were encountered: