NIFI-11422 fix stateless-assembly README typo

Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com>

This closes #7153.
This commit is contained in:
Dustin Rodrigues 2023-04-08 21:19:39 -04:00 committed by Pierre Villard
parent 8992256f78
commit 2ac1388ce9
No known key found for this signature in database
GPG Key ID: F92A93B30C07C6D5
1 changed files with 5 additions and 5 deletions

View File

@ -332,11 +332,11 @@ processor will be triggered again. This process will continue until either the M
OR until some threshold has been reached. These thresholds can be configured using the following properties:
/ Property Name / Description / Example Value /
/---------------/-------------/---------------/
/ nifi.stateless.transaction.thresholds.flowfiles / The maximum number of FlowFiles that a source processors should bring into the flow each time the dataflow is triggered. / 1000 /
/ nifi.stateless.transaction.thresholds.bytes / The maximum amount of data for all FlowFiles' contents. / 100 MB /
/ nifi.stateless.transaction.thresholds.time / The amount of time between when the dataflow was triggered and when the source processors should stop being triggered. / 1 sec /
| Property Name | Description | Example Value |
|---------------|-------------|---------------|
| nifi.stateless.transaction.thresholds.flowfiles | The maximum number of FlowFiles that a source processors should bring into the flow each time the dataflow is triggered. | 1000 |
| nifi.stateless.transaction.thresholds.bytes | The maximum amount of data for all FlowFiles' contents. | 100 MB |
| nifi.stateless.transaction.thresholds.time | The amount of time between when the dataflow was triggered and when the source processors should stop being triggered. | 1 sec |
For example, to ensure that the source processors are not triggered to bring in more than 1 MB of data and not more than 10 FlowFiles, we can use:
```