Skip to content

Commit

Permalink
Small multi-asset fix and dagster chart update (#2742)
Browse files Browse the repository at this point in the history
Small multi-asset fix
  • Loading branch information
ravenac95 authored Jan 10, 2025
1 parent 8428554 commit a6a09b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ops/helm-charts/oso-dagster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: oso-dagster
description: Extension of the dagster template

type: application
version: 0.11.0
version: 0.12.0
appVersion: "1.0.0"
dependencies:
- name: dagster
Expand Down
2 changes: 1 addition & 1 deletion ops/helm-charts/oso-dagster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ sqlmesh:
cluster:
minSize: "0"
maxSize: "60"
defaultSlots: "2"
defaultSlots: "4"
k8s:
deploymentName: "mcs"
serviceName: "mcs"
Expand Down
4 changes: 3 additions & 1 deletion warehouse/oso_dagster/resources/sqlmesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ async def export(
),
log_override=context.log,
)
yield MaterializeResult(asset_key=AssetKey(table_name))
yield MaterializeResult(
asset_key=AssetKey(table_name).with_prefix(self._prefix)
)

return export

Expand Down

0 comments on commit a6a09b6

Please sign in to comment.