Help Center> Data Lake Insight> FAQs> Problems Related to SQL Jobs> O&M Guide> Why Does a SQL Job That Has Join Operations Stay in the Running State?
Updated on 2023-05-19 GMT+08:00

Why Does a SQL Job That Has Join Operations Stay in the Running State?

Symptom

A SQL job contains join operations. After the job is submitted, it is stuck in the Running state and no result is returned.

Possible Causes

When a Spark SQL job has join operations on small tables, all executors are automatically broadcast to quickly complete the operations. However, this increases the memory consumption of the executors. If the executor memory usage is too high, the job fails to be executed.

Solution

  1. Check whether the /*+ BROADCAST(u) */ falg is used to forcibly perform broadcast join in the executed SQL statement. If the flag is used, remove it.
  2. Set spark.sql.autoBroadcastJoinThreshold to -1.
    1. Log in to the DLI management console and choose Job Management > SQL Jobs. In the Operation column of the failed job, click Edit to switch to the SQL editor page.
    2. Click Settings in the upper right corner. In the Parameter Settings area, add spark.sql.autoBroadcastJoinThreshold and set it to -1.
    3. Click Execute again to and view the job running result.

O&M Guide FAQs

more