Note: The preceding log excerpts are only examples. Date, time, and environmental variables may vary depending on your environment.
VMware vSphere 6.x
To increase the replication buffer size to 2 GB, add the following parameter to the vmx file of the VM by editing it using vi:
Note: Both the VM and FT need to be turned off to apply this setting
If you are unable to power off the VM you may also be able to apply the new buffer size via PowerCLI using the Set-AdvancedSetting cmdlet e.g.
Modify the buffer size and apply.
Get-AdvancedSetting -Entity (Get-VM -Name $vm-name) -Name "ftcpt.maxDiskBufferPages" | Set-AdvancedSetting -Value $new-buffer-size -Confirm:$false
Add the setting to a VM and apply
Get-VM -Name $vm-name| New-AdvancedSetting -Name "ftcpt.maxDiskBufferPages" -value $new-buffer-size