From 2ac1388ce95ef1ad7e73de41160ead75ca4c50be Mon Sep 17 00:00:00 2001 From: Dustin Rodrigues Date: Sat, 8 Apr 2023 21:19:39 -0400 Subject: [PATCH] NIFI-11422 fix stateless-assembly README typo Signed-off-by: Pierre Villard This closes #7153. --- nifi-stateless/nifi-stateless-assembly/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nifi-stateless/nifi-stateless-assembly/README.md b/nifi-stateless/nifi-stateless-assembly/README.md index bc506689bf..ed2fc0549e 100644 --- a/nifi-stateless/nifi-stateless-assembly/README.md +++ b/nifi-stateless/nifi-stateless-assembly/README.md @@ -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: ```