NiFi 1.0.0 - 队列的自定义优先级
NiFi 1.0.0 - Custom Priority for Queues
有没有办法为队列添加自定义优先级排序器?或者有没有办法扩展队列的行为?
如果没有,以后会在NiFi中加入吗?
您可以使用 PriorityAttributePrioritizer
to order based on arbitrary flowfile attributes. If that is not sufficient, you can provide a class which implements the FlowFilePrioritizer
interface (existing implementations here)。
如果您正在寻找特定的实现,您可以在 Apache NiFi issues 网站上提交 Jira 以请求它。
有没有办法为队列添加自定义优先级排序器?或者有没有办法扩展队列的行为?
如果没有,以后会在NiFi中加入吗?
您可以使用 PriorityAttributePrioritizer
to order based on arbitrary flowfile attributes. If that is not sufficient, you can provide a class which implements the FlowFilePrioritizer
interface (existing implementations here)。
如果您正在寻找特定的实现,您可以在 Apache NiFi issues 网站上提交 Jira 以请求它。