Re: Out of Memory error with Nifi

2016-11-04 Thread Gop Krr
Hi Mickey,
What are you trying to do? I had similar issue listing files from s3
buckets. I was told that it have been fixed in 1.1 master.
Thanks
Krish

On Fri, Nov 4, 2016 at 6:39 PM, Joe Percivall <
joeperciv...@yahoo.com.invalid> wrote:

> Hello Mickey,
> No known errors that I'm aware of. Could you share relevant details about
> your RedHat box config, you NiFi config and a little about the amount of
> data you're pushing through it? Joe- - - - - - Joseph
> Percivalllinkedin.com/in/Percivalle: joeperciv...@yahoo.com
>
>
> On Friday, November 4, 2016 9:20 PM, Miroslav Pashov <
> pasho...@gmail.com> wrote:
>
>
>  Hey guys,
>
> I am trying to run Nifi 1.0.0 on a RedHat box and the OOM seems to be
> killing the instance. Is that a known issue?
>
> Regards,
> Mickey
>
>
>
>


Out of Memory error with Nifi

2016-11-04 Thread Miroslav Pashov
Hey guys,

I am trying to run Nifi 1.0.0 on a RedHat box and the OOM seems to be
killing the instance. Is that a known issue?

Regards,
Mickey


Re: [ANNOUNCE] New Apache NiFi Committer Scott Aslan

2016-11-04 Thread Andy LoPresto
Congratulations Scott. 

Andy LoPresto
alopre...@apache.org
alopresto.apa...@gmail.com
PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69

> On Nov 4, 2016, at 12:11, Yolanda Davis  wrote:
> 
> Congrats Scott!!
> 
> Sent from my iPhone
> 
>> On Nov 4, 2016, at 11:25 AM, Tony Kurc  wrote:
>> 
>> On behalf of the Apache NiFI PMC, I am very pleased to announce that Scott
>> Aslan has accepted the PMC's invitation to become a committer on the Apache
>> NiFi project. We greatly appreciate all of Scott's hard work and generous
>> contributions to the project. We look forward to his continued involvement
>> in the project.
>> 
>> For those familiar with the UI improvements in 1.x, a lot of the
>> implementation was contributed by Scott, so another set of very visible
>> contributions! (Sorry for the pun, I couldn't help myself).
>> 
>> Welcome and congratulations!
>> Tony


Re: Nifi flow development guidelines

2016-11-04 Thread Joe Witt
Sachin

I think the most common approach is that developers focus on building
reusable components and integration testing in local or integration
test environments.  Those components, fully documented, are made
available to operations teams who weave those components and their
recommended configurations into the live feeds.  At times the
developer and the operations person are actually the same person but
they're wearing different hats when doing these things.  In such a
model the developer can also help by offering well scoped templates
that reflect how to wire together that component with other necessary
components to achieve a greater function.  Those templates can
certainly be version controlled.  Presently that is done outside of
NiFi but we do have a concept of a template registry with an
oustanding feature proposal [1] which will make this even nicer to
operate with.

[1] 
https://cwiki.apache.org/confluence/display/NIFI/Extension+Repositories+%28aka+Extension+Registry%29+for+Dynamically-loaded+Extensions

Thanks
Joe

On Fri, Nov 4, 2016 at 1:38 PM, Sachidanand Tiwari  wrote:
> Team,
>
> I am reaching out to you to seek your recommendation on development
> guidelines when multiple teams are working on a Nifi flow. How to manage
> source code version?. Do we need to having each functionality as separate
> Process Group exported/imported as template?. How to deploy flow on Nifi
> cluster environment.
>
> As per our current approach, we are creating separate ProcesGroup for
> different functionality and exporting/importing as template.
>
> -Sachin


Re: [ANNOUNCE] New Apache NiFi Committer Scott Aslan

2016-11-04 Thread Yolanda Davis
Congrats Scott!!

Sent from my iPhone

> On Nov 4, 2016, at 11:25 AM, Tony Kurc  wrote:
> 
> On behalf of the Apache NiFI PMC, I am very pleased to announce that Scott
> Aslan has accepted the PMC's invitation to become a committer on the Apache
> NiFi project. We greatly appreciate all of Scott's hard work and generous
> contributions to the project. We look forward to his continued involvement
> in the project.
> 
> For those familiar with the UI improvements in 1.x, a lot of the
> implementation was contributed by Scott, so another set of very visible
> contributions! (Sorry for the pun, I couldn't help myself).
> 
> Welcome and congratulations!
> Tony


Re: Secure Cluster Mode Issues

2016-11-04 Thread Ricky Saltzer
Hey guys -

I went ahead and uploaded the boostrap log. I took a look at it and it
seems to be the same error [1]

[1]:
https://gist.githubusercontent.com/rickysaltzer/b156594f92066873f80928eddf84e7bb/raw/4d0e018038b332f4fdf14644910dfa9e70c57e49/gistfile1.txt

On Fri, Nov 4, 2016 at 2:14 PM, Mark Payne  wrote:

> Hey Ricky,
>
> When you enable debug logging for SSL, it writes to StdErr (or StdOut?) so
> it will end up in your logs/nifi-bootstrap.log instead of nifi-app.log.
> Can you give that a look?
>
> Thanks
> -Mark
>
> > On Nov 4, 2016, at 2:07 PM, Ricky Saltzer  wrote:
> >
> > Hey Andy -
> >
> > Thanks for the response. I'm currently just trying to get one node in
> > clustered mode before adding a second. The keystore is stored locally and
> > I've confirmed it's readable, as it was able to start once I took it out
> of
> > clustered mode. I added that line to the bootstrap.conf, but I don't
> > believe any additional logging was produced in regards to troubleshooting
> > this problem. Just in case, I've attached the entire log [1].
> >
> > [1]:
> > https://gist.githubusercontent.com/rickysaltzer/
> ed454d87d2207d5acab401a473d4be57/raw/425c42da762fc5cc997153d48b09f0
> fedabc88bb/gistfile1.txt  ed454d87d2207d5acab401a473d4be57/raw/425c42da762fc5cc997153d48b09f0
> fedabc88bb/gistfile1.txt>
> >
> > On Wed, Nov 2, 2016 at 7:08 PM, Andy LoPresto  > wrote:
> >
> >> Hi Ricky,
> >>
> >> Sorry to hear you are having this issue. Is the keystore available on
> all
> >> nodes of the cluster? It appears from the log message that the keystore
> is
> >> not found during startup. To further debug, you can add the following
> line
> >> in bootstrap.conf to provide additional logging:
> >>
> >> java.arg.15=-Djavax.net.debug=ssl,handshake
> >>
> >> Andy LoPresto
> >> alopre...@apache.org 
> >> *alopresto.apa...@gmail.com  <
> alopresto.apa...@gmail.com >*
> >> PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69
> >>
> >> On Nov 2, 2016, at 2:25 PM, Ricky Saltzer  wrote:
> >>
> >> Hey all -
> >>
> >> I'm using NiFi 1.0 and I'm having an issue using secure mode with a
> local
> >> key store while in clustered mode. If I set the node in clustered mode,
> and
> >> also provide a valid keystore, I receive a KeyStoreException [1]. If I
> set
> >> the configuration to not use clustered mode, NiFi will start up fine
> with
> >> the provided key store. Am I supposed to be storing this key store in
> >> Zookeeper somewhere?
> >>
> >>
> >> [1]
> >>
> >>
> >> Caused by: java.security.KeyStoreException:  not found
> >>
> >>
> >>   at java.security.KeyStore.getInstance(KeyStore.java:839)
> >> ~[na:1.8.0_11]
> >>
> >>   at
> >> org.apache.nifi.io.socket.SSLContextFactory.(
> >> SSLContextFactory.java:61)
> >> ~[nifi-socket-utils-1.0.0.jar:1.0.0]
> >>
> >>   at
> >> org.apache.nifi.cluster.protocol.spring.ServerSocketConfigurationFacto
> >> ryBean.getObject(ServerSocketConfigurationFactoryBean.java:45)
> >> ~[nifi-framework-cluster-protocol-1.0.0.jar:1.0.0]
> >>
> >>   at
> >> org.apache.nifi.cluster.protocol.spring.ServerSocketConfigurationFacto
> >> ryBean.getObject(ServerSocketConfigurationFactoryBean.java:30)
> >> ~[nifi-framework-cluster-protocol-1.0.0.jar:1.0.0]
> >>
> >>   at
> >> org.springframework.beans.factory.support.FactoryBeanRegistrySupport.
> >> doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:168)
> >> ~[spring-beans-4.2.4.RELEASE.jar:4.2.4.RELEASE]
> >>
> >>   ... 69 common frames omitted
> >>
> >> Caused by: java.security.NoSuchAlgorithmException:  KeyStore not
> available
> >>
> >>   at sun.security.jca.GetInstance.getInstance(GetInstance.java:159)
> >> ~[na:1.8.0_11]
> >>
> >>   at java.security.Security.getImpl(Security.java:695)
> ~[na:1.8.0_11]
> >>
> >>   at java.security.KeyStore.getInstance(KeyStore.java:836)
> >> ~[na:1.8.0_11]
> >>
> >>   ... 73 common frames omitted
> >>
> >>
> >>
> >
> >
> > --
> > Ricky Saltzer
> > http://www.cloudera.com 
>



-- 
Ricky Saltzer
http://www.cloudera.com


Re: Secure Cluster Mode Issues

2016-11-04 Thread Mark Payne
Hey Ricky,

When you enable debug logging for SSL, it writes to StdErr (or StdOut?) so it 
will end up in your logs/nifi-bootstrap.log instead of nifi-app.log.
Can you give that a look?

Thanks
-Mark

> On Nov 4, 2016, at 2:07 PM, Ricky Saltzer  wrote:
> 
> Hey Andy -
> 
> Thanks for the response. I'm currently just trying to get one node in
> clustered mode before adding a second. The keystore is stored locally and
> I've confirmed it's readable, as it was able to start once I took it out of
> clustered mode. I added that line to the bootstrap.conf, but I don't
> believe any additional logging was produced in regards to troubleshooting
> this problem. Just in case, I've attached the entire log [1].
> 
> [1]:
> https://gist.githubusercontent.com/rickysaltzer/ed454d87d2207d5acab401a473d4be57/raw/425c42da762fc5cc997153d48b09f0fedabc88bb/gistfile1.txt
>  
> 
> 
> On Wed, Nov 2, 2016 at 7:08 PM, Andy LoPresto  > wrote:
> 
>> Hi Ricky,
>> 
>> Sorry to hear you are having this issue. Is the keystore available on all
>> nodes of the cluster? It appears from the log message that the keystore is
>> not found during startup. To further debug, you can add the following line
>> in bootstrap.conf to provide additional logging:
>> 
>> java.arg.15=-Djavax.net.debug=ssl,handshake
>> 
>> Andy LoPresto
>> alopre...@apache.org 
>> *alopresto.apa...@gmail.com  
>> >*
>> PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69
>> 
>> On Nov 2, 2016, at 2:25 PM, Ricky Saltzer  wrote:
>> 
>> Hey all -
>> 
>> I'm using NiFi 1.0 and I'm having an issue using secure mode with a local
>> key store while in clustered mode. If I set the node in clustered mode, and
>> also provide a valid keystore, I receive a KeyStoreException [1]. If I set
>> the configuration to not use clustered mode, NiFi will start up fine with
>> the provided key store. Am I supposed to be storing this key store in
>> Zookeeper somewhere?
>> 
>> 
>> [1]
>> 
>> 
>> Caused by: java.security.KeyStoreException:  not found
>> 
>> 
>>   at java.security.KeyStore.getInstance(KeyStore.java:839)
>> ~[na:1.8.0_11]
>> 
>>   at
>> org.apache.nifi.io.socket.SSLContextFactory.(
>> SSLContextFactory.java:61)
>> ~[nifi-socket-utils-1.0.0.jar:1.0.0]
>> 
>>   at
>> org.apache.nifi.cluster.protocol.spring.ServerSocketConfigurationFacto
>> ryBean.getObject(ServerSocketConfigurationFactoryBean.java:45)
>> ~[nifi-framework-cluster-protocol-1.0.0.jar:1.0.0]
>> 
>>   at
>> org.apache.nifi.cluster.protocol.spring.ServerSocketConfigurationFacto
>> ryBean.getObject(ServerSocketConfigurationFactoryBean.java:30)
>> ~[nifi-framework-cluster-protocol-1.0.0.jar:1.0.0]
>> 
>>   at
>> org.springframework.beans.factory.support.FactoryBeanRegistrySupport.
>> doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:168)
>> ~[spring-beans-4.2.4.RELEASE.jar:4.2.4.RELEASE]
>> 
>>   ... 69 common frames omitted
>> 
>> Caused by: java.security.NoSuchAlgorithmException:  KeyStore not available
>> 
>>   at sun.security.jca.GetInstance.getInstance(GetInstance.java:159)
>> ~[na:1.8.0_11]
>> 
>>   at java.security.Security.getImpl(Security.java:695) ~[na:1.8.0_11]
>> 
>>   at java.security.KeyStore.getInstance(KeyStore.java:836)
>> ~[na:1.8.0_11]
>> 
>>   ... 73 common frames omitted
>> 
>> 
>> 
> 
> 
> -- 
> Ricky Saltzer
> http://www.cloudera.com 


Re: [ANNOUNCE] New Apache NiFi PMC Member - Andre Fucs de Miranda

2016-11-04 Thread Bryan Rosander
Congrats Andre!  Well deserved :)

On Fri, Nov 4, 2016 at 9:44 AM, Mark Payne  wrote:

> Welcome, Andre!
>
> -Mark
>
> > On Nov 3, 2016, at 10:37 PM, Joe Witt  wrote:
> >
> > Team,
> >
> > On behalf of the Apache NiFi PMC, I am pleased to announce that Andre
> > Fucs de Miranda has accepted the PMC's invitation to join the Apache
> > NiFi PMC.  Andre's excellent contributions to the project reflect the
> > very best of the power of the Apache Way.  Andre started out in the
> > project as an interested user in October of 2015.  He progressed from
> > asking usage questions to contributing ideas, joined the developer
> > list, started reviewing code and contributing new code, participated
> > in votes and discussions and earned committer status.  Since then he
> > has continued those contributions and gone well beyond by working to
> > reduce our open PR and JIRA count and ensure hygiene in our Git
> > branches.
> >
> > Please join us in congratulating and welcoming Andre to the Apache NiFi
> PMC.
> >
> > Congratulations and welcome, Andre!
>
>


Re: Secure Cluster Mode Issues

2016-11-04 Thread Ricky Saltzer
Hey Andy -

Thanks for the response. I'm currently just trying to get one node in
clustered mode before adding a second. The keystore is stored locally and
I've confirmed it's readable, as it was able to start once I took it out of
clustered mode. I added that line to the bootstrap.conf, but I don't
believe any additional logging was produced in regards to troubleshooting
this problem. Just in case, I've attached the entire log [1].

[1]:
https://gist.githubusercontent.com/rickysaltzer/ed454d87d2207d5acab401a473d4be57/raw/425c42da762fc5cc997153d48b09f0fedabc88bb/gistfile1.txt

On Wed, Nov 2, 2016 at 7:08 PM, Andy LoPresto  wrote:

> Hi Ricky,
>
> Sorry to hear you are having this issue. Is the keystore available on all
> nodes of the cluster? It appears from the log message that the keystore is
> not found during startup. To further debug, you can add the following line
> in bootstrap.conf to provide additional logging:
>
> java.arg.15=-Djavax.net.debug=ssl,handshake
>
> Andy LoPresto
> alopre...@apache.org
> *alopresto.apa...@gmail.com *
> PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69
>
> On Nov 2, 2016, at 2:25 PM, Ricky Saltzer  wrote:
>
> Hey all -
>
> I'm using NiFi 1.0 and I'm having an issue using secure mode with a local
> key store while in clustered mode. If I set the node in clustered mode, and
> also provide a valid keystore, I receive a KeyStoreException [1]. If I set
> the configuration to not use clustered mode, NiFi will start up fine with
> the provided key store. Am I supposed to be storing this key store in
> Zookeeper somewhere?
>
>
> [1]
>
>
> Caused by: java.security.KeyStoreException:  not found
>
>
>at java.security.KeyStore.getInstance(KeyStore.java:839)
> ~[na:1.8.0_11]
>
>at
> org.apache.nifi.io.socket.SSLContextFactory.(
> SSLContextFactory.java:61)
> ~[nifi-socket-utils-1.0.0.jar:1.0.0]
>
>at
> org.apache.nifi.cluster.protocol.spring.ServerSocketConfigurationFacto
> ryBean.getObject(ServerSocketConfigurationFactoryBean.java:45)
> ~[nifi-framework-cluster-protocol-1.0.0.jar:1.0.0]
>
>at
> org.apache.nifi.cluster.protocol.spring.ServerSocketConfigurationFacto
> ryBean.getObject(ServerSocketConfigurationFactoryBean.java:30)
> ~[nifi-framework-cluster-protocol-1.0.0.jar:1.0.0]
>
>at
> org.springframework.beans.factory.support.FactoryBeanRegistrySupport.
> doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:168)
> ~[spring-beans-4.2.4.RELEASE.jar:4.2.4.RELEASE]
>
>... 69 common frames omitted
>
> Caused by: java.security.NoSuchAlgorithmException:  KeyStore not available
>
>at sun.security.jca.GetInstance.getInstance(GetInstance.java:159)
> ~[na:1.8.0_11]
>
>at java.security.Security.getImpl(Security.java:695) ~[na:1.8.0_11]
>
>at java.security.KeyStore.getInstance(KeyStore.java:836)
> ~[na:1.8.0_11]
>
>... 73 common frames omitted
>
>
>


-- 
Ricky Saltzer
http://www.cloudera.com


Re: [ANNOUNCE] New Apache NiFi Committer Scott Aslan

2016-11-04 Thread Bryan Rosander
Congrats Scott!

On Fri, Nov 4, 2016 at 11:50 AM, Rob Moran  wrote:

> Congrats Scott - thanks for all the awesome work!
>
> Rob
>
> On Fri, Nov 4, 2016 at 11:43 AM, Pierre Villard <
> pierre.villard...@gmail.com
> > wrote:
>
> > Congrats! Well deserved is an euphemism ;-)
> >
> > 2016-11-04 16:32 GMT+01:00 Oleg Zhurakousky <
> ozhurakou...@hortonworks.com>
> > :
> >
> > > Congrats Scott! Well earned!
> > >
> > > Oleg
> > > > On Nov 4, 2016, at 11:25 AM, Tony Kurc  wrote:
> > > >
> > > > On behalf of the Apache NiFI PMC, I am very pleased to announce that
> > > Scott
> > > > Aslan has accepted the PMC's invitation to become a committer on the
> > > Apache
> > > > NiFi project. We greatly appreciate all of Scott's hard work and
> > generous
> > > > contributions to the project. We look forward to his continued
> > > involvement
> > > > in the project.
> > > >
> > > > For those familiar with the UI improvements in 1.x, a lot of the
> > > > implementation was contributed by Scott, so another set of very
> visible
> > > > contributions! (Sorry for the pun, I couldn't help myself).
> > > >
> > > > Welcome and congratulations!
> > > > Tony
> > >
> > >
> >
>


Nifi flow development guidelines

2016-11-04 Thread Sachidanand Tiwari
Team,

I am reaching out to you to seek your recommendation on development
guidelines when multiple teams are working on a Nifi flow. How to manage
source code version?. Do we need to having each functionality as separate
Process Group exported/imported as template?. How to deploy flow on Nifi
cluster environment.

As per our current approach, we are creating separate ProcesGroup for
different functionality and exporting/importing as template.

-Sachin


Re: [ANNOUNCE] New Apache NiFi Committer Scott Aslan

2016-11-04 Thread Rob Moran
Congrats Scott - thanks for all the awesome work!

Rob

On Fri, Nov 4, 2016 at 11:43 AM, Pierre Villard  wrote:

> Congrats! Well deserved is an euphemism ;-)
>
> 2016-11-04 16:32 GMT+01:00 Oleg Zhurakousky 
> :
>
> > Congrats Scott! Well earned!
> >
> > Oleg
> > > On Nov 4, 2016, at 11:25 AM, Tony Kurc  wrote:
> > >
> > > On behalf of the Apache NiFI PMC, I am very pleased to announce that
> > Scott
> > > Aslan has accepted the PMC's invitation to become a committer on the
> > Apache
> > > NiFi project. We greatly appreciate all of Scott's hard work and
> generous
> > > contributions to the project. We look forward to his continued
> > involvement
> > > in the project.
> > >
> > > For those familiar with the UI improvements in 1.x, a lot of the
> > > implementation was contributed by Scott, so another set of very visible
> > > contributions! (Sorry for the pun, I couldn't help myself).
> > >
> > > Welcome and congratulations!
> > > Tony
> >
> >
>


Re: [ANNOUNCE] New Apache NiFi Committer Scott Aslan

2016-11-04 Thread Pierre Villard
Congrats! Well deserved is an euphemism ;-)

2016-11-04 16:32 GMT+01:00 Oleg Zhurakousky :

> Congrats Scott! Well earned!
>
> Oleg
> > On Nov 4, 2016, at 11:25 AM, Tony Kurc  wrote:
> >
> > On behalf of the Apache NiFI PMC, I am very pleased to announce that
> Scott
> > Aslan has accepted the PMC's invitation to become a committer on the
> Apache
> > NiFi project. We greatly appreciate all of Scott's hard work and generous
> > contributions to the project. We look forward to his continued
> involvement
> > in the project.
> >
> > For those familiar with the UI improvements in 1.x, a lot of the
> > implementation was contributed by Scott, so another set of very visible
> > contributions! (Sorry for the pun, I couldn't help myself).
> >
> > Welcome and congratulations!
> > Tony
>
>


Re: [ANNOUNCE] New Apache NiFi Committer Scott Aslan

2016-11-04 Thread Oleg Zhurakousky
Congrats Scott! Well earned!

Oleg
> On Nov 4, 2016, at 11:25 AM, Tony Kurc  wrote:
> 
> On behalf of the Apache NiFI PMC, I am very pleased to announce that Scott
> Aslan has accepted the PMC's invitation to become a committer on the Apache
> NiFi project. We greatly appreciate all of Scott's hard work and generous
> contributions to the project. We look forward to his continued involvement
> in the project.
> 
> For those familiar with the UI improvements in 1.x, a lot of the
> implementation was contributed by Scott, so another set of very visible
> contributions! (Sorry for the pun, I couldn't help myself).
> 
> Welcome and congratulations!
> Tony



[ANNOUNCE] New Apache NiFi Committer Scott Aslan

2016-11-04 Thread Tony Kurc
On behalf of the Apache NiFI PMC, I am very pleased to announce that Scott
Aslan has accepted the PMC's invitation to become a committer on the Apache
NiFi project. We greatly appreciate all of Scott's hard work and generous
contributions to the project. We look forward to his continued involvement
in the project.

For those familiar with the UI improvements in 1.x, a lot of the
implementation was contributed by Scott, so another set of very visible
contributions! (Sorry for the pun, I couldn't help myself).

Welcome and congratulations!
Tony


Re: [ANNOUNCE] New Apache NiFi PMC Member - Andre Fucs de Miranda

2016-11-04 Thread Mark Payne
Welcome, Andre!

-Mark

> On Nov 3, 2016, at 10:37 PM, Joe Witt  wrote:
> 
> Team,
> 
> On behalf of the Apache NiFi PMC, I am pleased to announce that Andre
> Fucs de Miranda has accepted the PMC's invitation to join the Apache
> NiFi PMC.  Andre's excellent contributions to the project reflect the
> very best of the power of the Apache Way.  Andre started out in the
> project as an interested user in October of 2015.  He progressed from
> asking usage questions to contributing ideas, joined the developer
> list, started reviewing code and contributing new code, participated
> in votes and discussions and earned committer status.  Since then he
> has continued those contributions and gone well beyond by working to
> reduce our open PR and JIRA count and ensure hygiene in our Git
> branches.
> 
> Please join us in congratulating and welcoming Andre to the Apache NiFi PMC.
> 
> Congratulations and welcome, Andre!



Re: [ANNOUNCE] New Apache NiFi PMC Member - Andre Fucs de Miranda

2016-11-04 Thread Joe Percivall
Congratulations Andre! - - - - - - Joseph Percivalllinkedin.com/in/Percivalle: 
joeperciv...@yahoo.com
 

On Friday, November 4, 2016 4:03 AM, Pierre Villard 
 wrote:
 

 Congrats Andre!

2016-11-04 8:58 GMT+01:00 Andy LoPresto :

> Congratulations Andre. Really excited for your continued contributions and
> valuable security insight.
>
> Andy LoPresto
> alopre...@apache.org
> alopresto.apa...@gmail.com
> PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69
>
> > On Nov 3, 2016, at 19:37, Joe Witt  wrote:
> >
> > Team,
> >
> > On behalf of the Apache NiFi PMC, I am pleased to announce that Andre
> > Fucs de Miranda has accepted the PMC's invitation to join the Apache
> > NiFi PMC.  Andre's excellent contributions to the project reflect the
> > very best of the power of the Apache Way.  Andre started out in the
> > project as an interested user in October of 2015.  He progressed from
> > asking usage questions to contributing ideas, joined the developer
> > list, started reviewing code and contributing new code, participated
> > in votes and discussions and earned committer status.  Since then he
> > has continued those contributions and gone well beyond by working to
> > reduce our open PR and JIRA count and ensure hygiene in our Git
> > branches.
> >
> > Please join us in congratulating and welcoming Andre to the Apache NiFi
> PMC.
> >
> > Congratulations and welcome, Andre!
>


   

Re: [ANNOUNCE] New Apache NiFi PMC Member - Andre Fucs de Miranda

2016-11-04 Thread Andre
thanks folks! Now I can finally retire.

:-)

On Fri, Nov 4, 2016 at 1:37 PM, Joe Witt  wrote:

> Team,
>
> On behalf of the Apache NiFi PMC, I am pleased to announce that Andre
> Fucs de Miranda has accepted the PMC's invitation to join the Apache
> NiFi PMC.  Andre's excellent contributions to the project reflect the
> very best of the power of the Apache Way.  Andre started out in the
> project as an interested user in October of 2015.  He progressed from
> asking usage questions to contributing ideas, joined the developer
> list, started reviewing code and contributing new code, participated
> in votes and discussions and earned committer status.  Since then he
> has continued those contributions and gone well beyond by working to
> reduce our open PR and JIRA count and ensure hygiene in our Git
> branches.
>
> Please join us in congratulating and welcoming Andre to the Apache NiFi
> PMC.
>
> Congratulations and welcome, Andre!
>


Re: [ANNOUNCE] New Apache NiFi PMC Member - Andre Fucs de Miranda

2016-11-04 Thread Pierre Villard
Congrats Andre!

2016-11-04 8:58 GMT+01:00 Andy LoPresto :

> Congratulations Andre. Really excited for your continued contributions and
> valuable security insight.
>
> Andy LoPresto
> alopre...@apache.org
> alopresto.apa...@gmail.com
> PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69
>
> > On Nov 3, 2016, at 19:37, Joe Witt  wrote:
> >
> > Team,
> >
> > On behalf of the Apache NiFi PMC, I am pleased to announce that Andre
> > Fucs de Miranda has accepted the PMC's invitation to join the Apache
> > NiFi PMC.  Andre's excellent contributions to the project reflect the
> > very best of the power of the Apache Way.  Andre started out in the
> > project as an interested user in October of 2015.  He progressed from
> > asking usage questions to contributing ideas, joined the developer
> > list, started reviewing code and contributing new code, participated
> > in votes and discussions and earned committer status.  Since then he
> > has continued those contributions and gone well beyond by working to
> > reduce our open PR and JIRA count and ensure hygiene in our Git
> > branches.
> >
> > Please join us in congratulating and welcoming Andre to the Apache NiFi
> PMC.
> >
> > Congratulations and welcome, Andre!
>


Re: [ANNOUNCE] New Apache NiFi PMC Member - Andre Fucs de Miranda

2016-11-04 Thread Andy LoPresto
Congratulations Andre. Really excited for your continued contributions and 
valuable security insight. 

Andy LoPresto
alopre...@apache.org
alopresto.apa...@gmail.com
PGP Fingerprint: 70EC B3E5 98A6 5A3F D3C4  BACE 3C6E F65B 2F7D EF69

> On Nov 3, 2016, at 19:37, Joe Witt  wrote:
> 
> Team,
> 
> On behalf of the Apache NiFi PMC, I am pleased to announce that Andre
> Fucs de Miranda has accepted the PMC's invitation to join the Apache
> NiFi PMC.  Andre's excellent contributions to the project reflect the
> very best of the power of the Apache Way.  Andre started out in the
> project as an interested user in October of 2015.  He progressed from
> asking usage questions to contributing ideas, joined the developer
> list, started reviewing code and contributing new code, participated
> in votes and discussions and earned committer status.  Since then he
> has continued those contributions and gone well beyond by working to
> reduce our open PR and JIRA count and ensure hygiene in our Git
> branches.
> 
> Please join us in congratulating and welcoming Andre to the Apache NiFi PMC.
> 
> Congratulations and welcome, Andre!