Configure UgCS server (ucs) settings
All settings from this part of the article are located at “ucs.properties”.
- Disable telemetry store from the emulator.
Set value to “false” in the line:
ucs.telemetry.store.emulator=false
- Disable SSDP.
Set value to “false” in the line:
ucs.vsm.discovery=false
- Disable check updates.
Set value to “false” in the line:
liveServer.checkForUpdates=false
- Change cache limit to 48.
Set value to “48” in the line:
ucs.elevation.memoryCache.limit=48
- Change pool size.
N - numbers of CPU cores. Use the formulas below for each parameter.
ucs.hci.ioProcessors=max(8, N)
ucs.hci.threadPoolSize=max(32, 2*N)
ucs.vsm.ioProcessors=max(8, N)
ucs.vsm.threadPoolSize=max(32, 2*N)
Example for the node with 1...8 CPU cores:
ucs.hci.ioProcessors=8
ucs.hci.threadPoolSize=32
ucs.vsm.ioProcessors=8
ucs.vsm.threadPoolSize=32
Updated over 2 years ago