Skip to content

Commit

Permalink
[jb]The log is blank and the interface is empty in the SparkSQL task
Browse files Browse the repository at this point in the history
  • Loading branch information
raylliu committed Sep 14, 2024
1 parent 2271a45 commit 19ca94c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def retrieve_log_content(self, log_links, log_name, username, offset):
def get_executors_loglinks(self, job):
executor = None
if job.metrics and 'executors' in job.metrics and job.metrics['executors']:
executors = [executor for executor in job.metrics['executors'] if executor[0] == 'driver'] # look up driver executor
executors = [executor for executor in job.metrics['executors'] if executor[0] != 'driver'] # look up driver executor
if not executors:
executor = job.metrics['executors'][0]
else:
Expand Down

0 comments on commit 19ca94c

Please sign in to comment.