is there a k8s_executor configuration where you ca...
# deployment-kubernetes
c
is there a k8s_executor configuration where you can set the max concurrent pods? There's runs on the deployment settings, but there may be multiple pods in one run, so a finer-grained control would be nice
d
we don't have a global limit for this right now unfortunately - you kind of have to approximate with a run limit and then potentially an ops-per-run limit
c
thanks @daniel -- if I tag a large group of assets with the same tag, I should be able to add limit their concurrency right?
I'm trying that and I think it's working but hard to see what's going on
d
this is within a single run?
c
across multiple runs
d
we only support concurrency limits across runs with tags that are applied at the job level
c
ok think I get it
so if I tag every asset in question with {"foo": "bar"}, this won't work unless they're in the same run?
Copy code
run_queue:
  tag_concurrency_limits:
    - key: foo
      value: bar
      limit: 40
d
those limits won't check tags on assets at all - they'll check tags on jobs
c
ok good to know