glusterfs中split-brain的重现与修复

假设有两台glusterfs的server

ComputeA 10.0.0.2

ComputeB 10.0.0.3


分别共享本地目录/home/glusterfs/目录作为共享目录,gluster volume挂载在/var/lib/nova/instances/

断开ComputeB的网络

[html] view plain copy
  1. [ComputeB]#echo "bad" > /home/glusterfs/test  
  2. [ComputeA]#echo "good" > /home/glusterfs/test  

重新恢复ComputeB的网络。

这个时候脑裂产生了!

[html] view plain copy
  1. cat /var/lib/nova/instances/test  
  2. Input/output error  
  3. gluster volume heal gluster_vol info split-brain  

会显示有问题的文件。


解决办法:

参考http://inuits.eu/blog/fixing-glusterfs-split-brain

在ComputeB上面执行

[html] view plain copy
  1. find /home/glusterfs/ -samefile /home/glusterfs/test -print -delete  
  2. /home/glusterfs/.glusterfs/47/0a/470a742c-b0d6-4846-9ab3-2483c3a0c8da  
  3. /home/glusterfs/test  

等一会同步完成之后
[html] view plain copy
  1. cat /var/lib/nova/instances/test  
  2. good  

脑裂修复啦!

来自:http://blog.csdn.net/xuanlangjian/article/details/16881523

你可能感兴趣的:(glusterfs)