Re: Run Nifi in IntelliJ to debug?

2020-10-27 Thread Darren Govoni
uesday, October 27, 2020 12:30:31 PM To: users@nifi.apache.org Subject: Re: Run Nifi in IntelliJ to debug? I haven't fully read this thread, but there is already a line in nifi's bootstrap.conf that you can uncomment: # Enable Remote Debugging #java.arg.debug=-agentlib:jdwp=transport=dt_socket,se

Re: Run Nifi in IntelliJ to debug?

2020-10-27 Thread Bryan Bende
xy smartphone > Get Outlook for Android > > > From: Mike Thomsen > Sent: Monday, October 26, 2020 10:15:33 PM > To: users@nifi.apache.org > Subject: Re: Run Nifi in IntelliJ to debug? > > Are you using a binary derived from the source code in you

Re: Run Nifi in IntelliJ to debug?

2020-10-27 Thread Andy LoPresto
ks for any tips. Much appreciated! > Darren > > Sent from my Verizon, Samsung Galaxy smartphone > Get Outlook for Android <https://aka.ms/ghei36> > From: Mike Thomsen > Sent: Monday, October 26, 2020 10:15:33 PM > To: users@nifi.apache.org > Subject: Re: Run Nifi in IntelliJ

Re: Run Nifi in IntelliJ to debug?

2020-10-27 Thread Darren Govoni
eman > Sent: Monday, October 26, 2020 7:37:13 PM > To: Darren Govoni ; users@nifi.apache.org > > Subject: Re: Run Nifi in IntelliJ to debug? > > Darren, > > This is just Apache NiFi code out of NARs you want to step through or is it > yours? You haven't stripped debug informatio

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Mike Thomsen
ug. > > Much appreciated! > Darren > > Sent from my Verizon, Samsung Galaxy smartphone > Get Outlook for Android > ____ > From: Russell Bateman > Sent: Monday, October 26, 2020 4:09:50 PM > To: users@nifi.apache.org ; Darren Govoni > &

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Russell Bateman
*From:* Russell Bateman *Sent:* Monday, October 26, 2020 7:37:13 PM *To:* Darren Govoni ; users@nifi.apache.org *Subject:* Re: Run Nifi in IntelliJ to debug? Darren, This is just Apache NiFi code out of NARs you want to step through or is it yours? You haven't stripped debug information or an

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Darren Govoni
Govoni ; users@nifi.apache.org Subject: Re: Run Nifi in IntelliJ to debug? Darren, This is just Apache NiFi code out of NARs you want to step through or is it yours? You haven't stripped debug information or anything, right? Russ On 10/26/20 5:30 PM, Darren Govoni wrote: Kevin/Russel

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Russell Bateman
ussell Bateman *Sent:* Monday, October 26, 2020 4:09:50 PM *To:* users@nifi.apache.org ; Darren Govoni *Subject:* Re: Run Nifi in IntelliJ to debug? Darren, I was out this morning and didn't see your plea until I got in just now. Here's a step by step I wrote up for both IntelliJ IDEA and Eclips

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Darren Govoni
i36> From: Russell Bateman Sent: Monday, October 26, 2020 4:09:50 PM To: users@nifi.apache.org ; Darren Govoni Subject: Re: Run Nifi in IntelliJ to debug? Darren, I was out this morning and didn't see your plea until I got in just now. Here's a step by step I

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Mike Thomsen
If you want to use the Docker image, add "-e NIFI_JVM_DEBUGGER=1" and map port 8000 to something on your machine. On Mon, Oct 26, 2020 at 4:10 PM Russell Bateman wrote: > > Darren, > > I was out this morning and didn't see your plea until I got in just now. > Here's a step by step I wrote up

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Russell Bateman
Darren, I was out this morning and didn't see your plea until I got in just now. Here's a step by step I wrote up for both IntelliJ IDEA and Eclipse (I'm more an IntelliJ guy). It also covers using an IP tunnel. https://www.javahotchocolate.com/notes/nifi.html#20160323 On 10/26/20 9:52 AM,

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Javi Roman
ind a maven goal that runs nifi but i havent seen one yet. > > Sent from my Verizon, Samsung Galaxy smartphone > Get Outlook for Android <https://aka.ms/ghei36> > > -- > *From:* Matt Burgess > *Sent:* Monday, October 26, 2020 12:05:03 PM > *To

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Kevin Doran
find a maven goal that runs nifi but i havent seen one yet. > > Sent from my Verizon, Samsung Galaxy smartphone > Get Outlook for Android <https://aka.ms/ghei36> > From: Matt Burgess > Sent: Monday, October 26, 2020 12:05:03 PM > To: users@nifi.apache.org > Subject: Re

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Darren Govoni
Galaxy smartphone Get Outlook for Android<https://aka.ms/ghei36> From: Matt Burgess Sent: Monday, October 26, 2020 12:05:03 PM To: users@nifi.apache.org Subject: Re: Run Nifi in IntelliJ to debug? Sorry I misread the part where you wanted to run NiFi

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Matt Burgess
Sorry I misread the part where you wanted to run NiFi inside IntelliJ, I was talking about running it externally (from the command-line, e.g.) and connecting the IntelliJ debugger. I haven't run NiFi itself using IntelliJ, maybe someone else can chime in for that. On Mon, Oct 26, 2020 at 12:03 PM

Re: Run Nifi in IntelliJ to debug?

2020-10-26 Thread Matt Burgess
Yes, that's a pretty common operation amongst NiFi developers. In conf/bootstrap.conf there's a section called Enable Remote Debugging and a commented-out line something like: java.arg.debug=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 You can remove the comment from that

Run Nifi in IntelliJ to debug?

2020-10-26 Thread Darren Govoni
Hi Is it possible to run Nifi from inside IntelliJ with debugging such that I can hit the app from my browser and trigger breakpoints? If anyone has done this can you please share any info? Thanks in advance! Darren Sent from my Verizon, Samsung Galaxy smartphone Get Outlook for