在webhdfs中,length和spaceConsumed之间有什么区别?

vlf7wbxs  于 2022-12-09  发布在  HDFS
关注(0)|答案(1)|浏览(173)

使用webhdfs我们可以得到一个目录/文件的内容摘要。
但是,我不清楚以下属性:

"length":
        {
          "description": "The number of bytes used by the content.",
          "type"       : "integer",
          "required"   : true
        }

"spaceConsumed":
        {
          "description": "The disk space consumed by the content.",
          "type"       : "integer",
          "required"   : true
        }

它们之间的区别到底是什么?spaceConsumed是否包括磁盘复制所占用的大小?内部方法文档没有提供其他详细信息。

isr3a4wc

isr3a4wc1#

据一位同事说,答案是:

spaceConsumed = length * replicationFactor

不过,我没有任何资料可以证明。

相关问题