Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚才想通过C在HDFS中存储一个文件,其中包括位置写入。有什么可能的方法吗?(我不能使用任何面向列的数据库,如 HBase)
提前致谢
HDFS 使用的输出流 DFSOutputStream 具有写入特定位置的方法。在以下方法中,它是偏移量。
protected synchronized void writeChunk(byte[] b, int offset, int len, byte[] checksum)
对于具有查找功能的 DFSInputStreams 也是如此。