forked from apache/hawq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HAWQ-1652. Update PXF keytab path to use PXF_HOME
- Updates `PXF_KEYTAB` path to live inside `${PXF_HOME}/conf` and `PXF_PRINCIPAL` to default to gpadmin. - Fixes nanoseconds to milliseconds conversion in UGICache. Co-authored-by: Divya Bhargov <[email protected]> Co-authored-by: Francisco Guerrero <[email protected]>
- Loading branch information
1 parent
e6b7021
commit 5d6afbe
Showing
3 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,9 +46,9 @@ export PXF_JVM_OPTS="-Xmx2g -Xms1g" | |
|
||
# Kerberos | ||
# Path to keytab file owned by pxf service with permissions 0400 | ||
export PXF_KEYTAB="/etc/security/keytab/pxf.service.keytab" | ||
export PXF_KEYTAB="${PXF_HOME}/conf/pxf.service.keytab" | ||
# Kerberos principal pxf service should use. _HOST is replaced automatically with hostnames FQDN | ||
export PXF_PRINCIPAL="pxf/[email protected]" | ||
export PXF_PRINCIPAL="gpadmin/[email protected]" | ||
|
||
# Hadoop Distribution Type (optional), supported values: | ||
# <empty> - for auto discovery of HDP, CDH or tarball based client installation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters