Repository: ambari Updated Branches: refs/heads/trunk f4a44bdb5 -> a49d5a791
AMBARI-10352. incorrect value for hive.default.fileformat flag in hive-site.xml (dlysnichenko) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/a49d5a79 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/a49d5a79 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/a49d5a79 Branch: refs/heads/trunk Commit: a49d5a7913f61443ac8236e589cc81d8af8cf243 Parents: f4a44bd Author: Lisnichenko Dmitro <[email protected]> Authored: Mon Apr 6 13:19:37 2015 +0300 Committer: Lisnichenko Dmitro <[email protected]> Committed: Mon Apr 6 13:19:37 2015 +0300 ---------------------------------------------------------------------- .../HIVE/0.12.0.2.0/configuration/hive-site.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/a49d5a79/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/configuration/hive-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/configuration/hive-site.xml b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/configuration/hive-site.xml index 2d58557..9e35dca 100644 --- a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/configuration/hive-site.xml +++ b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/configuration/hive-site.xml @@ -349,15 +349,19 @@ limitations under the License. <property> <name>hive.default.fileformat</name> - <value>Text</value> + <value>TextFile</value> <description>Default file format for CREATE TABLE statement.</description> <display-name>Default File Format</display-name> <value-attributes> <type>value-list</type> <entries>ORCFile</entries> - <entries>Text</entries> + <entries>TextFile</entries> + <entries>SequenceFile</entries> + <entries>RCfile</entries> <entry_descriptions>The Optimized Row Columnar (ORC) file format provides a highly efficient way to store Hive data. It was designed to overcome limitations of the other Hive file formats. Using ORC files improves performance when Hive is reading, writing, and processing data.</entry_descriptions> <entry_descriptions>Text file format saves Hive data as normal text.</entry_descriptions> + <entry_descriptions>Compressed text file format saves Hive data in CompressedStorage.</entry_descriptions> + <entry_descriptions>Short of Record Columnar File, are flat files consisting of binary key/value pairs</entry_descriptions> </value-attributes> </property> </configuration>
