作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Apache的文档说
Similar to posix fsync, flush out the data in client's user buffer
all the way to the disk device (but the disk may have it in its cache).
cat
或tail
时,我在文件中看到该事件。但是,在再编写2或3个事件之后,我看不到它们。我必须关闭流以查看那些数据被刷新到文件中。 最佳答案
Hsync操作是非常昂贵的IO操作,它将数据从os缓冲区写入磁盘。每次写入后,您必须调用hflush而不是hsync。
有关更详细的解释,请在下面浏览我的帖子
https://medium.com/@kiran.palaka/how-hflush-works-in-hdfs-hadoop-52d782ed92d3
关于hadoop - hsync()如何在HDFS中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33257397/
我是一名优秀的程序员,十分优秀!