How to deal with tasks running too long (comparing to others in job) in yarn-client?

后端 未结 2 1479
醉酒成梦
醉酒成梦 2021-02-04 08:12

We use a Spark cluster as yarn-client to calculate several business, but sometimes we have a task run too long time:

We don\'t set timeout but I th

2条回答
  •  心在旅途
    2021-02-04 09:15

    The trick here is to login directly to the worker node and kill the process. Usually you can find the offending process with a combination of top, ps, and grep. Then just do a kill pid.

提交回复
热议问题