Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions spring-batch-docs/src/main/asciidoc/scalability.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,11 @@ configuration:
</step>
----

[role="xmlContent"]
Similar to the multi-threaded step's `throttle-limit` attribute, the `grid-size`
attribute prevents the task executor from being saturated with requests from a single
step.

[role="javaContent"]
The following example shows the `PartitionStep` configuration when using Java
configuration:
Expand All @@ -320,11 +325,6 @@ public Step step1Manager() {
}
----

[role="xmlContent"]
Similar to the multi-threaded step's `throttle-limit` attribute, the `grid-size`
attribute prevents the task executor from being saturated with requests from a single
step.

[role="javaContent"]
Similar to the multi-threaded step's `throttleLimit` method, the `gridSize`
method prevents the task executor from being saturated with requests from a single
Expand Down