后台运行python程序 遇到缓冲区问题

From: http://www.iteye.com/topic/867446

环境:linux

 

一段执行时间很长的程序(用python做hive客户端执行mapreduce) 在linux后台执行,把结果输出到某文件:

 

 

Python代码  收藏代码
  1. python xxx.py > log.log&   

 

 遇到的问题,程序没报错,文件里却什么都没有,没有输入进去。为什么呢?

于是我首先尝试用:

 

 

Java代码  收藏代码
  1. nohup python xxx.py > log.log &  

 

预料之中 还是不行。

 

于是我做实验:

 

写了个test.py:

 

Java代码  收藏代码
  1. import sys,time  
  2. from threading import Thread  
  3. class worker(Thread):  
  4.      def run(self):  
  5.          for x in xrange(0,111):  
  6.              print x  
  7.              time.sleep(1)  
  8. def run():  
  9.      worker().start()  
  10. if __name__ == '__main__':  
  11.     run()  

 每秒打印一次

我直接用python text.py 执行  没问题  每秒输出一个数

但我在后台执行:

 

Python代码  收藏代码
  1. python test.py > log.log&   

 

还是不行。开始不输出  直到程序执行完,一次性的写到log.log文件了。

为什么呢? 

原因可能是python 的print 先写到缓冲区了,还没flush到文件。

于是加了一行“ sys.stdout.flush()” --在每次print后都flush一次。:

 

Java代码  收藏代码
  1. import sys,time  
  2. from threading import Thread  
  3. class worker(Thread):  
  4.      def run(self):  
  5.          for x in xrange(0,111):  
  6.              print x  
  7.              sys.stdout.flush()    
  8.              time.sleep(1)  
  9. def run():  
  10.      worker().start()  
  11. if __name__ == '__main__':  
  12.     run()  
 

问题解决。


===============================================================================

还可以:python-u xxx.py > log.log & ,再细看下帮助文档:man python

PYTHON(1)                                                            PYTHON(1)


NAME
       python - an interpreted, interactive, object-oriented programming language


SYNOPSIS
       python [ -d ] [ -E ] [ -h ] [ -i ] [ -m module-name ] [ -O ]
              [ -Q argument ] [ -S ] [ -t ] [ -u ]
              [ -v ] [ -V ] [ -W argument ] [ -x ] [ -3 ]
              [ -c command | script | - ] [ arguments ]


DESCRIPTION
       Python  is  an  interpreted,  interactive, object-oriented programming language that combines remarkable power with very clear syntax.
       For an introduction to programming in Python you are referred to the Python Tutorial.  The Python Library Reference documents built-in
       and  standard types, constants, functions and modules.  Finally, the Python Reference Manual describes the syntax and semantics of the
       core language in (perhaps too) much detail.  (These documents may be located via the INTERNET RESOURCES below; they may  be  installed
       on your system as well.)


       Python’s  basic  power  can  be  extended  with your own modules written in C or C++.  On most systems such modules may be dynamically
       loaded.  Python is also adaptable as an extension language for existing applications.  See the internal documentation for hints.


       Documentation for installed Python modules and packages can be viewed by running the pydoc program.


COMMAND LINE OPTIONS
       -c command
              Specify the command to execute (see next section).  This terminates the option list (following options are passed as  arguments
              to the command).


       -d     Turn on parser debugging output (for wizards only, depending on compilation options).


       -E     Ignore environment variables like PYTHONPATH and PYTHONHOME that modify the behavior of the interpreter.


       -h     Prints the usage for the interpreter executable and exits.


       -i     When  a  script  is passed as first argument or the -c option is used, enter interactive mode after executing the script or the
              command.  It does not read the $PYTHONSTARTUP file.  This can be useful to inspect global variables or a  stack  trace  when  a
              script raises an exception.


       -m module-name
              Searches sys.path for the named module and runs the corresponding .py file as a script.

      -u     Force stdin, stdout and stderr to be totally unbuffered.  On systems where it matters, also put stdin,  stdout  and  stderr  in

              binary  mode.   Note  that  there  is  internal  buffering in xreadlines(), readlines() and file-object iterators ("for line in
              sys.stdin") which is not influenced by this option.  To work around this, you will want to use "sys.stdin.readline()" inside  a
              "while 1:" loop.


       -v     Print  a  message  each  time a module is initialized, showing the place (filename or built-in module) from which it is loaded.
              When given twice, print a message for each file that is checked for when searching for a module.  Also provides information  on
              module cleanup at exit.


       -V     Prints the Python version number of the executable and exits.




本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/406567.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[nodejs][html5][css3][js] 个人网站上线

各个功能详细代码 http://www.cnblogs.com/wangxinsheng/p/4263591.html 2015年1月31日 --- 虽然比较懒,但终于匆忙的弄了个个人网站上线,没有博客功能。。。只有些数据抓取,百度地图,视屏游戏功能。 可是heroku站点在国内的速度超…

疯狂喷气机

2/3D游戏:2D 辅助插件:原生 游戏制作难度系数:初级 游戏教程网址:http://www.raywenderlich.com/69392/make-game-like-jetpack-joyride-unity-2d-part-1 1、控制摄像机跟随人物移动 public GameObject targetObject; //目标对象p…

elementui表格-改变某一列的样式

cellStyle({ row, column, rowIndex, columnIndex }) {if (columnIndex 0) {// 指定列号return ‘padding:0‘} else {return ‘‘} },

正则表达式基础(一)

From: http://www.usidcbbs.com/read-htm-tid-1457.html Perl 中的正则表达式 正则表达式是 Perl 语言的一大特色,也是 Perl 程序中的一点难点,不过如果大家能够很好的掌握他,就可以轻易地用正则表达式来完成字符串处理的任务&#xff0…

vue element项目常见实现表格内部可编辑功能

目录 前言 正文 1.简单表格行内内部可编辑 2. 数据从后端取得表格行内可编辑 3.批量表格整体的可编辑 结语 前言 后台系统都是各种表格表单编辑,整理了下常见的几种实现表格编辑的方式,希望有用。使用框架:vueelement 表格行内内部可编辑 数…

Yii2.0 技巧总结

View部分 1. 使用ActiveField中的hint生成提示文字 <? $form->field($model, freightAddedFee)->textInput()->hint(大于0的整数) ?> 2. 文本框添加placeholder属性&#xff0c;其实这个本来就是html5带的属性。 <? $form->field($model, mobile, $inp…

【JavaScript】appendChild一个的注意点之会删除原dom树节点

最近在研究学习vue原理&#xff0c;其中使用createDocumentFragment()方法&#xff0c;是用来创建一个虚拟的节点对象&#xff0c;那问题来了&#xff0c;创建了虚拟dom树&#xff0c;且最后只渲染了虚拟dom树里面的节点&#xff0c;那原dom树的节点去哪里了&#xff0c;查阅了…

正则表达式图书

From: http://www.usidcbbs.com/read-htm-tid-1457-page-2.html 网文 vs 书藉 只要是知道“正则”这个词的&#xff0c;上网搜集个把资料&#xff0c;应该就不是问题吧。我获得正则消息的网絡渠道有这样几个&#xff0c;以质量从高到低排序&#xff1a;dilicious标签&#xff0…

Spring.NET学习笔记12——面向切面编程(基础篇) Level 300

AOP即面向切面编程(Aspect Oriented Programming的缩写)&#xff0c;是OOP(面向对象编程)的一种延续形式。是通过预编译方式和运行期动态代理实现在不修改源代码的情况下给程序动态统一添加功能的一种技术&#xff0c;它从一个不同于OOP的角度来看待程序的结构&#xff1a;OOP将…

vue-cli3使用svg图标的详细步骤

1.安装依赖 npm install svg-sprite-loader -D2.在vue.config.js里添加配置 module.exports{chainWebpack: config > {const svgRule config.module.rule("svg"); svgRule.uses.clear();svgRule.use("svg-sprite-loader").loader("svg-sprite…

python模拟登陆163邮箱并获取通讯录

From: http://hi.baidu.com/fc_lamp/blog/item/2466d1096fcc532de8248839.html python模拟登陆163邮箱并获取通讯录 #-*- coding:UTF-8 -*-import urllib,urllib2,cookielibimport xml.etree.ElementTree as etree #xml解析类class Login163:#伪装browserheader {User-Agent:…

【BZOJ】【3850】ZCC Loves Codefires

贪心 就跟NOIP2012国王游戏差不多&#xff0c;考虑交换相邻两题的位置&#xff0c;对其他题是毫无影响的&#xff0c;然后看两题顺序先后哪个更优。sort即可。 WA了一次的原因&#xff1a;虽然ans开的是long long&#xff0c;但是在这一句:anstime*a[i].k;时&#xff0c;还是需…

Element-UI中关于table表格的那些骚操作

最近的项目中使用到element-ui组件库&#xff0c;由于做的是后台管理系统&#xff0c;所以经常需要操作表格&#xff0c;编辑样式的过程中遇到一些问题&#xff0c;官网针对table给出了很多的api&#xff0c;自己可以自定义&#xff0c;基本能满足产品需求&#xff0c;但是没有…

Qt Creator 使用技巧

From: http://www.developer.nokia.com/Community/Wiki/Qt_Creator_%E4%BD%BF%E7%94%A8%E6%8A%80%E5%B7%A7 Qt Creator 使用技巧 简介 Qt Creator 作为Qt 开发的IDE&#xff0c;支持Qt 开发&#xff0c;及QML开发&#xff0c;能很好的发挥Qt 跨平台的特点&#xff0c;这里列举一…

前端利用CryptoJS进行AES对称加解密(16进制编码)

加密相关JS https://www.npmjs.com/package/crypto-js 引入JS 使用示例&#xff1a; 附上原文代码方便大家自由使用 //加密 let key CryptoJS.enc.Utf8.parse(123456789qwertyu);//密钥必须是16位&#xff0c;且避免使用保留字符 let encryptedData CryptoJS.AES.encry…