欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

NiFi 常见错误提示 博客分类: NiFi NiFijava 

程序员文章站 2024-03-20 08:10:28
...
1、transfer relationship not specified

    当在Processor的onTrigger中添加好业务代码后,需要指定 Relationship,及数据将从哪个 Relationship流动,代码如下
session.transfer(flowFile, REL_SUCCESS);


    如果没有指定话,则会报transfer relationship not specified的错误提示。

2、为processor添加service时,报 No controller service types found that are applicable for this property.

    在processor所在的nar包中,MANIFEST.MF中未添加依赖的service
Nar-Dependency-Id: nifi-XXX-api-nar


相关标签: NiFi java