We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83b1d73 commit 9992c10Copy full SHA for 9992c10
common/network-yarn/src/main/java/org/apache/spark/network/yarn/YarnShuffleService.java
@@ -179,7 +179,7 @@ protected void serviceInit(Configuration conf) throws Exception {
179
Method registerSourceMethod = metricsSystem.getClass().getDeclaredMethod("registerSource",
180
String.class, String.class, MetricsSource.class);
181
registerSourceMethod.setAccessible(true);
182
- registerSourceMethod.invoke(metricsSystem, "shuffleservice", "Metrics on the Spark " +
+ registerSourceMethod.invoke(metricsSystem, "shuffleService", "Metrics on the Spark " +
183
"Shuffle Service", serviceMetrics);
184
logger.info("Registered metrics with Hadoop's DefaultMetricsSystem");
185
} catch (Exception e) {
0 commit comments