Baidu File System – A distributed file system for real-time applications
11–20 of 169 posts
Re: Baidu File System – A distributed file system for real-time applications
#12Re: Baidu File System – A distributed file system for real-time applications
#13Eg. lylei changed the title from "cs启动太慢" to "cs start is too slow " ( on https://github.com/baidu/bfs/issues/376 )
lylei changed the title from "其他SDK写策略" to "SDK writing strategies(fan-out write for example)" (on https://github.com/baidu/bfs/issues/243 )
Re: Baidu File System – A distributed file system for real-time applications
#14Re: Baidu File System – A distributed file system for real-time applications
#15Re: Baidu File System – A distributed file system for real-time applications
#16Using Raft over a dependency on an external consensus system is nice. Definitely makes the namenode architecture much better.
Re: Baidu File System – A distributed file system for real-time applications
#17More like a C++ clone of HDFS than most people are likely hoping. While you seem to be able to mount it with FUSE I imagine it's primarily meant to be programmed against directly. Using Raft over a dependency on an external consensus system is nice. Definitely makes the namenode architecture much better.
Re: Baidu File System – A distributed file system for real-time applications
#18 std::string pad;
if (path[path.size() - 1] != '/') {
pad = "/";
}
Else?Re: Baidu File System – A distributed file system for real-time applications
#19https://github.com/baidu/bfs/blob/master/src/client/bfs_clie... std::string pad; if (path[path.size() - 1] != '/') { pad = "/"; } Else?