Blame README.replicated-server

Packit Service a4b2a9
Supported forms for mount paths are:
Packit Service a4b2a9
Packit Service a4b2a9
Normal single-host (these are unchanged)
Packit Service a4b2a9
<path> host:/path/path
Packit Service a4b2a9
Packit Service a4b2a9
Single host entries are not probed for a server response.
Packit Service a4b2a9
Packit Service a4b2a9
Multiple replicated hosts, same path:
Packit Service a4b2a9
<path> host1,host2,hostn:/path/path
Packit Service a4b2a9
Packit Service a4b2a9
Multiple hosts, some with same path, some with another
Packit Service a4b2a9
<path> host1,host2:/blah host3:/some/other/path
Packit Service a4b2a9
Packit Service a4b2a9
Multiple replicated hosts, different (potentially) paths:
Packit Service a4b2a9
<path> host1:/path/pathA host2:/path/pathB
Packit Service a4b2a9
Packit Service a4b2a9
Mutliple weighted, replicated hosts same path:
Packit Service a4b2a9
<path> host1(5),host2(6),host3(1):/path/path
Packit Service a4b2a9
Packit Service a4b2a9
Multiple weighted, replicated hosts different (potentially) 
Packit Service a4b2a9
paths:
Packit Service a4b2a9
<path> host1(3):/path/pathA host2(5):/path/pathB
Packit Service a4b2a9
Packit Service a4b2a9
For these formats a priority ordered list of hosts is created by using
Packit Service a4b2a9
the following selection rules.
Packit Service a4b2a9
Packit Service a4b2a9
1) Highest priority in selection is proximity.
Packit Service a4b2a9
   Proximity, in order of precedence is:
Packit Service a4b2a9
     - PROXIMITY_LOCAL, host corresponds to a local interface.
Packit Service a4b2a9
     - PROXIMITY_SUBNET, host is located in a subnet reachable
Packit Service a4b2a9
       through a local interface.
Packit Service a4b2a9
     - PROXIMITY_NETWORK, host is located in a network reachable
Packit Service a4b2a9
       through a local interface.
Packit Service a4b2a9
     - PROXIMITY_OTHER, host is on a network not directlty
Packit Service a4b2a9
       reachable through a local interface.
Packit Service a4b2a9
  
Packit Service a4b2a9
2) NFS version and protocol is selected by caclculating the largest
Packit Service a4b2a9
   number of hosts supporting an NFS version and protocol that
Packit Service a4b2a9
   have the closest proximity. These hosts are added to the list
Packit Service a4b2a9
   in response time order. Hosts may have a corresponding weight
Packit Service a4b2a9
   which essentially increases response time and so influences the
Packit Service a4b2a9
   host order.
Packit Service a4b2a9
  
Packit Service a4b2a9
3) Hosts at further proximity that support the selected NFS version
Packit Service a4b2a9
   and protocol are also added to the list in response time order as
Packit Service a4b2a9
   in 2 above.
Packit Service a4b2a9