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 96d0578 commit d4e542eCopy full SHA for d4e542e
core/src/main/scala/org/apache/spark/util/HadoopFSUtils.scala
@@ -333,14 +333,14 @@ private[spark] object HadoopFSUtils extends Logging {
333
}
334
// scalastyle:on argcount
335
336
- /** A serializable variant of HDFS's BlockLocation. */
+ /** A serializable variant of HDFS's BlockLocation. This is required by Hadoop 2.7. */
337
private case class SerializableBlockLocation(
338
names: Array[String],
339
hosts: Array[String],
340
offset: Long,
341
length: Long)
342
343
- /** A serializable variant of HDFS's FileStatus. */
+ /** A serializable variant of HDFS's FileStatus. This is required by Hadoop 2.7. */
344
private case class SerializableFileStatus(
345
path: String,
346
length: Long,
0 commit comments