On a storage node, GlusterFS bricks (the physical disks composing a GlusterFS volume) are typically mounted at a specific location. For example: /export/glusterfs/<volume>/brick0/brick
.
However to use a GlusterFS volume, it must be mounted:
mount -t glusterfs gluster.example.com:/<volume> /mnt
Now I can change all the files in /mnt
and GlusterFS will do its magic. However, we can also see the same files in /export/glusterfs/<volume>/brick0/brick
.
Can the files in /export/glusterfs/<volume>/brick0/brick
be changed without breaking GlusterFS?