ConsumeAMQP with AMQP 1.0

2019-04-30 Thread Tobal Uriarte, Sergio Erlantz
?Hi, I'm trying to consume a service of AMQP 1.0 behind a server with SSL (.p12 file). I saw that NiFi has COnsumeAMQP as the way to consume AMQP 0.9, but not 1.0, and I didn't know if this is going to change soon, or is not a priority. I though that maybe was easy to implement RabbitMQ since i

[VOTE] Release Apache NiFi NAR Maven Plugin 1.3.0

2019-04-30 Thread Bryan Bende
Hello, I am pleased to be calling this vote for the source release of Apache NiFi NAR Maven Plugin 1.3.0. The source zip, including signatures, digests, etc. can be found at: https://repository.apache.org/content/repositories/orgapachenifi-1142 The Git tag is nifi-nar-maven-plugin-1.3.0-RC1 The

Apache NiFi NAR Maven Plugin 1.3.0 RC1 Release Helper Guide

2019-04-30 Thread Bryan Bende
Hello Apache NiFi community, Please find the associated guidance to help those interested in validating/verifying the release so they can vote. # Download latest KEYS file: https://dist.apache.org/repos/dist/dev/nifi/KEYS # Import keys file: gpg --import KEYS # [optional] Clear out local maven

Kicking the Kerberos out of org.apache.nifi.hadoop

2019-04-30 Thread Peter Wicks (pwicks)
I was thinking of moving the non-Hadoop specific Kerberos classes out of org.apache.nifi.hadoop into a more central location. There are some good utility classes, such as KerberosKeytabCredentials, that it would be nice to have centralized into a non-Hadoop specific library. Would it be appropr

Re: Kicking the Kerberos out of org.apache.nifi.hadoop

2019-04-30 Thread Bryan Bende
I created a mini-kerberos framework here in nifi-security-utils that does not depend on Hadoop: https://github.com/apache/nifi/tree/master/nifi-commons/nifi-security-utils/src/main/java/org/apache/nifi/security/krb The first use-case was for the Solr processors and I believe this code is also now

RE: [EXT] Re: Kicking the Kerberos out of org.apache.nifi.hadoop

2019-04-30 Thread Peter Wicks (pwicks)
Thanks Bryan, I was reviewing this earlier. Some context on what I'm actually trying to do: I'm trying to add Kerberos support to InvokeHTTP, but didn't really want to add a dependency to the org.apache.nifi.hadoop library. The Livy controller service, which I was using as an example for this

Re: [EXT] Re: Kicking the Kerberos out of org.apache.nifi.hadoop

2019-04-30 Thread Bryan Bende
Ah I see, yea the stuff I have in nifi-security-utils currently doesn't handle the http part, its more about how to get the credentials and obtain a logged in user with in the current JVM. The code in the Solr bundle and in hadoop-utils is handling the http negotiation and we can probably refactor