Datalore 2025.6 Help

Customize TCP timeout values

For server-agent communication, Datalore uses a TCP connection configured with the following keepalive parameters:

  • tcp_keepalive_time: 1 minute

  • tcp_keepalive_intvl: 10 seconds

  • tcp_keepalive_probes: 6

If your internal network configuration requires it, you can override the default values.

Override TCP keepalive values

To specify custom keepalive values, add the following parameters under environment in docker-compose.yaml:

environment: TCP_KEEP_IDLE: {tcp_keepalive_time} TCP_KEEP_INTERVAL: {tcp_keepalive_intvl} TCP_KEEP_COUNT: {tcp_keepalive_probes}

To specify custom keepalive values, add the following parameters under dataloreEnv in datalore.values.yaml:

dataloreEnv: TCP_KEEP_IDLE: {tcp_keepalive_time} TCP_KEEP_INTERVAL: {tcp_keepalive_intvl} TCP_KEEP_COUNT: {tcp_keepalive_probes}
    11 September 2025