Open andre-merzky opened 2 months ago
A few things to note here.
airflow dags backfill -s YYYY-MM-DD --reset-dagruns -y run_gmx
partial
method is used to invoke the same operator with some arguments held fixed and some varying. Thus its behavior can be a little hard to reason about and also to debugMPIBashOperator
in because I spent a lot of time trying to figure out how to get it to work. I subsequently developed the ResourceBashOperator
(and children) which are the ones that should be used for development and testing purposes. Basically it was too much work to get limitations on both the number of MPI ranks and GPUs using the model of the MPIBashOperator
, so I took a different courseThanks Joe. I also saw the error a couple of times when not using the command line tools but could not determine yet what triggers it. And yes, that PoolPartialDescriptor
seems to be a funny :-)
Hey,
I am trying to catch up with the latest developments, but alas am stumbling over the following error:
This is using
apache-airflow==2.10.0
andPython 3.10.13
.I don't really see why that happens - the
PoolPartialDescriptor
is a class after all. Any idea what's going on? Thanks!