Repository: ambari Updated Branches: refs/heads/trunk c99ca1254 -> b3f63395b
AMBARI-19905. Restrict hive interactive Tez session pool to be used for interactive execution mode. (Sergey Shelukhin via Swapan Shridhar). Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/b3f63395 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b3f63395 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b3f63395 Branch: refs/heads/trunk Commit: b3f63395b009f0d5c1b492ea666f61aad910da0f Parents: c99ca12 Author: Swapan Shridhar <[email protected]> Authored: Tue Feb 7 16:46:13 2017 -0800 Committer: Swapan Shridhar <[email protected]> Committed: Tue Feb 7 16:46:13 2017 -0800 ---------------------------------------------------------------------- .../HIVE/configuration/hive-interactive-site.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/b3f63395/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/hive-interactive-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/hive-interactive-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/hive-interactive-site.xml index befd0f9..ceea350 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/hive-interactive-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/hive-interactive-site.xml @@ -80,4 +80,20 @@ limitations under the License. <on-ambari-upgrade add="true"/> </property> + <property> + <name>hive.server2.tez.sessions.custom.queue.allowed</name> + <value>ignore</value> + <description>Whether to allow the users of this HS2 to specify custom queues - yes, no (fail if specified), ignore (use the default queues even if a custom one is specified)</description> + <display-name>Allow custom queues</display-name> + <on-ambari-upgrade add="true"/> + </property> + + <property> + <name>hive.server2.tez.sessions.restricted.configs</name> + <value>hive.execution.mode,hive.execution.engine</value> + <description>The list of configuration settings that the users of the session pool of this HS2 are not allowed to override</description> + <display-name>Restricted session configs</display-name> + <on-ambari-upgrade add="true"/> + </property> + </configuration>
