Repository: incubator-hawq Updated Branches: refs/heads/master 999a749bb -> 5c512afc4
HAWQ-1377. Add more information for Ranger related GUCs in default hawq-site.xml. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/5c512afc Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/5c512afc Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/5c512afc Branch: refs/heads/master Commit: 5c512afc460a0103aa9a8a9c7df28f956703978d Parents: 999a749 Author: Chunling Wang <[email protected]> Authored: Mon Mar 6 12:10:33 2017 +0800 Committer: Wen Lin <[email protected]> Committed: Wed Mar 8 13:26:29 2017 +0800 ---------------------------------------------------------------------- src/backend/utils/misc/etc/hawq-site.xml | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/5c512afc/src/backend/utils/misc/etc/hawq-site.xml ---------------------------------------------------------------------- diff --git a/src/backend/utils/misc/etc/hawq-site.xml b/src/backend/utils/misc/etc/hawq-site.xml index b327ab4..e436b5f 100644 --- a/src/backend/utils/misc/etc/hawq-site.xml +++ b/src/backend/utils/misc/etc/hawq-site.xml @@ -149,4 +149,37 @@ under the License. </description> </property> <!-- HAWQ resource enforcement parameters end here. --> + + <!-- HAWQ ACL parameters --> + <property> + <name>hawq_acl_type</name> + <value>standalone</value> + <description>HAWQ ACL mode. + 'standalone' means HAWQ does native ACL check; + 'ranger' means HAWQ does priviliges check through Ranger. + </description> + </property> + + <property> + <name>hawq_rps_address_host</name> + <value>localhost</value> + <description>The hostname of Ranger Plugin Service.</description> + </property> + + <property> + <name>hawq_rps_address_port</name> + <value>8432</value> + <description>The port number of Ranger Plugin Serice.</description> + </property> + + <property> + <name>hawq_rps_address_suffix</name> + <value>rps</value> + <description>The suffix of Ranger Plugin Service. It co-works + with above two parameters, and HAWQ RPS address is + $hawq_rps_address_host:$hawq_rps_address_port/$hawq_rps_address_suffix + For example, localhost:8432/rps. + </description> + </property> + <!-- HAWQ ACL parameters ends here--> </configuration>
