We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d518b commit 1076946Copy full SHA for 1076946
core/src/main/scala/org/apache/spark/executor/InputMetrics.scala
@@ -83,6 +83,7 @@ class InputMetrics private (
83
84
// Once incBytesRead & intRecordsRead is ready to be removed from the public API
85
// we can remove the internal versions and make the previous public API private.
86
+ // This has been done to suppress warnings when building.
87
@deprecated("incrementing input metrics is for internal use only", "2.0.0")
88
def incBytesRead(v: Long): Unit = _bytesRead.add(v)
89
private[spark] def incBytesReadInternal(v: Long): Unit = _bytesRead.add(v)
0 commit comments