Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation Update to scalability.adoc #4338

Closed
wants to merge 1 commit into from
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