Skip to content

Commit fb9068c

Browse files
author
Alan Christie
committed
docs: Improves doc for cores and memory
1 parent 97ae6e5 commit fb9068c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

decoder/job-definition-schema.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,10 @@ definitions:
148148

149149
# A kubernetes CPU (cores) declaration (minimum of 10m).
150150
# Here we allow an up-to 4-digit 'm' value or a 2-digit integer.
151+
# The value is used by the Data Manager to set the corresponding Job
152+
# resource request and limit values. By providing this value you
153+
# essentially define a "guaranteed" minimum CPU allocation for the Job.
154+
# If you do not specify a value, the Data Manager will use a default.
151155
cores:
152156
oneOf:
153157
- type: string
@@ -159,6 +163,10 @@ definitions:
159163
# A kubernetes memory declaration.
160164
# Here we allow an up-to 4-digit Mi value (minimum of 100Mi)
161165
# or a 2-digit Gi value (minimum of 1G).
166+
# The value is used by the Data Manager to set the corresponding Job
167+
# resource request and limit values. By providing this value you
168+
# essentially define a "guaranteed" minimum memory budget for the Job.
169+
# If you do not specify a value, the Data Manager will use a default.
162170
memory:
163171
type: string
164172
pattern: '^([1-9][0-9]{2,3}Mi|[1-9][0-9]{0,1}Gi)$'

0 commit comments

Comments
 (0)