remove description about "scale jobs" (#7712)

This commit is contained in:
CaoShuFeng
2018-03-13 09:39:09 +08:00
committed by k8s-ci-robot
parent ded7723a69
commit 838b81120c
2 changed files with 1 additions and 7 deletions
@@ -257,8 +257,7 @@ The tradeoffs are:
- One Job object for each work item, vs. a single Job object for all work items. The latter is
better for large numbers of work items. The former creates some overhead for the user and for the
system to manage large numbers of Job objects. Also, with the latter, the resource usage of the job
(number of concurrently running pods) can be easily adjusted using the `kubectl scale` command.
system to manage large numbers of Job objects.
- Number of pods created equals number of work items, vs. each pod can process multiple work items.
The former typically requires less modification to existing code and containers. The latter
is better for large numbers of work items, for similar reasons to the previous bullet.