Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

Support Questions

Find answers, ask questions, and share your expertise
Announcements
Share your experience with Cloudera on G2 and get a $25 Amazon Gift card.
Hi, I'm CLEO! Something exciting is coming to the Community. Stay Tuned!

Mongo jason query is failing to execute by runMangoAggregation Processor Nifi

avatar
Rising Star

Hi Friends,

I have mongo query which running perfectly fine from mongo shell.

b.test650.aggregate(
[
{
$group: {
"_id": {
X: "$X",
Y_DT: "$Y_DT",
Z: "$Z"
},
adj: {$sum: "$adj" },
bjc: {$sum: "$bjc" },
jbc: {$sum: "$jbc" },
mnk: {$sum: "$mnk"}
}
}
]
)

 

The same query when in ran from Nifi , RunMangoAggregation  throwing out error, though the mongo aggregation query changed to json type query ...

{
"$group": {
"_id": {
"X": "$X",
"Y_DT": "$Y_DT",
"Z": "$Z"
},
"adj": {"$sum": "$adj" },
"bjc": {"$sum": "$bjc" },
"jbc": {"$sum": "$jbc" },
"mnk": {"$sum": "$mnk"}
}
}

 

Getting following error ..

error run mongodb aggregation query.: com.fasterxml.jackson.databind.exc.MismatchedInputException:ca...

 

Capture.PNG

 

 

Nifi workflow..

WorkFlow.PNG

 

Processor(runMangoAggregation) configuration

runMangoAggrigate.PNG

 

What is the change I need to do in json query which supposed to executed @ runMongoAggregation  processor?

1 ACCEPTED SOLUTION

avatar
Rising Star

The issue is with the missing of square brackets at starting and @ ending ..

The working query is ..

[{
"$group": {
"_id": {
"X": "$X",
"Y_DT": "$Y_DT",
"Z": "$Z"
},
"adj": {"$sum": "$adj" },
"bjc": {"$sum": "$bjc" },
"jbc": {"$sum": "$jbc" },
"mnk": {"$sum": "$mnk"}
}
}]

 

View solution in original post

2 REPLIES 2

avatar
Rising Star

Hi friends,

Help me out get out this situation

avatar
Rising Star

The issue is with the missing of square brackets at starting and @ ending ..

The working query is ..

[{
"$group": {
"_id": {
"X": "$X",
"Y_DT": "$Y_DT",
"Z": "$Z"
},
"adj": {"$sum": "$adj" },
"bjc": {"$sum": "$bjc" },
"jbc": {"$sum": "$jbc" },
"mnk": {"$sum": "$mnk"}
}
}]