Repository: ambari Updated Branches: refs/heads/branch-2.5 d241d2af6 -> 3d65777ca refs/heads/trunk 6f94ca691 -> 28cb0cf50
AMBARI-19777. lzo broken for hive on tez (aonishuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/28cb0cf5 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/28cb0cf5 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/28cb0cf5 Branch: refs/heads/trunk Commit: 28cb0cf5048019f17bc85ff8c2d331a4acbac30e Parents: 6f94ca6 Author: Andrew Onishuk <[email protected]> Authored: Tue Jan 31 13:19:50 2017 +0200 Committer: Andrew Onishuk <[email protected]> Committed: Tue Jan 31 13:19:50 2017 +0200 ---------------------------------------------------------------------- .../HIVE/0.12.0.2.0/package/scripts/params_linux.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/28cb0cf5/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py index adac228..90e4e54 100644 --- a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py +++ b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py @@ -44,6 +44,7 @@ from resource_management.libraries import functions from resource_management.libraries.functions.setup_atlas_hook import has_atlas_in_cluster from ambari_commons.ambari_metrics_helper import select_metric_collector_hosts_from_hostnames from resource_management.libraries.functions.setup_ranger_plugin_xml import get_audit_configs +from resource_management.libraries.functions.get_architecture import get_architecture # Default log4j version; put config files under /etc/hive/conf log4j_version = '1' @@ -51,6 +52,7 @@ log4j_version = '1' # server configurations config = Script.get_config() tmp_dir = Script.get_tmp_dir() +architecture = get_architecture() sudo = AMBARI_SUDO_BINARY stack_root = status_params.stack_root
