|
@@ -0,0 +1,91 @@
|
|
|
+<?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>
|
|
|
+
|
|
|
+ <property>
|
|
|
+ <name>pig-content</name>
|
|
|
+ <value>
|
|
|
+# 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.
|
|
|
+
|
|
|
+# 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
|
|
|
+
|
|
|
+# Enable insertion of information about script into hadoop job conf
|
|
|
+pig.script.info.enabled=true
|
|
|
+
|
|
|
+# 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
|
|
|
+
|
|
|
+# the following two parameters are to help estimate the reducer number
|
|
|
+pig.exec.reducers.bytes.per.reducer=1000000000
|
|
|
+pig.exec.reducers.max=999
|
|
|
+
|
|
|
+# Temporary location to store the intermediate data.
|
|
|
+pig.temp.dir=/tmp/
|
|
|
+
|
|
|
+# Threshold for merging FRJoin fragment files
|
|
|
+pig.files.concatenation.threshold=100
|
|
|
+pig.optimistic.files.concatenation=false;
|
|
|
+
|
|
|
+pig.disable.counter=false
|
|
|
+
|
|
|
+# Avoid pig failures when multiple jobs write to the same location
|
|
|
+pig.location.check.strict=false
|
|
|
+
|
|
|
+hcat.bin=/usr/bin/hcat
|
|
|
+
|
|
|
+ </value>
|
|
|
+ </property>
|
|
|
+
|
|
|
+</configuration>
|