Max Conversion Duration
Table of contents
What is its function
This option allows you to specify the maximum conversion duration. A conversion that reaches the maximum conversion duration will be forcibly stopped, and the state of the conversion becomes “error”. This function is controlled by 1 config property.
- maxConversionDuration - The maximum conversion duration in milliseconds (ms)
How to set this value
Create the following Java properties file on the server running your app server (if you don’t already have one) {user.home}/.idr/buildvu-microservice/buildvu-microservice.properties
In this file add (or update if the key already exists) the following key and value pair.
- maxConversionDuration - This can be a value between 1 and 263-1 or
Infinity
. e.gmaxConversionDuration=3600000
Default Value
The default value is 3600000
(1 hour). When no value is provided or invalid values are provided the default value will become Infinity
.
How to use with Docker
In order to provide your own properties file to the Docker image you need to mount the properties file to the image. This is done by adding the following to your docker run command.
--mount "source=/path/to/properties/directory/buildvu-microservice.properties,target=/root/.idr/buildvu-microservice/buildvu-microservice.properties,type=bind"