aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--conf/mapred-site.xml38
2 files changed, 41 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..10d194b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+x86_64/logs/
+aarch64/logs/
+logs/
diff --git a/conf/mapred-site.xml b/conf/mapred-site.xml
new file mode 100644
index 0000000..731a8a7
--- /dev/null
+++ b/conf/mapred-site.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
+<!--
+ Licensed 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. See accompanying LICENSE file.
+-->
+
+<!-- Put site-specific property overrides in this file. -->
+
+<configuration>
+ <property>
+ <name>mapred.map.tasks</name>
+ <value>12</value>
+ </property>
+ <property>
+ <name>mapred.reduce.tasks</name>
+ <value>12</value>
+ </property>
+
+ <property>
+ <name>mapred.job.tracker</name>
+ <value>localhost:54311</value>
+ <description>The host and port that the MapReduce job tracker runs
+ at. If "local", then jobs are run in-process as a single map
+ and reduce task.
+ </description>
+ </property>
+
+</configuration>