Github user hegdean commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1499#discussion_r177530157
--- Diff: dcs/src/main/resources/dcs-default.xml ---
@@ -386,4 +386,33 @@
Timeout minutes between first and max times (6 default) DCS Server
startup MXOSRVR.
</description>
</property>
+ <property>
+ <name>dcs.server.user.program.tcp.keepalive.status</name>
+ <value>enable</value>
+ <description>
+ Used in mxosrvr keepalive , parameter is ENABLE IDLETIME
INTERTIME RETRYCNT.
+ </description>
+ </property>
+ <property>
+ <name>dcs.server.user.program.tcp.keepalive.idletime</name>
+ <value>300</value>
+ <description>
+ Used in mxosrvr keepalive , parameter is ENABLE IDLETIME
INTERTIME RETRYCNT.
+ </description>
+ </property>
+ <property>
+ <name>dcs.server.user.program.tcp.keepalive.intervaltime</name>
+ <value>5</value>
+ <description>
+ Used in mxosrvr keepalive , parameter is ENABLE IDLETIME
INTERTIME RETRYCNT.
--- End diff --
description should be specific to the property. Also would be good to
indicate the unit of time mins, secs or msec and so on
---