고 가용성 서비스를 호스팅하기 위해 RAID 어레이 (8 코어, 16GB RAM, 12x2TB RAID6), 3 개의 10GigE 인터페이스가있는 동일한 서버 쌍을 설정했습니다.
시스템은 현재 Debian 7.9 Wheezy oldstable을 실행하고 있습니다 (corosync / pacemaker는 8.x 안정도 및 테스트에서도 사용할 수 없기 때문에).
- 로컬 디스크 성능은 약 900MB / s 쓰기, 1600MB / s 읽기입니다.
- 머신 간 네트워크 처리량은 700MB / s 이상입니다.
- iSCSI를 통해 각 머신은 700MB / s 이상의 상대방 스토리지에 쓸 수 있습니다.
그러나 DRBD를 구성하는 방식에 관계없이 처리량은 100MB / s로 제한됩니다. 실제로 하드 코딩 된 한계처럼 보입니다. 설정을 조정하여 성능을 안정적으로 낮출 수는 있지만 1Gbit를 초과하지는 않습니다 (한 번에 몇 초 동안 122MB / s에 도달). 나는 정말로 이것에 머리를 당기고있다.
- 일반 바닐라 커널 3.18.24 amd64
- drbd 8.9.2 ~ rc1-1 ~ bpo70 + 1
구성은 두 파일로 나뉩니다. global-common.conf
:
global {
usage-count no;
}
common {
handlers {
}
startup {
}
disk {
on-io-error detach;
# no-disk-flushes ;
}
net {
max-epoch-size 8192;
max-buffers 8192;
sndbuf-size 2097152;
}
syncer {
rate 4194304k;
al-extents 6433;
}
}
그리고 cluster.res
:
resource rd0 {
protocol C;
on cl1 {
device /dev/drbd0;
disk /dev/sda4;
address 192.168.42.1:7788;
meta-disk internal;
}
on cl2 {
device /dev/drbd0;
disk /dev/sda4;
address 192.168.42.2:7788;
meta-disk internal;
}
}
cat /proc/drbd
슬레이브 에서 출력 :
version: 8.4.5 (api:1/proto:86-101)
srcversion: EDE19BAA3D4D4A0BEFD8CDE
0: cs:SyncTarget ro:Secondary/Secondary ds:Inconsistent/UpToDate C r-----
ns:0 nr:4462592 dw:4462592 dr:0 al:0 bm:0 lo:0 pe:0 ua:0 ap:0 ep:1 wo:f oos:16489499884
[>....................] sync'ed: 0.1% (16103024/16107384)M
finish: 49:20:03 speed: 92,828 (92,968) want: 102,400 K/sec
vmstat 2
마스터 에서 출력 (두 머신 모두 거의 유휴 상태 임) :
procs -----------memory---------- ---swap-- -----io---- -system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wa
0 0 0 14952768 108712 446108 0 0 213 254 16 9 0 0 100 0
0 0 0 14952484 108712 446136 0 0 0 4 10063 1361 0 0 99 0
0 0 0 14952608 108712 446136 0 0 0 4 10057 1356 0 0 99 0
0 0 0 14952608 108720 446128 0 0 0 10 10063 1352 0 1 99 0
0 0 0 14951616 108720 446136 0 0 0 6 10175 1417 0 1 99 0
0 0 0 14951748 108720 446136 0 0 0 4 10172 1426 0 1 99 0
iperf
두 서버 간의 출력 :
------------------------------------------------------------
Client connecting to cl2, TCP port 5001
TCP window size: 325 KByte (default)
------------------------------------------------------------
[ 3] local 192.168.42.1 port 47900 connected with 192.168.42.2 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0-10.0 sec 6.87 GBytes 5.90 Gbits/sec
분명히 초기 동기화는 다소 느리지 만이 속도는 느리지 않습니다. 또한 동기화 속도를 조절하려는 시도에는 실제로 반응하지 않습니다 drbdadm disk-options --resync-rate=800M all
.