Symptoms:
YYYY-MM-DD THH:MM:SS.759Z cpu14:32917)WARNING: FTCpt: 1024: (5147###72521 pri) Error allocating SCSI page (32768 alloc 32768 max): Out of memory
YYYY-MM-DD THH:MM:SS.759Z cpu14:32917)WARNING: FTCpt: 1054: (5147###72521 pri) Error cloning SCSI command: Out of memoryYYYY-MM-DD T15:43:34.759Z cpu14:32917)WARNING: FTCpt: 1064: (5147###72521 pri) Remote not responding
Note: The preceding log excerpts are only examples. Date, time, and environmental variables may vary depending on your environment.
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:
ftcpt.maxDiskBufferPages=262144
Note: Both the VM and FT need to be turned off to apply this setting
Steps to add parameter in vmx file:
ftcpt.maxDiskBufferPages=262144
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.
$vm-name = <Provide VM name>
$new-buffer-size = 262144
Get-AdvancedSetting -Entity (Get-VM -Name $vm-name) -Name "ftcpt.maxDiskBufferPages"
Add required setting to a VM and apply
Get-VM -Name $vm-name| New-AdvancedSetting -Name "ftcpt.maxDiskBufferPages" -value $new-buffer-size