HomeGuides
Log In
Guides
These docs are for v4.17. Click to read the latest docs for v5.13.

Configure UgCS server (ucs) settings

All settings from this part of the article are located at “ucs.properties”.

  1. Disable telemetry store from the emulator.
    Set value to “false” in the line:
ucs.telemetry.store.emulator=false
  1. Disable SSDP.
    Set value to “false” in the line:
ucs.vsm.discovery=false
  1. Disable check updates.
    Set value to “false” in the line:
liveServer.checkForUpdates=false
  1. Change cache limit to 48.
    Set value to “48” in the line:
ucs.elevation.memoryCache.limit=48
  1. 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