Can GlusterFS notifies after synchronizations?

2019-06-08 05:52发布

I have several questions about the way GlusterFS synchronizes files.

  • Is there a way I can get notified when a synchronization has finished on a client or a server ? For instance, are synchronizations logged somewhere ?
  • Let's say I want to synchronize a whole directory, will it be synchronized file by file or once for all ? This can actually be an important information if I want to use things like inotify on synchronized directories.

1条回答
在下西门庆
2楼-- · 2019-06-08 06:40

GlusterFS is not a file sync utility, it is a virtual filesystem. It works by aggregating local storage on several servers then making the unified storage available to clients via FUSE mounts or directly through a client API.

When you write files into a replicated GlusterFS volume the files are written to all replicas at the same time, there is no sync delay.

查看更多
登录 后发表回答