Skip to content

Commit 85a6342

Browse files
committed
Fix typo
1 parent 53ec8f6 commit 85a6342

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-batch-docs/asciidoc/spring-batch-intro.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ This involves breaking the input record set into an even number of portions (for
387387
10, where each portion has exactly 1/10th of the entire record set). Each portion is then
388388
processed by one instance of the batch/extract application.
389389

390-
In order to use this approach, preprocessing is required to split the recordset up. The
390+
In order to use this approach, preprocessing is required to split the record set up. The
391391
result of this split will be a lower and upper bound placement number which can be used
392392
as input to the batch/extract application in order to restrict its processing to only its
393393
portion.
@@ -422,7 +422,7 @@ realized. There is no dynamic configuration of the number of batch instances use
422422
_3. Breakup by Views_
423423

424424
This approach is basically breakup by a key column but on the database level. It involves
425-
breaking up the recordset into views. These views are used by each instance of the batch
425+
breaking up the record set into views. These views are used by each instance of the batch
426426
application during its processing. The breakup is done by grouping the data.
427427

428428
With this option, each instance of a batch application has to be configured to hit a
@@ -441,8 +441,8 @@ they are marked as being in processing. When that record is completed, the indic
441441
updated to either complete or error. Many instances of a batch application can be started
442442
without a change, as the additional column ensures that a record is only processed once.
443443
// TODO On completion, what is the record marked as? Same for on error. (I expected a
444-
sentence or two on the order of "On completion, indicators are marked as being
445-
complete.")
444+
// sentence or two on the order of "On completion, indicators are marked as being
445+
// complete.")
446446

447447
With this option, I/O on the table increases dynamically. In the case of an updating
448448
batch application, this impact is reduced, as a write must occur anyway.

0 commit comments

Comments
 (0)