Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 17136 invoked from network); 12 Feb 2008 01:29:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Feb 2008 01:29:18 -0000 Received: (qmail 37854 invoked by uid 500); 12 Feb 2008 01:29:09 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 37581 invoked by uid 500); 12 Feb 2008 01:29:07 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 37544 invoked by uid 99); 12 Feb 2008 01:29:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2008 17:29:07 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Feb 2008 00:51:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 59CC41A9832; Mon, 11 Feb 2008 16:51:14 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r620681 - in /hadoop/core/trunk: conf/ docs/ docs/skin/images/ Date: Tue, 12 Feb 2008 00:51:14 -0000 To: core-commits@hadoop.apache.org From: stack@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080212005114.59CC41A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stack Date: Mon Feb 11 16:51:11 2008 New Revision: 620681 URL: http://svn.apache.org/viewvc?rev=620681&view=rev Log: HBASE-417 Factor TableOperation and subclasses into separate files from HMaster Modified: hadoop/core/trunk/conf/log4j.properties hadoop/core/trunk/docs/hadoop-default.html hadoop/core/trunk/docs/skin/images/rc-b-l-15-1body-2menu-3menu.png hadoop/core/trunk/docs/skin/images/rc-b-r-15-1body-2menu-3menu.png hadoop/core/trunk/docs/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png hadoop/core/trunk/docs/skin/images/rc-t-r-15-1body-2menu-3menu.png hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png Modified: hadoop/core/trunk/conf/log4j.properties URL: http://svn.apache.org/viewvc/hadoop/core/trunk/conf/log4j.properties?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== --- hadoop/core/trunk/conf/log4j.properties (original) +++ hadoop/core/trunk/conf/log4j.properties Mon Feb 11 16:51:11 2008 @@ -77,6 +77,8 @@ #log4j.logger.org.apache.hadoop.mapred.JobTracker=DEBUG #log4j.logger.org.apache.hadoop.mapred.TaskTracker=DEBUG #log4j.logger.org.apache.hadoop.fs.FSNamesystem=DEBUG +log4j.logger.org.apache.hadoop.hbase=DEBUG +#log4j.logger.org.mortbay.http=DEBUG # # Event Counter Appender Modified: hadoop/core/trunk/docs/hadoop-default.html URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/hadoop-default.html?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== --- hadoop/core/trunk/docs/hadoop-default.html (original) +++ hadoop/core/trunk/docs/hadoop-default.html Mon Feb 11 16:51:11 2008 @@ -62,10 +62,6 @@ determine the host, port, etc. for a filesystem. -fs.trash.root${hadoop.tmp.dir}/TrashThe trash directory, used by FsShell's 'rm' command. - - - fs.trash.interval0Number of minutes between trash checkpoints. If zero, the trash feature is disabled. @@ -106,25 +102,25 @@ -dfs.secondary.http.bindAddress0.0.0.0:50090 - The secondary namenode http server bind address and port. +dfs.secondary.http.address0.0.0.0:50090 + The secondary namenode http server address and port. If the port is 0 then the server will start on a free port. -dfs.datanode.bindAddress0.0.0.0:50010 - The address where the datanode will listen to. +dfs.datanode.address0.0.0.0:50010 + The address where the datanode server will listen to. If the port is 0 then the server will start on a free port. -dfs.datanode.http.bindAddress0.0.0.0:50075 - The datanode http server bind address and port. +dfs.datanode.http.address0.0.0.0:50075 + The datanode http server address and port. If the port is 0 then the server will start on a free port. -dfs.http.bindAddress0.0.0.0:50070 +dfs.http.address0.0.0.0:50070 The address and the base port where the dfs namenode web ui will listen on. If the port is 0 then the server will start on a free port. @@ -163,6 +159,11 @@ directories, for redundancy. +dfs.web.ugiwebuser,webgroupThe user account used by the web interface. + Syntax: USERNAME,GROUP1,GROUP2, ... + + + dfs.permissionstrue If "true", enable permission checking in HDFS. If "false", permission checking is turned off, @@ -267,6 +268,12 @@ +dfs.namenode.decommission.interval300Namenode periodicity in seconds to check if decommission is complete. + + +dfs.replication.interval3The periodicity in seconds with which the namenode computes repliaction work for datanodes. + + fs.s3.block.size67108864Block size to use when writing files to S3. @@ -291,8 +298,8 @@ -mapred.job.tracker.http.bindAddress0.0.0.0:50030 - The job tracker http server bind address and port. +mapred.job.tracker.http.address0.0.0.0:50030 + The job tracker http server address and port the server will listen on. If the port is 0 then the server will start on a free port. @@ -303,8 +310,10 @@ -mapred.task.tracker.report.bindAddress127.0.0.1:0The interface that task processes use to communicate - with their parent tasktracker process. +mapred.task.tracker.report.address127.0.0.1:0The interface and port that task tracker server listens on. + Since it is only connected to by the tasks, it uses the local interface. + EXPERT ONLY. Should only be changed if your host does not have the loopback + interface. mapred.local.dir${hadoop.tmp.dir}/mapred/localThe local directory where MapReduce stores intermediate @@ -452,8 +461,8 @@ -mapred.task.tracker.http.bindAddress0.0.0.0:50060 - The task tracker http server bind address and port. +mapred.task.tracker.http.address0.0.0.0:50060 + The task tracker http server address and port. If the port is 0 then the server will start on a free port. @@ -564,6 +573,22 @@ +mapred.task.profilefalseTo set whether the system should collect profiler + information for some of the tasks in this job? The information is stored + in the the user log directory. The value is "true" if task profiling + is enabled. + + +mapred.task.profile.maps0-2 To set the ranges of map tasks to profile. + mapred.task.profile has to be set to true for the value to be accounted. + + + +mapred.task.profile.reduces0-2 To set the ranges of reduce tasks to profile. + mapred.task.profile has to be set to true for the value to be accounted. + + + ipc.client.timeout60000Defines the timeout for IPC calls in milliseconds. @@ -593,6 +618,18 @@ ipc.server.listen.queue.size128Indicates the length of the listen queue for servers accepting client connections. + + + +ipc.server.tcpnodelayfalseTurn on/off Nagle's algorithm for the TCP socket connection on + the server. Setting to true disables the algorithm and may decrease latency + with a cost of more/smaller packets. + + + +ipc.client.tcpnodelayfalseTurn on/off Nagle's algorithm for the TCP socket connection on + the client. Setting to true disables the algorithm and may decrease latency + with a cost of more/smaller packets. Modified: hadoop/core/trunk/docs/skin/images/rc-b-l-15-1body-2menu-3menu.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-b-l-15-1body-2menu-3menu.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-b-r-15-1body-2menu-3menu.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-b-r-15-1body-2menu-3menu.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-t-r-15-1body-2menu-3menu.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-t-r-15-1body-2menu-3menu.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available. Modified: hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png URL: http://svn.apache.org/viewvc/hadoop/core/trunk/docs/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png?rev=620681&r1=620680&r2=620681&view=diff ============================================================================== Binary files - no diff available.