We have a setup that uses the gluster clients on the nodes where the storage is located<br>for a replicated file system.<br><br>Is there a way to expand the replica count and not have to remount the volume on the other nodes or delete/re-create the volume?<br>
<br>Currently we do the following:<br>gluster peer probe $clusteraddr<br>mount -t glusterfs $clusteraddr:$global_volume $MOUNT_POINT<br><br>get some data....<br>umount $MOUNT_POINT<br>echo &#39;y&#39; | gluster volume stop $global_volume <br>
echo &#39;y&#39; | gluster volume delete $global_volume <br><br>gluster volume create $global_volume replica $numreplicas node1:back_store node2:/back_store node3:/backstore<br>gluster volume start $global_volume <br>mount -t glusterfs localhost:$global_volume $MOUNT_POINT<br>
find $MOUNT_POINT -print0 | xargs --null stat &gt;/dev/null<br><br>Then on the other nodes we have to <br>umount $MOUNT_POINT<br>mount  -t glusterfs localhost:$global_volume $MOUNT_POINT<br><br>