Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Is there a way to avoid the RouteOnAttribute.Route parameter that NiFi puts after RouteOnAttribute processor?

avatar
New Contributor

I have a workflow that routes on attribute depending on a type, but it sets a RouteOnAttribute.Route param on a flow that has all of the filters, I don't want that, how can I prevent the processor to do this? Thanks

1 ACCEPTED SOLUTION

avatar
Super Mentor
@estefania rabadan

There is no processor configuration option to turn off what attributes a processor writes on to a FlowFile it processes. However, you can use the UpdateAttribute processor to remove attributes from FlowFiles.

Thanks,

Matt

View solution in original post

2 REPLIES 2

avatar
Super Mentor
@estefania rabadan

There is no processor configuration option to turn off what attributes a processor writes on to a FlowFile it processes. However, you can use the UpdateAttribute processor to remove attributes from FlowFiles.

Thanks,

Matt

avatar
New Contributor

thanks for the quick reply matt, i'll use that solution!