Re: [EXTERNAL] horizontal merge

2020-11-18 Thread Mark Payne
is an ExecuteGroovyScript, it does a rollback when you do a return… Thanks! From: Mark Payne [mailto:marka...@hotmail.com] Sent: Wednesday, November 18, 2020 4:09 PM To: users@nifi.apache.org<mailto:users@nifi.apache.org> Subject: Re: [EXTERNAL] horizontal merge This message was sent fro

RE: [EXTERNAL] horizontal merge

2020-11-18 Thread Greene (US), Geoffrey N
? I assumed that since this is an ExecuteGroovyScript, it does a rollback when you do a return… Thanks! From: Mark Payne [mailto:marka...@hotmail.com] Sent: Wednesday, November 18, 2020 4:09 PM To: users@nifi.apache.org Subject: Re: [EXTERNAL] horizontal merge This message was sent from outside

Re: [EXTERNAL] horizontal merge

2020-11-18 Thread Mark Payne
4 2421 The Boeing Company From: Chris Sampson [mailto:chris.samp...@naimuri.com<mailto:chris.samp...@naimuri.com>] Sent: Wednesday, November 18, 2020 3:33 PM To: users@nifi.apache.org<mailto:users@nifi.apache.org> Subject: Re: [EXTERNAL] Re: horizontal merge This message was sent

Re: [EXTERNAL] Re: horizontal merge

2020-11-18 Thread Joe Witt
session.transfer(mergedFile, REL_SUCCESS) > > > > > > > > Geoffrey Greene > > Senior Software Ninjaneer > > (703) 414 2421 > > The Boeing Company > > > > *From:* Chris Sampson [mailto:chris.samp...@naimuri.com] > *Sent:* Wednesday, November 18, 20

RE: [EXTERNAL] Re: horizontal merge

2020-11-18 Thread Greene (US), Geoffrey N
..@naimuri.com] Sent: Wednesday, November 18, 2020 3:33 PM To: users@nifi.apache.org Subject: Re: [EXTERNAL] Re: horizontal merge This message was sent from outside of Boeing. Please do not click links or open attachments unless you recognize the sender and know that the content is safe. You may

Re: [EXTERNAL] Re: horizontal merge

2020-11-18 Thread Chris Sampson
oughts? How do you grab two files at once and then transfer them? > > I really only want to transfer just the ONE out, since the data was merged > in, but I can manage with two files if I have to make # inputs = # outputs > > Thanks > > > -Original Message- > From: Gre

RE: [EXTERNAL] Re: horizontal merge

2020-11-18 Thread Greene (US), Geoffrey N
nly want to transfer just the ONE out, since the data was merged in, but I can manage with two files if I have to make # inputs = # outputs Thanks -Original Message- From: Greene (US), Geoffrey N Sent: Tuesday, November 17, 2020 8:30 PM To: users@nifi.apache.org Subject: RE: [EXTERNAL] Re:

RE: [EXTERNAL] Re: horizontal merge

2020-11-17 Thread Greene (US), Geoffrey N
don't have to do a count. -Original Message- From: Matt Burgess [mailto:mattyb...@apache.org] Sent: Tuesday, November 17, 2020 4:22 PM To: users@nifi.apache.org Subject: [EXTERNAL] Re: horizontal merge Geoffrey, Where are the two flowfiles coming from? This use case is often handled in NiF

Re: horizontal merge

2020-11-17 Thread Matt Burgess
Geoffrey, Where are the two flowfiles coming from? This use case is often handled in NiFi using LookupRecord with one of the LookupService implementations (REST, RDBMS, CSV, etc.). We don't currently have a mechanism (besides scripting) to do enrichment/lookups from flowfiles. For your script, yo

horizontal merge

2020-11-17 Thread Greene (US), Geoffrey N
I'm trying to glue two flow files together HORIZONTALLY. That is, Flowfile1 ID,STARTINGLETTER 1,A 2,B And flowfile2: ID, WORD 1,Apple 2, Ball 3, Cat I want it to become: ID, STARTINGLETTER, WORD 1,A,Apple 2,B,Ball 3,,Cat The only way I've been able to figure out how to do this is to write a cus