Re: Recommendation on getting started as a contibutor

2015-10-27 Thread Oleg Zhurakousky
Mark Thanks for trying. Indeed I forgot to mention in the guide that one has to add ‘nifi.properties.file.path' as ‘VM Arguments’, updating the guide now. As for logging, everything should work. Even though NiFi uses logback adapter for slf4j, the IDE setup uses log4j and all required JARs

Re: Recommendation on getting started as a contibutor

2015-10-27 Thread Oleg Zhurakousky
Also, validate that src/main/resources is one of the source directories, so log4j.properties is pulled into the startup class path. I was just able to reproduce your exact error by disassociating it from the class path. On Oct 27, 2015, at 6:51 AM, Oleg Zhurakousky

Re: Recommendation on getting started as a contibutor

2015-10-27 Thread Bryan Bende
Mark, I don't think there is a strong preference for patches vs. pull requests. A lot of contributors use pull requests, and I personally find it easier to review pull requests because you can give feedback in-line on the code. The more important thing is that whatever is being submitted should

Re: Recommendation on getting started as a contibutor

2015-10-27 Thread Oleg Zhurakousky
It appears you’ve misconfigured your Run Configuration. It seems like your MainClass is org.apache.nifi.bootstrap.RunNifi. It should be org.apache.nifi.NiFi Can you verify? Oleg > On Oct 27, 2015, at 8:45 AM, Mark Petronic wrote: > > On Tue, Oct 27, 2015 at 6:55 AM,

Re: Recommendation on getting started as a contibutor

2015-10-27 Thread Oleg Zhurakousky
Mark The following output comes from RunNifi which starts org.apache.nifi.NiFi as a separate JVM process which means you are not really in full DEBUG mode anyway: opt/java/jdk1.7.0_75/bin/java -Dnifi.properties.file.path=/home/mpetronic/nifi-0.3.1-SNAPSHOT/./conf/nifi.properties

Re: Recommendation on getting started as a contibutor

2015-10-27 Thread Mark Petronic
On Tue, Oct 27, 2015 at 6:55 AM, Oleg Zhurakousky wrote: > I was just able to reproduce your exact error by disassociating it from the > class path Oleg, thanks for the response. 1. I verified that my working directory is correct and points to my running version

Re: Recommendation on getting started as a contibutor

2015-10-26 Thread Oleg Zhurakousky
Mark Yes there are a lot of projects since aside form core modules there are out-of-the-box NAR bundles and other supporting modules, and everything is a separate project. So, when importing you can chose to have a view into the entire NiFi or individual modules you interested in working on

Re: Recommendation on getting started as a contibutor

2015-10-26 Thread Venkatesh Sellappa
and then go from there. -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/Recommendation-on-getting-started-as-a-contibutor-tp3313p3315.html Sent from the Apache NiFi Developer List mailing list archive at Nabble.com.

Re: Recommendation on getting started as a contibutor

2015-10-26 Thread Mark Petronic
On Mon, Oct 26, 2015 at 5:06 AM, Oleg Zhurakousky wrote: > nifi-ide-integration Oleg, thanks for the nifi-ide-integration github. I was able to get up and running in the debugger in Eclipse pretty easy with this. I did have to add this to my VM args in my run

Re: Recommendation on getting started as a contibutor

2015-10-26 Thread Mark Petronic
Thanks Oleg. The pointer to the committers guide what I needed. Missed that one. Thanks for the insight into your setup as well. On Oct 26, 2015 5:06 AM, "Oleg Zhurakousky" wrote: > Mark > > Yes there are a lot of projects since aside form core modules there are >

Re: Recommendation on getting started as a contibutor

2015-10-26 Thread Mark Petronic
at the pom.xml at the root i.e. NiFI and then go from there. -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/Recommendation-on-getting-started-as-a-contibutor-tp3313p3315.html Sent from the Apache NiFi Developer List mailing list archive at Nabble.com.

Recommendation on getting started as a contibutor

2015-10-25 Thread Mark Petronic
Hey guys, I read through the developers guide and am interested in maybe trying my hand at contributing to an OSS project for the first time. I'm pretty interested in Nifi. I've done a good bit of Java programming using Eclipse and Ant for a multi-threaded HTTP proxy-like application that uses