Re: From one flowfile to two...

2020-08-24 Thread Matt Burgess
Russell, session.read() won't overwrite any contents of the incoming flow file, but write() will. For #2, are you doing any processing on the file? If not, wouldn't that be the original flowfile anyway? Or do you want it to be a different flowfile on purpose (so you can send the incoming flowfile

From one flowfile to two...

2020-08-24 Thread Russell Bateman
I am writing a custom processor that, upon processing a flowfile, resultsĀ  in two new flowfiles (neither keeping the exact, original content) out two different relationships. I might like to route the original flowfile to a separate relationship. FlowFile original = session.get(); Do I need