How can I serialize all of my asset definitions? #17976
-
Has anyone attempted to serialize all asset definitions to a file upon running dagster? I've attempted pickle/cloudpickle/dill, and also some functions in The question was originally asked in Dagster Slack. |
Beta Was this translation helpful? Give feedback.
Answered by
alangenfeld
Nov 13, 2023
Replies: 1 comment 2 replies
-
As discovered, the Dagster definitions objects are not serializable. "External" representations of the definitions are used to communicate information about definitions across processes. Those are currently serialized with |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
alangenfeld
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As discovered, the Dagster definitions objects are not serializable. "External" representations of the definitions are used to communicate information about definitions across processes. Those are currently serialized with
dagster._serdes
.