Package com.digital

Examples of com.digital.DigitalUrlGetter


      Text value,
      org.apache.hadoop.mapreduce.Mapper<Object, Text, Text, Text>.Context context)
      throws java.io.IOException, InterruptedException {
    LoggerUtils.log(UrlGettingMapper.class.getName(), "map key:" + key
        + " value:" + value);
    DigitalUrlGetter digitalUrlGetter = new DigitalUrlGetter();
    List<UrlData> datas = digitalUrlGetter.getUrlData();
    for (UrlData data : datas) {
      Text outputKey = new Text();
      outputKey.set(data.getUrlName());
      Text outputValue = new Text();
      outputValue.set(data.toString());
View Full Code Here

TOP

Related Classes of com.digital.DigitalUrlGetter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.