0.7.3
New
- It is now possible to configure a dagit instance to disable executing pipeline runs in a local
subprocess. - Resource initialization, teardown, and associated failure states now emit structured events
visible in Dagit. Structured events for pipeline errors and multiprocess execution have been
consolidated and rationalized. - Support Redis queue provider in
dagster-k8sHelm chart. - Support external postgresql in
dagster-k8sHelm chart.
Bugfix
- Fixed an issue with inaccurate timings on some resource initializations.
- Fixed an issue that could cause the multiprocess engine to spin forever.
- Fixed an issue with default value resolution when a config value was set using
SourceString. - Fixed an issue when loading logs from a pipeline belonging to a different repository in Dagit.
- Fixed an issue with where the CLI command
dagster schedule upwould fail in certain scenarios
with theSystemCronScheduler.
Pandas
- Column constraints can now be configured to permit NaN values.
Dagstermill
- Removed a spurious dependency on sklearn.
Docs
- Improvements and fixes to docs.
- Restored dagster.readthedocs.io.
Experimental
- An initial implementation of solid retries, throwing a
RetryRequestedexception, was added.
This API is experimental and likely to change.
Other
- Renamed property
runtime_typetodagster_typein definitions. The following are deprecated
and will be removed in a future version.InputDefinition.runtime_typeis deprecated. UseInputDefinition.dagster_typeinstead.OutputDefinition.runtime_typeis deprecated. UseOutputDefinition.dagster_typeinstead.CompositeSolidDefinition.all_runtime_typesis deprecated. UseCompositeSolidDefinition.all_dagster_typesinstead.SolidDefinition.all_runtime_typesis deprecated. UseSolidDefinition.all_dagster_typesinstead.PipelineDefinition.has_runtime_typeis deprecated. UsePipelineDefinition.has_dagster_typeinstead.PipelineDefinition.runtime_type_namedis deprecated. UsePipelineDefinition.dagster_type_namedinstead.PipelineDefinition.all_runtime_typesis deprecated. UsePipelineDefinition.all_dagster_typesinstead.