Each update of vDS pushes all DVS port information to the ESXi hosts on the vDS.
When there are a large number of filtering rules, each update could exceed the 20MB configured maxdocsize parameter for VPXD/VPXA/HOSTD, which would cause VDS to become out of sync.
Increase the VPXD/VPXA/HOSTD http soap request limit below for the following parameters:
config.vmomi.soapRequest.maxDocSize = 50000000
config.vmomi.soapRequest.maxElements = 1000000
/etc/vmware/vpxa/vpxa.cfg
, add below before </config> last line<vmomi>
<soapRequest>
<maxDocSize>50000000</maxDocSize>
<maxElements>1000000</maxElements>
</soapRequest>
</vmomi>
/etc/init.d/vpxa restart
/etc/vmware/hostd/config.xml
in ESXi host. <soapRequest>
<!--maximum size of each XML message.-->
<maxDocSize> 50000000 </maxDocSize>
<!--maximum nodes in of each XML message.-->
<maxElements> 1000000 </maxElements>
</soapRequest>
/etc/init.d/hostd restart
4. Rectify VDS from vCenter UI.