Code Monkey home page Code Monkey logo

hadoop_mapreduce's Introduction

hadoop_mapreduce

This library produces list of top 10 similar sites for any given site. Similarity is calculated based on the common tags for the given two sites

Input:

List of pairs, where each pair is presented by site and tag. In each pair site comes first, followed by its tag. The two are separated by tab. Each pair comes on a new line

Assumptions:

  • Input pairs are unique

ENV for compilation:

$HADOOP_HOME = /home/ubuntu/hadoop-3.1.1/ $CLASSPATH = $HADOOP_HOME/share/hadoop/mapreduce/hadoop-mapreduce-client-core-3.1.1.jar:$HADOOP_HOME/share/hadoop/mapreduce/hadoop-mapreduce-client-common-3.1.1.jar:$HADOOP_HOME/share/hadoop/common/hadoop-common-3.1.1.jar:/home/ubuntu/IdeaProjects/SimilarSites/:$HADOOP_HOME/lib/

Output:

Lines of triples:

  • Each triple is presented by the site, its similar site and the number of common tags, separated by tab
  • Up to 10 lines per site
  • Lines of the same site are groupped together and sorted in descending order by the common tags number
  • If a site has no similar sites it will not appear in the output

Algorithm:

The work is done with 3 jobs:

  • Job1 (TagToSite) takes the input and transforms it into pairs of sites sharing the same tag, where each pair stands for one common tag
  • Job2 (SiteToSiteCount) counts the number of common tags per pair
  • Job3 (TopSimilarSites) groups the pairs by the first site in pair, and sorts them in descending order by number of common tags

hadoop_mapreduce's People

Contributors

yuliabaron avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.