"wordExport"
Configures the properties for Word export.
Example
"wordExport": {
"maxParallelProcesses": 3,
"timeoutSeconds": 3600,
"restLoaderPageSize": 50,
"jvmArguments": "-Xmx3G",
"debugLogging": false,
"enableLegacyWordExports": false,
"wordExportServerUrl": "http://localhost:8081",
"apiKeyTimeToLive": "1D",
"cleanupPeriod": "1D",
"cleanupTimeToLive": "5D",
"reRunPeriod": "1H",
"auditTrailLimit": 100,
"restReadTimeout" : 10000
},
Properties
Property Name
Description
Default Value
"auditTrailLimit"
Limit used when exporting tracker audit trail.
25
"restReadTimeout"
Sets the REST request read timeout for Word Export, in milliseconds.
10000
Additional Information
"enableRemote": enable or disable remote mode directly, adding wordExportServerUrl no longer configure remote mode.
* 
If the Word export fails due to timeout, increase the "restReadTimeout" value.
Connection Timeout Configuration for Word Export
The following error may occur during Word export operations, indicating that the export application was unable to establish a connection with the remote server within the expected timeframe :

Export failed with unknown error: java.net.SocketException: Socket closed

To resolve this issue, configure a JVM argument to extend the connection timeout. This setting defines the time in milliseconds allowed to establish connection with the remote server during Word export operations.
"wordExport": {

"jvmArguments" : "-DCB_WORD_API_CLIENT_CONNECTION_TIMEOUT=20000"

Related Links
Was this helpful?