https://dagster.io/ logo
#dagster-releases
Title
# dagster-releases
y

yuhan

01/06/2023, 9:21 PM
Weekly Release Highlights: 1.1.8 🆕 Asset backfills now work with partition mapping 🧐 Asset output values can be fetched by key from execution results, which works with
materialize
,
materialize_to_memory
, and
execute_in_process
🏷️ Op concurrency limits can be configured thru executors with op tags (docs) 🧬 Experimental: • 👌
BranchingIOManager
allows to read assets from prod and write them to a dev env • python Op and asset configs can be defined and accessed using Python 3 typing • dbt dagster-dbt allows asset selection using dbt selection syntax docster More on docs: • Revamped Dagster Cloud getting started guide • Lots of updates to the dagster-airflow docs, including ◦ Dagster tutorial from Airflow background (link) ◦ Migration guide (link) ◦ Airflow vs Dagster concept map (link)
dagster yay 2
🎉 10
s

Stephen Bailey

01/06/2023, 9:26 PM
dagster-dbt allows asset selection using dbt selection syntax
. this is the one. is there a writeup on it?
s

sandy

01/06/2023, 9:34 PM
@owen ^
y

yuhan

01/06/2023, 9:35 PM
ah yuhan beat me to it!
hat tip 1
z

Zach P

01/07/2023, 12:03 AM
Wow i was literally just brainstorming how is implement some sort of branch based Io manager earlier today before reading this 👏 Y'all are some magic
👍 1
s

Stephen Bailey

01/07/2023, 12:32 AM
for others interested in the dbt selection syntax:
Copy code
from dagster_dbt import DbtManifestAssetSelection

my_selection = DbtManifestAssetSelection(
   manifest_json,
   select="tag:foo,path:marts/finance",
   node_info_to_asset_key=my_node_info_to_asset_key_fn,
)
🙏 3
f

Félix Tremblay

01/13/2023, 2:12 PM
Hello @yuhan, are there more information available for "Added the ability to use Python 3 typing to define and access op and asset config." ?