We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This helps debugging issues.
Log the list of executor nodes
The sure way of getting this list takes time:
val sc = spark.sparkContext val data = sc.parallelize(1 to 10000000).repartition(sc.defaultParallelism) data.mapPartitions { _ => Iterable(java.net.InetAddress.getLocalHost.getHostName).iterator }.collect().distinct.sorted
so it should be configured and turned off by default:
log.executor.nodes = false
The text was updated successfully, but these errors were encountered:
#225 Add the ability to log the list of executor nodes at the start o…
f724977
…f the job.
c6cf473
yruslan
No branches or pull requests
Background
This helps debugging issues.
Feature
Log the list of executor nodes
Proposed Solution
The sure way of getting this list takes time:
so it should be configured and turned off by default:
The text was updated successfully, but these errors were encountered: