• 理解MapReduce计算构架


    1.编写map函数,reduce函数

    (1)创建mapper.py文件

    cd /home/hadoop/wc 

    gedit mapper.p

    (2)mapper函数

    #!/usr/bin/env python
    import sys
    for i in stdin:
        i = i.strip()
        words = i.split()
        for word in words:
        print '%s	%s' % (word,1)

    (3)reducer.py文件创建

    cd /home/hadoop/wc

    gedit reducer.py

    (4)reducer函数
    #!/usr/bin/env python
    from operator import itemgetter
    import sys
    
    current_word = None
    current_count = 0
    word = None
    
    for i in stdin:
        i = i.strip()
        word, count = i.split('	',1)
        try:
        count = int(count)
        except ValueError:
        continue
    
        if current_word == word:
        current_count += count 
        else:
        if current_word:
            print '%s	%s' % (current_word, current_count)
        current_count = count
        current_word = word
    
    if current_word == word:
        print '%s	%s' % (current_word, current_count)



    2.将其权限作出相应修改
    chmod a+x /home/hadoop/mapper.py
    echo "foo foo quux labs foo bar quux" | /home/hadoop/wc/mapper.py
    echo "foo foo quux labs foo bar quux" | /home/hadoop/wc/mapper.py | sort -k1,1 | /home/hadoop/wc/reducer.p


    3.本机上测试运行代码

    放到HDFS上运行

    下载并上传文件到hdfs上

    cd  /home/hadoop/wc
    wget http://www.gutenber.org/files/5000/5000-8.txt
    wget http://www.gutenber.org/cache/epub/20417/pg20417.txt

    cd /usr/hadoop/wc
    hdfs dfs -put /home/hadoop/hadoop/gutenberg/*.txt /user/hadoop/input

    
    
  • 相关阅读:
    [Python]执行Linux命令
    [Linux]命令返回值以及错误对照表
    [ERROR]pip insall pyodbc
    [CentOS7]安装ODBC Driver 17 for SQL Server
    [Python]获取字典所有值
    [Python]判断变量类型是否为List列表
    十分钟了解pandas
    Docker容器化技术(上)
    C语言位域
    PAT基础级-钻石段位样卷2-7-7 危险品装箱 (25 分)
  • 原文地址:https://www.cnblogs.com/tyx123/p/9026182.html
Copyright © 2020-2023  润新知