nifi.apache.org/docs/nifi-docs/html/developer-guide.html

 

NiFi Developer’s Guide

While there are many different Processors available to NiFi users, the vast majority of them fall into one of several common design patterns. Below, we discuss these patterns, when the patterns are appropriate, reasons we follow these patterns, and things

nifi.apache.org

 

 

FlowFile 의 속성값 중

Entry Date 는 해당 FlowFile 이 생성된 날짜와 시간을 의미하고

Lineage Start Date 는 해당 FlowFile 의 최초 조상이 생성된 날짜와 시간을 의미함

FlowFile 은 복제나 병합, 분할 등이 일어나면 FlowFile 을 일단 복제한 후 복제,병합,분할을 하게 되는데

이 때 부모-자식 컨셉이 나타나게 됨.

이렇게 자식이 자식을 만들고 자식을 만들면 계보가 생성되는데

해당 계보의 모든 FlowFile 은 각기 다른 entryDate 를 갖지만

최초 조상이 같기 때문에 모두 똑같은 lineageStartDate 를 갖음

 

 

 

프로세서에서 제공하는 API 목록은 다음 링크를 참고

nifi.apache.org/docs/nifi-docs/html/developer-guide.html#processor_api

 

 

 

 

 

 

 

 

 

+ Recent posts