III. Spark Primer: 5 most-used word found in text, excluding commonly used discontinued words

Source: Internet
Author: User

Package Com.yl.wordcount

Import Java.io.File

Import Org.apache.spark. {sparkconf, Sparkcontext}

Import Scala.collection.Iterator
Import Scala.io.Source

/**
* WordCount to sort and exclude discontinued words
*/
Object Wordcountstopwords {

def main (args:array[string]) {
Val conf = new sparkconf (). Setmaster ("spark://localhost:7077"). Setappname ("WordCount")
Val sc = new Sparkcontext (conf)

Val outFile = "/users/admin/spark/sparkoutput"
var stopwords:iterator[string] = null
Val stopwordsfile = new File ("/users/admin/src" + "/tingyongci.txt")

if (stopwordsfile.exists ()) {
Stopwords = Source.fromfile (stopwordsfile). getlines
}
Val stopwordlist = stopwords.tolist

Val textfile = Sc.textfile ("/users/admin/spark/spark-1.5.1-bin-hadoop2.4/readme.md")
Val result = Textfile.flatmap (_.split ("")). Filter (!_.isempty). Filter (!stopwordlist.contains (_)). Map ((_,1)). Reducebykey (_+_). Map{case (Word,count) = (Count,word)}.sortbykey (false)

Result.saveastextfile (OutFile)
}

}

Iii. Spark Getting Started: 5 most used word found in text, excluding common inactive words

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.