不同的hadoop类型文件
Hadoop一般支持这些文件格式:SequenceFile、TFile和Avro。
- 它支持其他主要格式吗?
- 图像怎么样?它们是否使用相同的文件格式存储?是否必须以不同的方式对它们进行索引/查询?
感谢您的帮助!
Hadoop generally supports these file formats: SequenceFile, TFile and Avro.
- Are there any other major formats that it supports?
- How about images? Are they stored using the same file formats? Do they have to be indexed/queried in a different way?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MapFile 是一个 SortedSequenceFile,带有索引以允许按键查找。图像可以按原样存储,也可以存储在 SequenceFile/MapFile 中进行处理。
MapFile is a SortedSequnceFile with an index to permit look ups by key. Images can be stored as-is or in a SequenceFile/MapFile for processing.