You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2010/05/14 03:38:55 UTC

svn commit: r944077 - /hadoop/pig/branches/branch-0.7/conf/pig-default.properties

Author: daijy
Date: Fri May 14 01:38:55 2010
New Revision: 944077

URL: http://svn.apache.org/viewvc?rev=944077&view=rev
Log:
PIG-1381: Need a way for Pig to take an alternative property file

Added:
    hadoop/pig/branches/branch-0.7/conf/pig-default.properties

Added: hadoop/pig/branches/branch-0.7/conf/pig-default.properties
URL: http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.7/conf/pig-default.properties?rev=944077&view=auto
==============================================================================
--- hadoop/pig/branches/branch-0.7/conf/pig-default.properties (added)
+++ hadoop/pig/branches/branch-0.7/conf/pig-default.properties Fri May 14 01:38:55 2010
@@ -0,0 +1,20 @@
+# Pig default configuration file. All values can be overwritten by pig.properties and command line arguments.
+# see bin/pig -help
+
+# brief logging (no timestamps)
+brief=false
+
+#debug level, INFO is default
+debug=INFO
+
+#verbose print all log messages to screen (default to print only INFO and above to screen)
+verbose=false
+
+#exectype local|mapreduce, mapreduce is default
+exectype=mapreduce
+
+#Do not spill temp files smaller than this size (bytes)
+pig.spill.size.threshold=5000000
+#EXPERIMENT: Activate garbage collection when spilling a file bigger than this size (bytes)
+#This should help reduce the number of files being spilled.
+pig.spill.gc.activation.size=40000000