Let's say, I set celery concurrency to n, but I have m(m>n) ExternalTaskSensor in a dag, it will check another dag named do_sth, these ExternalTaskSensor will consume all celery worker, so that no one will work in fact.
But I can't set concurreny too high(like 2*m), because dag do_sth may start too many process which will lead to out of memory.
I am confused what number I should set to celery concurrency?