Rice-Comp413-2016 / RDFS

The Rice Comp413 class (2016-2017) implementation of HDFS. (This will eventually be put under an open source license, which one TBD).
4 stars 2 forks source link

Incorporate AddBlock, GetBlockInfo, and data persistence layer into Client-DataNode data streaming #41

Closed jfking closed 7 years ago

jfking commented 8 years ago

Reads and writes between the client and DataNode currently rely on dummy data to show correctness. We want the client requests to reflect actual blocks with actual data in them, and we want the DataNode's response to reflect the contents of those files as written at an earlier date. On that note, the DataNode should be able to persist data received from the Client on that DataNode's local FS.

Drazcmd commented 8 years ago

I believe we're processing read requests now, looks like write requests still need work.

pelmers commented 7 years ago

47