FSIS内存调优

来源:互联网 发布:jq数组清空 编辑:程序博客网 时间:2024/06/01 08:34

Memory Tuning for FSIS,Especially when your Laptop only has 4GB within the Hyper-V environment.

 

#Change memory
cd "C:/Program Files/<FSIS installation directory>/Installer/Scripts"
#change IMS node to 400
Add-PSSnapin HostControllerPSSnapin 
Connect-host localhost 17001
Export-NodeProfile
SystemName Fsis NodeName InteractionEngineNode1 FileName ims-profile.txt
#edit the ims-profile.txt
notepad ./ims-profile.txt
#MemoryLimit=400
configure-node -FileName ./ims-profile.txt
#change CTS node to 400
Export-NodeProfile
SystemName Fsis NodeName ContentEngineNode1 FileName cts-profile.txt
#edit the cts-profile.txt
notepad ./cts-profile.txt
#MemoryLimit=400
configure-node -FileName ./cts-profile.txt
#change CDE node to 200
Export-NodeProfile
SystemName Fsis NodeName ContentDistributorEmulatorNode1 FileName cde-profile.txt
#edit the cde-profile.txt
notepad ./cde-profile.txt
#MemoryLimit=400
configure-node -FileName ./cde-profile.txt

原创粉丝点击