<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: MapReduce: 0 records written from Reducer in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161278#M21173</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2579/revathymurugesan.html" nodeid="2579" target="_blank"&gt;@Revathy Mourouguessane&lt;/A&gt;&lt;/P&gt;&lt;P&gt;excellent question, it's been a while since I'd touched MR and learned something new (KeyValueTextInputFormat). So firstly, assuming your data looks like this&lt;/P&gt;&lt;PRE&gt;&lt;A href="http://url12.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url12.com&lt;/A&gt; 36
&lt;A href="http://url11.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url11.com&lt;/A&gt; 4
&lt;A href="http://url20.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url20.com&lt;/A&gt; 36
&lt;A href="http://url1.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url1.com&lt;/A&gt; 256
&lt;A href="http://url1.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url1.com&lt;/A&gt; 267
&lt;/PRE&gt;&lt;P&gt;&lt;A href="https://hadoop.apache.org/docs/r2.7.1/api/org/apache/hadoop/mapred/KeyValueTextInputFormat.html" rel="nofollow noopener noreferrer" target="_blank"&gt;KeyValueInputFormat&lt;/A&gt; class states the following&lt;/P&gt;&lt;P&gt;An &lt;A href="https://hadoop.apache.org/docs/r2.7.1/api/org/apache/hadoop/mapred/InputFormat.html" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;CODE&gt;InputFormat&lt;/CODE&gt;&lt;/A&gt; for plain text files. Files are broken into lines. Either linefeed or carriage-return are used to signal end of line. Each line is divided into key and value parts by a separator byte. If no such a byte exists, the key will be the entire line and value will be empty.&lt;/P&gt;&lt;P&gt;You did not specify a separator in your job configuration. I made a few changes to your code&lt;/P&gt;&lt;PRE&gt;package com.hortonworks.mapreduce;

/**
 *
 * @author aervits
 */
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.input.KeyValueTextInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;

public class URLCount extends Configured implements Tool {

    public static void main(String[] args) throws Exception {
        int res = ToolRunner.run(new Configuration(), new URLCount(), args);
        System.exit(res);
    }

    @Override
    public int run(String[] args) throws Exception {
        Configuration conf = this.getConf();
        conf.set("mapreduce.input.keyvaluelinerecordreader.key.value.separator", " ");
        Job job = Job.getInstance(conf, "URLCount");
        job.setJarByClass(getClass());
        job.setInputFormatClass(KeyValueTextInputFormat.class);
        job.setOutputFormatClass(TextOutputFormat.class);
        job.setMapperClass(URLCountM.class);
        job.setReducerClass(URLCountR.class);
        job.setMapOutputKeyClass(Text.class);
        job.setMapOutputValueClass(IntWritable.class);
        job.setOutputKeyClass(IntWritable.class);
        job.setOutputValueClass(Text.class);
        FileInputFormat.addInputPath(job, new Path(args[0]));
        FileOutputFormat.setOutputPath(job, new Path(args[1]));
        return (job.waitForCompletion(true) == true ? 0 : -1);
    }
}
&lt;/PRE&gt;&lt;P&gt;notice in your tool runner, you don't terminate the job with expected result, then in your run method, I added setOutputKeyClass, setOutputValueClass, setMapOutputKeyClass and setMapOutputValueClass, I also set separator config, changed LongWritable to IntWritable. What does that mean? Well, not setting the separator means KeyValueTextInputFormat will treat the whole line as string and you don't receive any Value from Mapper function. So you'd think you're not getting results from reducer but in reality you weren't passing anything from mapper to reducer in the first place. Moving on,&lt;/P&gt;&lt;PRE&gt;package com.hortonworks.mapreduce;

import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;

/**
 *
 * @author aervits
 */
public class URLCountM extends Mapper&amp;lt;Text, Text,Text, IntWritable&amp;gt; {
    private static final Logger LOG = Logger.getLogger(URLCountM.class.getName());
   
 public final IntWritable iw = new IntWritable();
 
        @Override
 public void map(Text key, Text value, Context context){  
  try{
                    LOG.log(Level.INFO, "MAP_KEY: ".concat(key.toString()).concat(" MAP_VALUE: ".concat(value.toString())));
  context.write(key, new IntWritable(Integer.valueOf(value.toString())));
  }
  catch(NumberFormatException | IOException | InterruptedException e){
   LOG.log(Level.SEVERE, "ERROR: ".concat(e.toString()));
  }
 }
}
&lt;/PRE&gt;&lt;P&gt;notice I added logger, this is a better way of printing out to log expected keys and values&lt;/P&gt;&lt;PRE&gt;package com.hortonworks.mapreduce;

import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;

/**
 *
 * @author aervits
 */
public class URLCountR extends Reducer&amp;lt;Text, IntWritable, Text, IntWritable&amp;gt; {

    private static final Logger LOG = Logger.getLogger(URLCountR.class.getName());
    private IntWritable result = new IntWritable();

    @Override
    public void reduce(Text key, Iterable&amp;lt;IntWritable&amp;gt; values, Context context
    ) throws IOException, InterruptedException {
        int sum = 0;
        for (IntWritable val : values) {
            sum += val.get();
        }
        result.set(sum);
        LOG.log(Level.INFO, "REDUCER_VALUE: ".concat(result.toString()));
        context.write(key, result);
    }
}
&lt;/PRE&gt;&lt;P&gt;notice I'm printing to log again in reducer, just to keep sanity, below is what it looks like in the logs.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2436-mapper.png" style="width: 1440px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20682i91946C3ED6B73AFC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2436-mapper.png" alt="2436-mapper.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2434-reducer.png" style="width: 1438px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20683i3F68E08C18C45A8A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2434-reducer.png" alt="2434-reducer.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;finally the result looks like so&lt;/P&gt;&lt;PRE&gt;&lt;A href="http://url1.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url1.com&lt;/A&gt; 523
&lt;A href="http://url11.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url11.com&lt;/A&gt;        4
&lt;A href="http://url12.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url12.com&lt;/A&gt;        36
&lt;A href="http://url20.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url20.com&lt;/A&gt;        36
&lt;/PRE&gt;&lt;P&gt;finally, I published the code to my repo, grab it if you need a working example, I compiled it with HDP specific versions of Hadoop. Using our repositories vs Apache is recommended. Take a look at my pom.xml.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/dbist/URLCount" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/dbist/URLCount&lt;/A&gt;&lt;/P&gt;&lt;P&gt;One final hint would be to look at the statistics being printed out after job completes. I realized you were not sending data to Reducer when I ran your code and saw 0 records from mapper. This is what it should look like having only 5 lines of input data.&lt;/P&gt;&lt;PRE&gt;Map-Reduce Framework
  Map input records=5
  Map output records=5
  Map output bytes=103
&lt;/PRE&gt;&lt;BR /&gt;&lt;IMG src="https://community.cloudera.com/t5/image/serverpage/image-id/7607iCC2BC0FD9A75E2DE/image-size/large?v=1.0&amp;amp;px=999" border="0" alt="mapper.png" title="mapper.png" /&gt;</description>
    <pubDate>Sun, 18 Aug 2019 11:54:39 GMT</pubDate>
    <dc:creator>aervits</dc:creator>
    <dc:date>2019-08-18T11:54:39Z</dc:date>
    <item>
      <title>MapReduce: 0 records written from Reducer</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161275#M21170</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am executing the below MapReduce program for KeyValueTextInputFormat and get 0 records from reducer.
Could you help to identify the reasons.&lt;/P&gt;&lt;P style="margin-left: 20px;"&gt;&lt;A href="https://community.cloudera.com/legacyfs/online/attachments/2441-urlcount.txt"&gt;urlcount.txt&lt;/A&gt;
&lt;A href="https://community.cloudera.com/legacyfs/online/attachments/2442-urlcountm.txt"&gt;urlcountm.txt&lt;/A&gt;
&lt;A href="https://community.cloudera.com/legacyfs/online/attachments/2443-urlcountr.txt"&gt;urlcountr.txt
Data:
&lt;/A&gt;&lt;A href="http://url12.com" target="_blank"&gt;http://url12.com&lt;/A&gt;   36

&lt;A href="http://url11.com" target="_blank"&gt;http://url11.com&lt;/A&gt;    4

&lt;A href="http://url20.com" target="_blank"&gt;http://url20.com&lt;/A&gt;   36

&lt;A href="http://url1.com" target="_blank"&gt;http://url1.com&lt;/A&gt;   256

&lt;A href="http://url1.com" target="_blank"&gt;http://url1.com&lt;/A&gt;   267&lt;/P&gt;&lt;P style="margin-left: 20px;"&gt;Thanks in advance!!!&lt;/P&gt;</description>
      <pubDate>Sat, 27 Feb 2016 18:43:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161275#M21170</guid>
      <dc:creator>Eukrev</dc:creator>
      <dc:date>2016-02-27T18:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: MapReduce: 0 records written from Reducer</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161276#M21171</link>
      <description>&lt;P&gt;These questions are always almost impossible to answer. &lt;/P&gt;&lt;P&gt;I would add a couple System.outs to your mapper and reducer to see if data goes in or out. You can then see these messages in the Resourcemanager UI ( port 8088 ) -&amp;gt; Click on your task, click through attempt-&amp;gt;Mapper and reducer -&amp;gt; then logs. &lt;/P&gt;</description>
      <pubDate>Sun, 28 Feb 2016 06:19:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161276#M21171</guid>
      <dc:creator>bleonhardi</dc:creator>
      <dc:date>2016-02-28T06:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: MapReduce: 0 records written from Reducer</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161277#M21172</link>
      <description>&lt;P&gt;@&lt;A href="https://community.hortonworks.com/users/2579/revathymurugesan.html"&gt;Revathy Mourouguessane&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;Maybe I would  also suggest that you print out line after that command to see if it is generating the expected output!.&lt;/PRE&gt;</description>
      <pubDate>Sun, 28 Feb 2016 06:27:57 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161277#M21172</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2016-02-28T06:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: MapReduce: 0 records written from Reducer</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161278#M21173</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2579/revathymurugesan.html" nodeid="2579" target="_blank"&gt;@Revathy Mourouguessane&lt;/A&gt;&lt;/P&gt;&lt;P&gt;excellent question, it's been a while since I'd touched MR and learned something new (KeyValueTextInputFormat). So firstly, assuming your data looks like this&lt;/P&gt;&lt;PRE&gt;&lt;A href="http://url12.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url12.com&lt;/A&gt; 36
&lt;A href="http://url11.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url11.com&lt;/A&gt; 4
&lt;A href="http://url20.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url20.com&lt;/A&gt; 36
&lt;A href="http://url1.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url1.com&lt;/A&gt; 256
&lt;A href="http://url1.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url1.com&lt;/A&gt; 267
&lt;/PRE&gt;&lt;P&gt;&lt;A href="https://hadoop.apache.org/docs/r2.7.1/api/org/apache/hadoop/mapred/KeyValueTextInputFormat.html" rel="nofollow noopener noreferrer" target="_blank"&gt;KeyValueInputFormat&lt;/A&gt; class states the following&lt;/P&gt;&lt;P&gt;An &lt;A href="https://hadoop.apache.org/docs/r2.7.1/api/org/apache/hadoop/mapred/InputFormat.html" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;CODE&gt;InputFormat&lt;/CODE&gt;&lt;/A&gt; for plain text files. Files are broken into lines. Either linefeed or carriage-return are used to signal end of line. Each line is divided into key and value parts by a separator byte. If no such a byte exists, the key will be the entire line and value will be empty.&lt;/P&gt;&lt;P&gt;You did not specify a separator in your job configuration. I made a few changes to your code&lt;/P&gt;&lt;PRE&gt;package com.hortonworks.mapreduce;

/**
 *
 * @author aervits
 */
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.input.KeyValueTextInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;

public class URLCount extends Configured implements Tool {

    public static void main(String[] args) throws Exception {
        int res = ToolRunner.run(new Configuration(), new URLCount(), args);
        System.exit(res);
    }

    @Override
    public int run(String[] args) throws Exception {
        Configuration conf = this.getConf();
        conf.set("mapreduce.input.keyvaluelinerecordreader.key.value.separator", " ");
        Job job = Job.getInstance(conf, "URLCount");
        job.setJarByClass(getClass());
        job.setInputFormatClass(KeyValueTextInputFormat.class);
        job.setOutputFormatClass(TextOutputFormat.class);
        job.setMapperClass(URLCountM.class);
        job.setReducerClass(URLCountR.class);
        job.setMapOutputKeyClass(Text.class);
        job.setMapOutputValueClass(IntWritable.class);
        job.setOutputKeyClass(IntWritable.class);
        job.setOutputValueClass(Text.class);
        FileInputFormat.addInputPath(job, new Path(args[0]));
        FileOutputFormat.setOutputPath(job, new Path(args[1]));
        return (job.waitForCompletion(true) == true ? 0 : -1);
    }
}
&lt;/PRE&gt;&lt;P&gt;notice in your tool runner, you don't terminate the job with expected result, then in your run method, I added setOutputKeyClass, setOutputValueClass, setMapOutputKeyClass and setMapOutputValueClass, I also set separator config, changed LongWritable to IntWritable. What does that mean? Well, not setting the separator means KeyValueTextInputFormat will treat the whole line as string and you don't receive any Value from Mapper function. So you'd think you're not getting results from reducer but in reality you weren't passing anything from mapper to reducer in the first place. Moving on,&lt;/P&gt;&lt;PRE&gt;package com.hortonworks.mapreduce;

import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;

/**
 *
 * @author aervits
 */
public class URLCountM extends Mapper&amp;lt;Text, Text,Text, IntWritable&amp;gt; {
    private static final Logger LOG = Logger.getLogger(URLCountM.class.getName());
   
 public final IntWritable iw = new IntWritable();
 
        @Override
 public void map(Text key, Text value, Context context){  
  try{
                    LOG.log(Level.INFO, "MAP_KEY: ".concat(key.toString()).concat(" MAP_VALUE: ".concat(value.toString())));
  context.write(key, new IntWritable(Integer.valueOf(value.toString())));
  }
  catch(NumberFormatException | IOException | InterruptedException e){
   LOG.log(Level.SEVERE, "ERROR: ".concat(e.toString()));
  }
 }
}
&lt;/PRE&gt;&lt;P&gt;notice I added logger, this is a better way of printing out to log expected keys and values&lt;/P&gt;&lt;PRE&gt;package com.hortonworks.mapreduce;

import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;

/**
 *
 * @author aervits
 */
public class URLCountR extends Reducer&amp;lt;Text, IntWritable, Text, IntWritable&amp;gt; {

    private static final Logger LOG = Logger.getLogger(URLCountR.class.getName());
    private IntWritable result = new IntWritable();

    @Override
    public void reduce(Text key, Iterable&amp;lt;IntWritable&amp;gt; values, Context context
    ) throws IOException, InterruptedException {
        int sum = 0;
        for (IntWritable val : values) {
            sum += val.get();
        }
        result.set(sum);
        LOG.log(Level.INFO, "REDUCER_VALUE: ".concat(result.toString()));
        context.write(key, result);
    }
}
&lt;/PRE&gt;&lt;P&gt;notice I'm printing to log again in reducer, just to keep sanity, below is what it looks like in the logs.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2436-mapper.png" style="width: 1440px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20682i91946C3ED6B73AFC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2436-mapper.png" alt="2436-mapper.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2434-reducer.png" style="width: 1438px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20683i3F68E08C18C45A8A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2434-reducer.png" alt="2434-reducer.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;finally the result looks like so&lt;/P&gt;&lt;PRE&gt;&lt;A href="http://url1.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url1.com&lt;/A&gt; 523
&lt;A href="http://url11.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url11.com&lt;/A&gt;        4
&lt;A href="http://url12.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url12.com&lt;/A&gt;        36
&lt;A href="http://url20.com" target="_blank" rel="nofollow noopener noreferrer"&gt;http://url20.com&lt;/A&gt;        36
&lt;/PRE&gt;&lt;P&gt;finally, I published the code to my repo, grab it if you need a working example, I compiled it with HDP specific versions of Hadoop. Using our repositories vs Apache is recommended. Take a look at my pom.xml.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/dbist/URLCount" target="_blank" rel="nofollow noopener noreferrer"&gt;https://github.com/dbist/URLCount&lt;/A&gt;&lt;/P&gt;&lt;P&gt;One final hint would be to look at the statistics being printed out after job completes. I realized you were not sending data to Reducer when I ran your code and saw 0 records from mapper. This is what it should look like having only 5 lines of input data.&lt;/P&gt;&lt;PRE&gt;Map-Reduce Framework
  Map input records=5
  Map output records=5
  Map output bytes=103
&lt;/PRE&gt;&lt;BR /&gt;&lt;IMG src="https://community.cloudera.com/t5/image/serverpage/image-id/7607iCC2BC0FD9A75E2DE/image-size/large?v=1.0&amp;amp;px=999" border="0" alt="mapper.png" title="mapper.png" /&gt;</description>
      <pubDate>Sun, 18 Aug 2019 11:54:39 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161278#M21173</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2019-08-18T11:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: MapReduce: 0 records written from Reducer</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161279#M21174</link>
      <description>&lt;P&gt;Thank you!!! &lt;/P&gt;&lt;P&gt;I am happy to join this network for the level of support being provided. It keeps me motivated!!!&lt;/P&gt;</description>
      <pubDate>Sun, 28 Feb 2016 13:23:03 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/MapReduce-0-records-written-from-Reducer/m-p/161279#M21174</guid>
      <dc:creator>Eukrev</dc:creator>
      <dc:date>2016-02-28T13:23:03Z</dc:date>
    </item>
  </channel>
</rss>

