bral
08/30/2021, 7:09 PMWilson Bilkovich
08/30/2021, 7:13 PM--death-timeout
but that doesn't sound like what is happening to you. Hmm.bral
08/30/2021, 7:18 PMZach Angell
KilledWorker: ('blahblahblah', <Worker '<tcp://10.10.10.qp:38828>', name: 367, memory: 0, processing ...
bral
08/30/2021, 7:22 PMWilson Bilkovich
08/30/2021, 7:24 PMkubectl get pods -w
to see the new dask pod when it comes up, and then I do kubectl logs -f $POD_NAME
on that pod.Wilson Bilkovich
08/30/2021, 7:24 PMZach Angell
Note the special case of `KilledWorker`: this means that a particular task was tried on a worker, and it died, and then the same task was sent to another worker, which also died.Of the possible issues in the guide, the most common one we see with Prefect + Dask is mismatched versions between the client, scheduler, and worker Python libraries
bral
08/30/2021, 7:32 PMKevin Kho