You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sr...@apache.org on 2015/06/20 02:27:40 UTC

ambari git commit: AMBARI-12033. Ambari installs missing hive.default.fileformat.managed=orc (srimanth)

Repository: ambari
Updated Branches:
  refs/heads/branch-2.1 63f4ed0ad -> 5a9f57099


AMBARI-12033. Ambari installs missing hive.default.fileformat.managed=orc (srimanth)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5a9f5709
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5a9f5709
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5a9f5709

Branch: refs/heads/branch-2.1
Commit: 5a9f57099339ee33c9797e9135cf05d09699fcfa
Parents: 63f4ed0
Author: Srimanth Gunturi <sg...@hortonworks.com>
Authored: Fri Jun 19 16:57:01 2015 -0700
Committer: Srimanth Gunturi <sg...@hortonworks.com>
Committed: Fri Jun 19 16:57:01 2015 -0700

----------------------------------------------------------------------
 .../services/HIVE/configuration/hive-site.xml   | 32 ++++++++++++++++++++
 1 file changed, 32 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/5a9f5709/ambari-server/src/main/resources/stacks/HDP/2.3/services/HIVE/configuration/hive-site.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/stacks/HDP/2.3/services/HIVE/configuration/hive-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.3/services/HIVE/configuration/hive-site.xml
new file mode 100644
index 0000000..a4bf02b
--- /dev/null
+++ b/ambari-server/src/main/resources/stacks/HDP/2.3/services/HIVE/configuration/hive-site.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0"?>
+<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements. See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License. You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<configuration supports_final="true">
+
+  <property>
+    <name>hive.default.fileformat.managed</name>
+    <value>orc</value>
+    <description>
+      Default file format for CREATE TABLE statement applied to managed tables only. 
+      External tables will be created with default file format. Leaving this null 
+      will result in using the default file format for all tables.
+    </description>
+  </property>
+
+</configuration>