- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
configuration Nifi to work with kerberized Hadoop
- Labels:
-
Apache NiFi
Created ‎10-24-2016 07:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I want nifi to use kerberos principal while running the Hive script in Hadoop with Kerbores set up.
Is there a way to automate renew Kerbores ticket? Nifi executestream process group stopped working after the Kerbores ticket expired. The process continue after executing command "kinit <username>".
current nifi.properties file:
nifi.kerberos.krb5.file=/etc/krb5.conf
nifi.kerberos.service.principal=<username>
nifi.kerberos.keytab.location=/home/username.keytab
nifi.kerberos.authetication.expiration=12 hours
Created ‎10-24-2016 01:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Some of these properties are a little bit mis-leading and were renamed in 1.0 to make it clearer:
https://nifi.apache.org/docs/nifi-docs/html/administration-guide.html#kerberos_properties
I think if you are calling an external script you would need to handle renewing the kerberos tickets yourself. You could just setup a GenerateFlowFile on a timer schedule that went to an ExecuteStreamCommand and just did a kinit every couple of hours.
Created ‎10-24-2016 01:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Some of these properties are a little bit mis-leading and were renamed in 1.0 to make it clearer:
https://nifi.apache.org/docs/nifi-docs/html/administration-guide.html#kerberos_properties
I think if you are calling an external script you would need to handle renewing the kerberos tickets yourself. You could just setup a GenerateFlowFile on a timer schedule that went to an ExecuteStreamCommand and just did a kinit every couple of hours.
