Hi everyone<br><br>I'm currently using drbd as a network RAID 1 solution with my devices using lustre file system. <br><br>I worked well during 3 months, but for now, because of some problem with lustre and our storage devices, we have to rebuild almost all of our storage solution. And the problems we're encountering with drbd now is : <br>
<br>After synchronizing a couple of our disk, we reformat it with lustre file system format and start copying our data to drbd disk, but its I/O wait is too high ( about 25% ) and the copy speed from our web client to drbd device is too slow, only about 13MB/s although we're using 1Gb Ethernet !!! <br>
<br>I tried using one disk ( without using drbd ) with lustre file system and it's ok. <br><br>Here is my drbd.conf file :<br><br>global {<br> usage-count yes;<br>}<br>common {<br> protocol C;<br>}<br>resource r0 {<br>
net {<br> allow-two-primaries;<br> after-sb-0pri discard-zero-changes;<br> after-sb-1pri discard-secondary;<br> after-sb-2pri disconnect;<br> }<br>startup {<br> become-primary-on both;<br> }<br>syncer {<br>
rate 80M;<br> }<br>handlers {<br> split-brain "/usr/lib/drbd/notify-split-brain.sh root";<br> }<br><br> on OST4 {<br> device /dev/drbd4;<br> disk /dev/sdb;<br> address <a href="http://10.0.0.84:7789">10.0.0.84:7789</a>;<br>
meta-disk internal;<br> }<br> on OST5 {<br> device /dev/drbd4;<br> disk /dev/sdb;<br> address <a href="http://10.0.0.85:7789">10.0.0.85:7789</a>;<br> meta-disk internal;<br> }<br>}<br><br>resource r1 {<br>
net {<br> allow-two-primaries;<br> after-sb-0pri discard-zero-changes;<br> after-sb-1pri discard-secondary;<br> after-sb-2pri disconnect;<br> }<br>startup {<br> become-primary-on both;<br> }<br>syncer {<br>
rate 80M;<br> }<br>handlers {<br> split-brain "/usr/lib/drbd/notify-split-brain.sh root";<br> }<br><br> on OST4 {<br> device /dev/drbd5;<br> disk /dev/sdc;<br> address <a href="http://10.0.0.84:7788">10.0.0.84:7788</a>;<br>
meta-disk internal;<br> }<br> on OST5 {<br> device /dev/drbd5;<br> disk /dev/sdc;<br> address <a href="http://10.0.0.85:7788">10.0.0.85:7788</a>;<br> meta-disk internal;<br> }<br>}<br><br><br>
<br><br>Do you have any idea about my problem? <br><br>Hope you can give me the answer as soon as possbile<br><br>Many thanks <br>