[
https://issues.apache.org/jira/browse/NIFI-15329?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18044526#comment-18044526
]
ASF subversion and git services commented on NIFI-15329:
--------------------------------------------------------
Commit 047ad87a3b6f4a58db6ec51a49159618d95505a9 in nifi's branch
refs/heads/NIFI-15318-2 from Pierre Villard
[ https://gitbox.apache.org/repos/asf?p=nifi.git;h=047ad87a3b6 ]
NIFI-15329 - Fix RenameRecordField to properly handle multiple records (#10629)
> RenameRecordField does not work with multiple records
> -----------------------------------------------------
>
> Key: NIFI-15329
> URL: https://issues.apache.org/jira/browse/NIFI-15329
> Project: Apache NiFi
> Issue Type: Bug
> Reporter: Pierre Villard
> Assignee: Pierre Villard
> Priority: Major
> Fix For: 2.8.0, 2.7.1
>
> Time Spent: 20m
> Remaining Estimate: 0h
>
> As soon as the input FlowFile contains multiple records, the processor
> RenameRecordField will not work: it will properly process the first record
> but will drop the fields supposed to be renamed in the following records.
> Input:
> {code:json}
> [ {
> "address" : "301 Leffler Forks, Port Phillipfurt, VA 55374",
> "name" : "Alejandro Purdy"
> }, {
> "address" : "Apt. 926 052 Eldon Crest, Lake Ashelyborough, CO 59917",
> "name" : "Cecil Marvin"
> }, {
> "address" : "496 Toy Hills, Maggioton, NY 85654",
> "name" : "Desire Fadel"
> }, {
> "address" : "Suite 989 4494 Hirthe Fields, North Talitha, AK 00766",
> "name" : "Suzann Wiegand"
> }, {
> "address" : "842 Bruen Cape, Port Fiona, IA 85672",
> "name" : "Zachariah Legros"
> }]
> {code}
> Configuration:
> * Default JSON Reader
> * Default JSON Writer
> * Dynamic Property: /name -> newName
> Output:
> {code:json}
> [ {
> "address" : "301 Leffler Forks, Port Phillipfurt, VA 55374",
> "newName" : "Alejandro Purdy"
> }, {
> "address" : "Apt. 926 052 Eldon Crest, Lake Ashelyborough, CO 59917"
> }, {
> "address" : "496 Toy Hills, Maggioton, NY 85654"
> }, {
> "address" : "Suite 989 4494 Hirthe Fields, North Talitha, AK 00766"
> }, {
> "address" : "842 Bruen Cape, Port Fiona, IA 85672"
> }]
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)