Environment: FreeBSD 11.1R, 10Gbx2 Ethernet(LACP), 8GBx2 FC(multipath)
I want to build a FreeBSD virtualization cluster with 5+ hosts. Because bhyve doesn't support live migration at this time, Xen(Dom0) is the unique method.
The simplest topology looks like:
Because of the requirement for live migration, the main drawbacks of this topology include:
1) VMs can't use zvol as the backend, so it will cause significant performance loss.
2) The only NFS server(Server1) becomes "single point of failure".
The ideal topology looks like:
What kind of shared-disk file system should I distribute? Something like OCFS2 on Linux?
Thanks!
I want to build a FreeBSD virtualization cluster with 5+ hosts. Because bhyve doesn't support live migration at this time, Xen(Dom0) is the unique method.
The simplest topology looks like:
Code:
Server2 ... Server9
--------- --------- ---------
NFS(50TB) NFS(50TB) NFS(50TB)
\ | /
\ | /
\ | /
\___ZFS(50TB)___/
---------
Server1 ---FC--- SAN
1) VMs can't use zvol as the backend, so it will cause significant performance loss.
2) The only NFS server(Server1) becomes "single point of failure".
The ideal topology looks like:
Code:
Server1 Server2 ... Server9
-------------------------------------
50TB (some kind of file system)
| | | |
| | | |
| | | |
FC FC FC FC
\ \ / /
\ \ / /
\_________\ /_________/
SAN
Thanks!