Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/277.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 带paramiko的MapReduce如何在流媒体时打印标准输出_Python_Hadoop_Mapreduce_Paramiko - Fatal编程技术网

Python 带paramiko的MapReduce如何在流媒体时打印标准输出

Python 带paramiko的MapReduce如何在流媒体时打印标准输出,python,hadoop,mapreduce,paramiko,Python,Hadoop,Mapreduce,Paramiko,我已经使用paramiko创建了一个小Python脚本,它允许我运行MapReduce作业,而无需使用PuTTY或cmd窗口来启动作业。这很有效,只是在工作完成之前我无法看到stdout。我如何设置它,以便在生成stdout时可以看到它的每一行,就像我可以通过cmd窗口看到一样 这是我的剧本: import paramiko # Define connection info host_ip = 'xx.xx.xx.xx' user = 'xxxxxxxxx' pw = 'xxxxxxxxx'

我已经使用paramiko创建了一个小Python脚本,它允许我运行MapReduce作业,而无需使用PuTTY或cmd窗口来启动作业。这很有效,只是在工作完成之前我无法看到stdout。我如何设置它,以便在生成stdout时可以看到它的每一行,就像我可以通过cmd窗口看到一样

这是我的剧本:

import paramiko

# Define connection info
host_ip = 'xx.xx.xx.xx'
user = 'xxxxxxxxx'
pw = 'xxxxxxxxx'

# Commands
list_dir = "ls /nfs_home/appers/cnielsen -l"
MR = "hadoop jar /opt/cloudera/parcels/CDH/lib/hadoop-0.20-mapreduce/contrib/streaming/hadoop-streaming.jar -files /nfs_home/appers/cnielsen/product_lookups.xml -file /nfs_home/appers/cnielsen/Mapper.py -file /nfs_home/appers/cnielsen/Reducer.py -mapper '/usr/lib/python_2.7.3/bin/python Mapper.py test1' -file /nfs_home/appers/cnielsen/Process.py -reducer '/usr/lib/python_2.7.3/bin/python Reducer.py' -input /nfs_home/appers/extracts/*/*.xml -output /user/loc/output/cnielsen/test51"
getmerge = "hadoop fs -getmerge /user/loc/output/cnielsen/test51 /nfs_home/appers/cnielsen/test_010716_0.txt"

client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect(host_ip, username=user, password=pw)
##stdin, stdout, stderr = client.exec_command(list_dir)
##stdin, stdout, stderr = client.exec_command(getmerge)
stdin, stdout, stderr = client.exec_command(MR)

print "Executing command..."

for line in stdout:
    print '... ' + line.strip('\n')
for l in stderr:
    print '... ' + l.strip('\n')
client.close()

这段代码隐式调用stdout.read(),该函数将一直阻塞到EOF。因此,您必须分块读取stdout/stderr以立即获得输出。尤其是的修改版本应该可以帮助您解决此问题。我建议您根据您的用例进行调整,以防止出现一些常见的延迟情况

下面是一个改编自


这似乎是由于缓冲而发生的。不知何故,默认的行缓冲被覆盖。您能否显示如何运行此脚本以及主机环境详细信息?我正在Windows 7上的PyScripter IDE中运行此脚本。
sin,sout,serr = ssh.exec_command("while true; do uptime; done")

def line_buffered(f):
    line_buf = ""
    while not f.channel.exit_status_ready():
        line_buf += f.read(1)
        if line_buf.endswith('\n'):
            yield line_buf
            line_buf = ''

for l in line_buffered(sout):   # or serr
    print l