Giter Site home page Giter Site logo

cse223b-lab1's Introduction

	CSE223B Lab1
	Jian Xu, A53026658
	[email protected]


********	HOW TO RUN	********

This lab is written in Python, since I don't know how to program in Java. Hope it does not matter.

The lab consists of two files, InvertIndex_map.py, for mapper; and InvertIndex_reduce.py, for reducer.

Before you run the job, change the mode of the two files:
$ chmod 777 InvertedIndex/*

Now you can run the job with following command:
$ $HADOOP_PATH/bin/hadoop jar $HADOOP_PATH/contrib/streaming/hadoop*streaming*jar -input /user/$USER/II_input/* -output /user/$USER/II_output -file InvertedIndex/InvertIndex_map.py -mapper InvertedIndex/InvertIndex_map.py -file InvertedIndex/InvertIndex_reduce.py -reducer InvertedIndex/InvertIndex_reduce.py

Modify the path accordingly. I've also attached the output file II_output in the tar file.


********	EXPLAINATION      ********

InvertIndex_map.py:
This file read from stdin, split the line with space, and for each word, get the filename of current file, and process the word: first low the case, only keep following character valid:
a-z, 0-9, ' -
And remove all the other characters.
Finally, print the output to stdout: key is word, and value is filename.

InvertIndex_reduce.py:
This file read from stdin, get the (key, value), and insert the (key, value) into a dictionary if key is not in it or the (key, value) in the dictionary does not contain the new value.

cse223b-lab1's People

Contributors

andiry avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

newatyork

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.