This is an automated email from the ASF dual-hosted git repository.
pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 2ac1388ce9 NIFI-11422 fix stateless-assembly README typo
2ac1388ce9 is described below
commit 2ac1388ce95ef1ad7e73de41160ead75ca4c50be
Author: Dustin Rodrigues <[email protected]>
AuthorDate: Sat Apr 8 21:19:39 2023 -0400
NIFI-11422 fix stateless-assembly README typo
Signed-off-by: Pierre Villard <[email protected]>
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:
```