Configure plans
note
In the below example, the path
/home/user/datalore/plans.yaml
is suggested as an example of local path, located on the Docker host. You might need to adjust this value accordingly to your deployment.
tip
The format used to define computation time is
PnDTnHnMnS:
P: mandatory first character
nD (optional): number of days (day = 24 hours)
T: required when specifying time (hours, minutes, or seconds)
nH (optional): number of hours
nM (optional): number of minutes
nS (optional): number of seconds with a fractional part
D, H, M, and S can also be passed as d, h, m, and s respectively.
T is used before the first occurrence, if any, of an hour, minute, or second section.
If T is used, it must be followed by at least one section.
Examples:
PT20.345S: 20.345 seconds
PT15M: 15 minutes
PT10H: 10 hours
P2D: 2 days
P2DT3H4M: 2 days, 3 hours and 4 minutes
Thanks for your feedback!