You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by nz...@apache.org on 2010/07/28 05:53:44 UTC

svn commit: r979946 - in /hadoop/hive/trunk: CHANGES.txt conf/hive-default.xml

Author: nzhang
Date: Wed Jul 28 03:53:43 2010
New Revision: 979946

URL: http://svn.apache.org/viewvc?rev=979946&view=rev
Log:
HIVE-1425. hive.task.progress should be added to conf/hive-default.xml (John Sichi via Ning Zhang)

Modified:
    hadoop/hive/trunk/CHANGES.txt
    hadoop/hive/trunk/conf/hive-default.xml

Modified: hadoop/hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/CHANGES.txt?rev=979946&r1=979945&r2=979946&view=diff
==============================================================================
--- hadoop/hive/trunk/CHANGES.txt (original)
+++ hadoop/hive/trunk/CHANGES.txt Wed Jul 28 03:53:43 2010
@@ -77,6 +77,9 @@ Trunk -  Unreleased
     HIVE-1470. percentile_approx() fails with more than 1 reducer
     (Mayank Lahiri via jvs)
 
+    HIVE-1425. hive.task.progress should be added to conf/hive-default.xml
+    (John Sichi via Ning Zhang)
+
   TESTS
 
     HIVE-1464. improve  test query performance

Modified: hadoop/hive/trunk/conf/hive-default.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/conf/hive-default.xml?rev=979946&r1=979945&r2=979946&view=diff
==============================================================================
--- hadoop/hive/trunk/conf/hive-default.xml (original)
+++ hadoop/hive/trunk/conf/hive-default.xml Wed Jul 28 03:53:43 2010
@@ -390,6 +390,12 @@
 </property>
 
 <property>
+  <name>hive.task.progress</name>
+  <value>false</value>
+  <description>Whether Hive should periodically update task progress counters during execution.  Enabling this allows task progress to be monitored more closely in the job tracker, but may impose a performance penalty.  This flag is automatically set to true for jobs with hive.exec.dynamic.partition set to true.</description>
+</property>
+
+<property>
   <name>hive.hwi.war.file</name>
   <value>lib/hive-hwi-@VERSION@.war</value>
   <description>This sets the path to the HWI war file, relative to ${HIVE_HOME}. </description>
@@ -410,7 +416,13 @@
 <property>
   <name>hive.exec.pre.hooks</name>
   <value></value>
-  <description>Pre Execute Hook for Tests</description>
+  <description>Comma-separated list of pre-execution hooks to be invoked for each statement.  A pre-execution hook is specified as the name of a Java class which implements the org.apache.hadoop.hive.ql.hooks.PreExecute interface.</description>
+</property>
+
+<property>
+  <name>hive.exec.post.hooks</name>
+  <value></value>
+  <description>Comma-separated list of post-execution hooks to be invoked for each statement.  A post-execution hook is specified as the name of a Java class which implements the org.apache.hadoop.hive.ql.hooks.PostExecute interface.</description>
 </property>
 
 <property>