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.
当我使用 writeType THROUGH 在 alluxio-fuse 挂载的目录中写入文件时。我发现同步文件需要 2-3 分钟。为什么文件需要时间来同步?
以下是安装目录。写作时间:15:40。同步后:15:43
当使用 THROUGH writeType 写入 Alluxio 时,Alluxio 将首先更新其元数据以显示零字节的文件(如第一张图像中的 9.txt)。当文件成功写入Alluxio的FileSystem下,Alluxio会更新其元数据以显示该文件的实际大小(9.txt显示其实际大小为209715200字节)。
2到3分钟是Alluxio在文件系统下写入数据的时间。
谢谢,