@@ -387,7 +387,7 @@ This involves breaking the input record set into an even number of portions (for
387
387
10, where each portion has exactly 1/10th of the entire record set). Each portion is then
388
388
processed by one instance of the batch/extract application.
389
389
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
391
391
result of this split will be a lower and upper bound placement number which can be used
392
392
as input to the batch/extract application in order to restrict its processing to only its
393
393
portion.
@@ -422,7 +422,7 @@ realized. There is no dynamic configuration of the number of batch instances use
422
422
_3. Breakup by Views_
423
423
424
424
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
426
426
application during its processing. The breakup is done by grouping the data.
427
427
428
428
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
441
441
updated to either complete or error. Many instances of a batch application can be started
442
442
without a change, as the additional column ensures that a record is only processed once.
443
443
// 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.")
446
446
447
447
With this option, I/O on the table increases dynamically. In the case of an updating
448
448
batch application, this impact is reduced, as a write must occur anyway.
0 commit comments