@@ -13,7 +13,7 @@ this section.
1313[[batch-association]]
1414== Associating a Job Execution to the Task in which It Was Executed
1515
16- Spring Boot provides facilities for the execution of batch jobs within an über -jar.
16+ Spring Boot provides facilities for the execution of batch jobs within a Spring Boot Uber -jar.
1717Spring Boot's support of this functionality lets a developer execute multiple batch jobs
1818within that execution. Spring Cloud Task provides the ability to associate the execution
1919of a job (a job execution) with a task's execution so that one can be traced back to the
@@ -62,7 +62,7 @@ most cloud infrastructures. The `DeployerPartitionHandler` and
6262Cloud Deployer.
6363
6464To configure the `DeployerStepExecutionHandler`, you must provide a `Resource`
65- representing the Spring Boot über -jar to be executed, a `TaskLauncherHandler`, and a
65+ representing the Spring Boot Uber -jar to be executed, a `TaskLauncherHandler`, and a
6666`JobExplorer`. You can configure any environment properties as well as the max number of
6767workers to be executing at once, the interval to poll for the results (defaults to 10
6868seconds), and a timeout (defaults to -1 or no timeout). The following example shows how
@@ -111,10 +111,10 @@ Notice in the example above that we have set the maximum number of workers to 2.
111111Setting the maximum of workers establishes the maximum number of
112112partitions that should be running at one time.
113113
114- The `Resource` to be executed is expected to be a Spring Boot über -jar with a
114+ The `Resource` to be executed is expected to be a Spring Boot Uber -jar with a
115115`DeployerStepExecutionHandler` configured as a `CommandLineRunner` in the current context.
116116The repository enumerated in the preceding example should be the remote repository in
117- which the über -jar is located. Both the manager and worker are expected to have visibility
117+ which the Spring Boot Uber -jar is located. Both the manager and worker are expected to have visibility
118118into the same data store being used as the job repository and task repository. Once the
119119underlying infrastructure has bootstrapped the Spring Boot jar and Spring Boot has
120120launched the `DeployerStepExecutionHandler`, the step handler executes the requested
0 commit comments