mirror of https://github.com/apache/nifi.git
Adding notes about JsonPath loading contents into memory for both JsonPath processors.
This commit is contained in:
parent
84602ca3e9
commit
5a2a8fc6be
|
@ -36,7 +36,12 @@
|
||||||
evaluate to a defined path, the FlowFile will be routed to 'unmatched' without having its contents modified. If
|
evaluate to a defined path, the FlowFile will be routed to 'unmatched' without having its contents modified. If
|
||||||
Destination is flowfile-attribute and the expression matches nothing, attributes will be created with empty
|
Destination is flowfile-attribute and the expression matches nothing, attributes will be created with empty
|
||||||
strings as the value, and the FlowFile will always be routed to 'matched.'
|
strings as the value, and the FlowFile will always be routed to 'matched.'
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<strong>Note:</strong> The underlying JsonPath library loads the entirety of the streamed content into and performs
|
||||||
|
result evaluations in memory. Accordingly, it is important to consider the anticipated profile of content being
|
||||||
|
evaluated by this processor and the hardware supporting it especially when working against large JSON documents.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -33,6 +33,12 @@
|
||||||
does not evaluate to an array element, the original file is routed to 'failure' and no files are generated.
|
does not evaluate to an array element, the original file is routed to 'failure' and no files are generated.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<strong>Note:</strong> The underlying JsonPath library loads the entirety of the streamed content into and performs
|
||||||
|
result evaluations in memory. Accordingly, it is important to consider the anticipated profile of content being
|
||||||
|
evaluated by this processor and the hardware supporting it especially when working against large JSON documents.
|
||||||
|
</p>
|
||||||
|
|
||||||
<strong>Properties:</strong>
|
<strong>Properties:</strong>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue