RunMongoAggregation在Apache Nifi上不起作用。它保持运行,但不输出任何输出

时间:2019-07-16 15:01:36

标签: mongodb apache-nifi

我的nifi数据流中有一个进程,该进程使用$ lookup合并两个集合。

我正在为此使用RunMongoAggregation,但是即使我正确设置了所有属性,处理器似乎也无法正常工作。我没有任何错误。 该进程继续运行,但未获取任何内容。

Process

以下是RunMongoAggregation的属性:

Properties for RunMongoAggregation

这是$ lookup查询:

[
{
 "$lookup":
   {
     "from": "crmAccount_Street",
     "localField": "accountid",
     "foreignField": "accountid",
     "as": "streetAddress"
   }

} ]

请帮助。

0 个答案:

没有答案