You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2010/11/04 03:20:37 UTC

svn commit: r1030802 - in /incubator/hama/trunk: ./ conf/ src/java/ src/java/org/apache/hama/ src/java/org/apache/hama/bsp/ src/java/org/apache/hama/ipc/ src/java/org/apache/hama/util/ src/java/org/apache/hama/zookeeper/

Author: edwardyoon
Date: Thu Nov  4 02:20:36 2010
New Revision: 1030802

URL: http://svn.apache.org/viewvc?rev=1030802&view=rev
Log:
Add package.html to each package and few comments

Added:
    incubator/hama/trunk/src/java/org/apache/hama/ipc/package.html
    incubator/hama/trunk/src/java/org/apache/hama/zookeeper/package.html
Modified:
    incubator/hama/trunk/CHANGES.txt
    incubator/hama/trunk/conf/hama-default.xml
    incubator/hama/trunk/src/java/org/apache/hama/BSPMasterRunner.java
    incubator/hama/trunk/src/java/org/apache/hama/GroomServerRunner.java
    incubator/hama/trunk/src/java/org/apache/hama/MiniZooKeeperCluster.java
    incubator/hama/trunk/src/java/org/apache/hama/ZooKeeperRunner.java
    incubator/hama/trunk/src/java/org/apache/hama/bsp/package.html
    incubator/hama/trunk/src/java/org/apache/hama/util/package.html
    incubator/hama/trunk/src/java/overview.html

Modified: incubator/hama/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/CHANGES.txt?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/CHANGES.txt (original)
+++ incubator/hama/trunk/CHANGES.txt Thu Nov  4 02:20:36 2010
@@ -50,6 +50,7 @@ Trunk (unreleased changes)
 
   IMPROVEMENTS
     
+    HAMA-325: Add package.html to each package and few comments (edwardyoon)
     HAMA-322: JUnit test threads with GroboTestingJUnit (Filipe Manana via edwardyoon)
     HAMA-323: Remove generic warnings (edwardyoon)
     HAMA-254: Add news about rid of MapReduce and Hbase (edwardyoon)

Modified: incubator/hama/trunk/conf/hama-default.xml
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/conf/hama-default.xml?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/conf/hama-default.xml (original)
+++ incubator/hama/trunk/conf/hama-default.xml Thu Nov  4 02:20:36 2010
@@ -126,7 +126,7 @@
     For example, "host1.mydomain.com,host2.mydomain.com,host3.mydomain.com".
     By default this is set to localhost for local and pseudo-distributed modes
     of operation. For a fully-distributed setup, this should be set to a full
-    list of ZooKeeper quorum servers. If HBASE_MANAGES_ZK is set in hbase-env.sh
+    list of ZooKeeper quorum servers. If HAMA_MANAGES_ZK is set in hama-env.sh
     this is the list of servers which we will start/stop ZooKeeper on.
     </description>
   </property>

Modified: incubator/hama/trunk/src/java/org/apache/hama/BSPMasterRunner.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/BSPMasterRunner.java?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/BSPMasterRunner.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/BSPMasterRunner.java Thu Nov  4 02:20:36 2010
@@ -25,6 +25,9 @@ import org.apache.hadoop.util.Tool;
 import org.apache.hadoop.util.ToolRunner;
 import org.apache.hama.bsp.BSPMaster;
 
+/**
+ * This class starts and runs the BSPMaster
+ */
 public class BSPMasterRunner extends Configured implements Tool {
 
   public static final Log LOG = LogFactory.getLog(BSPMasterRunner.class);

Modified: incubator/hama/trunk/src/java/org/apache/hama/GroomServerRunner.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/GroomServerRunner.java?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/GroomServerRunner.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/GroomServerRunner.java Thu Nov  4 02:20:36 2010
@@ -26,6 +26,9 @@ import org.apache.hadoop.util.Tool;
 import org.apache.hadoop.util.ToolRunner;
 import org.apache.hama.bsp.GroomServer;
 
+/**
+ * This class starts and runs the GroomServer 
+ */
 public class GroomServerRunner extends Configured implements Tool {
 
   public static final Log LOG = LogFactory.getLog(GroomServerRunner.class);

Modified: incubator/hama/trunk/src/java/org/apache/hama/MiniZooKeeperCluster.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/MiniZooKeeperCluster.java?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/MiniZooKeeperCluster.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/MiniZooKeeperCluster.java Thu Nov  4 02:20:36 2010
@@ -1,3 +1,20 @@
+/**
+ * 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.
+ */
 package org.apache.hama;
 
 import java.io.BufferedReader;

Modified: incubator/hama/trunk/src/java/org/apache/hama/ZooKeeperRunner.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/ZooKeeperRunner.java?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/ZooKeeperRunner.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/ZooKeeperRunner.java Thu Nov  4 02:20:36 2010
@@ -24,6 +24,9 @@ import org.apache.hadoop.util.Tool;
 import org.apache.hadoop.util.ToolRunner;
 import org.apache.hama.zookeeper.QuorumPeer;
 
+/**
+ * This class starts and runs the ZooKeeperServer
+ */
 public class ZooKeeperRunner extends Configured implements Tool {
 
   public static final Log LOG = LogFactory.getLog(ZooKeeperRunner.class);

Modified: incubator/hama/trunk/src/java/org/apache/hama/bsp/package.html
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/bsp/package.html?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/bsp/package.html (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/bsp/package.html Thu Nov  4 02:20:36 2010
@@ -18,6 +18,6 @@
 -->
 
 <body>
-BSP package of Hama is a framework for developing BSP-style applications
+BSP computing framework.
 </body>
 </html>

Added: incubator/hama/trunk/src/java/org/apache/hama/ipc/package.html
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/ipc/package.html?rev=1030802&view=auto
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/ipc/package.html (added)
+++ incubator/hama/trunk/src/java/org/apache/hama/ipc/package.html Thu Nov  4 02:20:36 2010
@@ -0,0 +1,23 @@
+<html>
+
+<!--
+   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.
+-->
+
+<body>
+Tools to help define network clients and servers. 
+</body>
+</html>

Modified: incubator/hama/trunk/src/java/org/apache/hama/util/package.html
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/util/package.html?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/util/package.html (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/util/package.html Thu Nov  4 02:20:36 2010
@@ -18,6 +18,6 @@
 -->
 
 <body>
-Numerical and variable utilities
+Common utilities. 
 </body>
 </html>

Added: incubator/hama/trunk/src/java/org/apache/hama/zookeeper/package.html
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/zookeeper/package.html?rev=1030802&view=auto
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/zookeeper/package.html (added)
+++ incubator/hama/trunk/src/java/org/apache/hama/zookeeper/package.html Thu Nov  4 02:20:36 2010
@@ -0,0 +1,23 @@
+<html>
+
+<!--
+   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.
+-->
+
+<body>
+Tools to start the ZooKeeper server and quorum peers.
+</body>
+</html>

Modified: incubator/hama/trunk/src/java/overview.html
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/overview.html?rev=1030802&r1=1030801&r2=1030802&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/overview.html (original)
+++ incubator/hama/trunk/src/java/overview.html Thu Nov  4 02:20:36 2010
@@ -18,6 +18,6 @@
 -->
 
 <body>
-The Hama Overview
+The Hama Overview.
 </body>
 </html>