diff --git a/src/java/org/apache/hadoop/filecache/DistributedCache.java b/src/java/org/apache/hadoop/filecache/DistributedCache.java index 9d4a8f9a42..8070e07355 100644 --- a/src/java/org/apache/hadoop/filecache/DistributedCache.java +++ b/src/java/org/apache/hadoop/filecache/DistributedCache.java @@ -34,8 +34,8 @@ * framework to cache files (text, archives, jars etc.) needed by applications. *

* - *

Applications specify the files, via urls (hdfs:// or http://) to be cached - * via the {@link org.apache.hadoop.mapred.JobConf}. + *

Applications specify the files, via urls (hdfs:// or http://) to be + * cached via the org.apache.hadoop.mapred.JobConf. * The DistributedCache assumes that the * files specified via hdfs:// urls are already present on the * {@link FileSystem} at the path specified by the url.

@@ -82,8 +82,8 @@ * DistributedCache.addCacheArchive(new URI("/myapp/mytgz.tgz", job); * DistributedCache.addCacheArchive(new URI("/myapp/mytargz.tar.gz", job); * - * 3. Use the cached files in the {@link org.apache.hadoop.mapred.Mapper} - * or {@link org.apache.hadoop.mapred.Reducer}: + * 3. Use the cached files in the org.apache.hadoop.mapred.Mapper + * or org.apache.hadoop.mapred.Reducer: * * public static class MapClass extends MapReduceBase * implements Mapper<K, V, K, V> { @@ -109,8 +109,6 @@ * *

* - * @see org.apache.hadoop.mapred.JobConf - * @see org.apache.hadoop.mapred.JobClient */ public class DistributedCache { // cacheID to cacheStatus mapping diff --git a/src/java/org/apache/hadoop/io/SequenceFile.java b/src/java/org/apache/hadoop/io/SequenceFile.java index c2ee954097..7e653e0f4c 100644 --- a/src/java/org/apache/hadoop/io/SequenceFile.java +++ b/src/java/org/apache/hadoop/io/SequenceFile.java @@ -221,9 +221,6 @@ public static enum CompressionType { * Get the compression type for the reduce outputs * @param job the job config to look in * @return the kind of compression to use - * @deprecated Use - * {@link org.apache.hadoop.mapred.SequenceFileOutputFormat#getOutputCompressionType(org.apache.hadoop.mapred.JobConf)} - * to get {@link CompressionType} for job-outputs. */ @Deprecated static public CompressionType getCompressionType(Configuration job) { @@ -236,11 +233,6 @@ static public CompressionType getCompressionType(Configuration job) { * Set the compression type for sequence files. * @param job the configuration to modify * @param val the new compression type (none, block, record) - * @deprecated Use the one of the many SequenceFile.createWriter methods to specify - * the {@link CompressionType} while creating the {@link SequenceFile} or - * {@link org.apache.hadoop.mapred.SequenceFileOutputFormat#setOutputCompressionType(org.apache.hadoop.mapred.JobConf, org.apache.hadoop.io.SequenceFile.CompressionType)} - * to specify the {@link CompressionType} for job-outputs. - * or */ @Deprecated static public void setCompressionType(Configuration job, diff --git a/src/java/org/apache/hadoop/util/Shell.java b/src/java/org/apache/hadoop/util/Shell.java index 7964721982..b4ea72d604 100644 --- a/src/java/org/apache/hadoop/util/Shell.java +++ b/src/java/org/apache/hadoop/util/Shell.java @@ -58,10 +58,8 @@ public static String[] getGET_PERMISSION_COMMAND() { /** * Get the Unix command for setting the maximum virtual memory available * to a given child process. This is only relevant when we are forking a - * process from within the {@link org.apache.hadoop.mapred.Mapper} or the - * {@link org.apache.hadoop.mapred.Reducer} implementations - * e.g. Hadoop Pipes - * or Hadoop Streaming. + * process from within the Mapper or the Reducer implementations. + * see also Hadoop Pipes and Streaming. * * It also checks to ensure that we are running on a *nix platform else * (e.g. in Cygwin/Windows) it returns null. diff --git a/src/java/overview.html b/src/java/overview.html index 736da78aa1..c0cafc6408 100644 --- a/src/java/overview.html +++ b/src/java/overview.html @@ -24,9 +24,9 @@ Hadoop is a distributed computing platform.

Hadoop primarily consists of the Hadoop Distributed FileSystem +href="http://hadoop.apache.org/hdfs/">Hadoop Distributed FileSystem (HDFS) and an -implementation of the +implementation of the Map-Reduce programming paradigm.

@@ -153,7 +153,7 @@

Distributed operation

href="../core-default.html#fs.default.name">fs.default.name. -
  • The {@link org.apache.hadoop.mapred.JobTracker} (MapReduce master) +
  • The org.apache.hadoop.mapred.JobTracker (MapReduce master) host and port. This is specified with the configuration property mapred.job.tracker.