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:39:26 UTC

svn commit: r944078 - /hadoop/pig/trunk/conf/pig.properties

Author: daijy
Date: Fri May 14 01:39:26 2010
New Revision: 944078

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

Added:
    hadoop/pig/trunk/conf/pig.properties

Added: hadoop/pig/trunk/conf/pig.properties
URL: http://svn.apache.org/viewvc/hadoop/pig/trunk/conf/pig.properties?rev=944078&view=auto
==============================================================================
--- hadoop/pig/trunk/conf/pig.properties (added)
+++ hadoop/pig/trunk/conf/pig.properties Fri May 14 01:39:26 2010
@@ -0,0 +1,24 @@
+# Pig configuration file. All values can be overwritten by command line arguments.
+
+# log4jconf log4j configuration file
+# log4jconf=./conf/log4j.properties
+
+# a file that contains pig script
+#file=
+
+# load jarfile, colon separated
+#jar=
+
+#verbose print all log messages to screen (default to print only INFO and above to screen)
+#verbose=true
+
+#exectype local|mapreduce, mapreduce is default
+#exectype=local
+
+#pig.logfile=
+
+#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