Skip to content

Commit

Permalink
0.14.6 changelog (#7184)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiedemaria committed Mar 25, 2022
1 parent 0c1fea5 commit a892e0d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

# 0.14.6

### New

* Added IO manager for materializing assets to GCS. You can specify the GCS asset IO manager by using the following config for `resource_defs` in `AssetGroup`:

```
`from dagster import AssetGroup, gcs_pickle_asset_io_manager, gcs_resource
asset_group = AssetGroup(
[upstream_asset, downstream_asset],
resource_defs={"io_manager": gcs_pickle_asset_io_manager, "gcs": gcs_resource}
)`
```

* Improved the performance of storage queries run by the sensor daemon to enforce the idempotency of run keys. This should reduce the database CPU when evaluating sensors with a large volume of run requests with run keys that repeat across evaluations.
* [dagit] Added information on sensor ticks to show when a sensor has requested runs that did not result in the creation of a new run due to the enforcement of idempotency using run keys.
* [k8s] Run and step workers are now labeled with the Dagster run id that they are currently handling.
* If a step launched with a StepLauncher encounters an exception, that exception / stack trace will now appear in the event log.

### Bugfixes

* Fixed a race condition where canceled backfills would resume under certain conditions.
* Fixed an issue where exceptions that were raised during sensor and schedule execution didn’t always show a stack trace in Dagit.
* During execution, dependencies will now resolve correctly for certain dynamic graph structures that were previously resolving incorrectly.
* When using the forkserver start_method on the multiprocess executor, preload_modules have been adjusted to prevent libraries that change namedtuple serialization from causing unexpected exceptions.
* Fixed a naming collision between dagster decorators and submodules that sometimes interfered with static type checkers (e.g. pyright).
* [dagit] postgres database connection management has improved when watching actively executing runs
* [dagster-databricks] The databricks_pyspark_step_launcher now supports steps with RetryPolicies defined, as well as `RetryRequested` exceptions.

### Community Contributions

* Docs spelling fixes - thanks @antquinonez!

# 0.14.5
### Bugfixes

Expand Down

1 comment on commit a892e0d

@vercel
Copy link

@vercel vercel bot commented on a892e0d Mar 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.