Hadoop 每个文件块大小
在 Hadoop 书中,我们可以在创建文件时指定每个文件的块大小。
“增加分割大小的最自然的方法是通过设置 dfs.block.size 或在文件构建时基于每个文件在 HDFS 中拥有更大的块。”
知道如何在文件构建时执行此操作。我希望通过将其设置为 value = file-size ,文件不会被分割
In Hadoop book it is said that we can specify per-file block size at the time of creation of file.
"The most natural way to increase the split size is to have larger blocks in HDFS, by setting dfs.block.size, or on a per-file basis at file construction time."
Any idea how to do this at file construction time. I hope by setting this to value = file-size, the file will not be split
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用CLI:
或者当您想要创建或复制文件时,您可以使用Java API来指定dfs.block.size。
you can use CLI:
or you can use Java API to specify the dfs.block.size when you want to create or copy files.