Help needed with tags keyword of define_asset_job #17813
-
Hey team, I'm attempting to use the generic_asset_job = define_asset_job(
"generic_asset_job",
selection=AssetSelection.groups("generic_group"),
tags={
"ecs/cpu": "16384",
"ecs/memory": "32768",
},
) and this is my scheduler:
module: dagster.core.scheduler
class: DagsterDaemonScheduler
run_coordinator:
module: dagster.core.run_coordinator
class: QueuedRunCoordinator
run_launcher:
module: dagster_aws.ecs
class: EcsRunLauncher
config:
include_sidecars: true
secrets_tag: "dagster"
run_resources:
cpu: "8192"
memory: "16384" # In MiB
ephemeral_storage: 30 # In GiB (defaults to 20) The question was originally asked in Dagster Slack. |
Beta Was this translation helpful? Give feedback.
Answered by
garethbrickman
Feb 6, 2025
Replies: 1 comment 2 replies
-
This sounds like a bug, i'm going to create an issue for it |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can't reproduce. Currently the tags parameter would only work to override the ECS run_resources if it was set in a pre-defined job, not if assets were selected and materialized in an ad hoc way in the UI. This example in the docs shows an op job, but it would work in an asset job too.