FreeBSD 10.2 - 是否可以进行三向 HAST 复制?

FreeBSD 10.2 - 是否可以进行三向 HAST 复制?

我有一对使用 HAST 的 FreeBSD 10.2 服务器来保持它们之间的卷复制。我将引入两个新的存储节点,它们具有更新的硬件,最终将取代现有的服务器,但我想在不破坏现有设置的情况下逐步引入复制。

我正在尝试使用这样的配置:

# /etc/hast.conf
# HAST - Highly Available Storage


compression     lzf
checksum       crc32
timeout         10
replication     memsync


resource ha0 {
        # new storage node #1
        on zsan1 {
                local /dev/zvol/vmdata/targets/ha0
                remote 10.10.30.11
                remote 10.10.30.12
                remote 10.10.30.14
        }
        # new storage node #2
        on zsan2 {
                local /dev/zvol/vmdata/targets/ha0
                remote 10.10.30.11
                remote 10.10.30.12
                remote 10.10.30.13
        }
        # old storage node #1
        on zfs-primary {
                local /dev/zvol/tank/targets/ha0
                remote 10.10.30.12
                remote 10.10.30.13
                remote 10.10.30.14
        }
        # old storage node #2
        on zfs-secondary {
                local /dev/zvol/tank/targets/ha0
                remote 10.10.30.11
                remote 10.10.30.13
                remote 10.10.30.14
        }
}

我已经创建了新卷来测试新服务器和现有服务器上的此配置的复制,但是当我在主节点上运行 hastctl 时,它只显示一个“remoteaddr”:

root@zsan1:~ # hastctl list
ha0:
  role: primary
  provname: ha0
  localpath: /dev/zvol/vmdata/targets/ha0
  extentsize: 2097152 (2.0MB)
  keepdirty: 64
  remoteaddr: 10.10.30.14
  replication: memsync
  status: degraded
  workerpid: 7229
  dirty: 3424649216 (3.2GB)
  statistics:
    reads: 1649
    writes: 26117
    deletes: 0
    flushes: 27
    activemap updates: 1651
    local errors: read: 0, write: 0, delete: 0, flush: 0
    queues: local: 0, send: 0, recv: 0, done: 0, idle: 255

如果有人可以在这里帮助我,我将不胜感激,要么我正在做的事情不受支持,要么我做错了。谢谢你!

相关内容