- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Problem with EvaluateJsonPath
- Labels:
-
Apache NiFi
Created on ‎10-16-2018 09:29 PM - edited ‎08-17-2019 08:47 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm really struggling not understanding what the heck is going on with EvaluateJsonPath.
Here is the JSON:
[
{
"name": "garyDawgJson"
}
]
Here is the flow:
Here is the EvaluateJsonPath:
When I look in the Data Provenance, the "thename" attribute never gets set.
What the heck is going on?
Thanks, Gary
Created on ‎10-16-2018 09:45 PM - edited ‎08-17-2019 08:47 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You are having array of json and trying to extract name value as attribute to the flowfile.
Configure EvaluateJsonPath processor as below:
thename
$.[0].name
So by using above path we are navigate array and extracting name value.
Correct way of doing this is..
Use SplitJson processor
Configure processor as
$.*
Using splitjson processor we are splitting json array into individual flowfiles..
then use EvaluateJsonPath processor add new property as
thename
$.name
-
If the Answer helped to resolve your issue, Click on Accept button below to accept the answer, That would be great help to Community users to find solution quickly for these kind of issues.
Created ‎10-17-2018 04:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Stu:
Thanks, that was it! I couldn't find that in my Google searches.
Appreciate the help!
Gary
