摘要: from:https://stackoverflow.com/questions/366682/how-to-limit-execution-time-of-a-function-call-in-python当有些函数执行时间过长,影响整个程序运行时,可以使用此方法进行限制,超时会报错。 from __future__ import with_statement # Required in 2.... 阅读全文
posted @ 2017-07-03 22:23 Go_Forward 阅读(8449) 评论(0) 推荐(0)
摘要: https://stackoverflow.com/questions/12179271/meaning-of-classmethod-and-staticmethod-for-beginner 1.classmethod还可以调用内部的classmethod和staticmethod(是的可以调用 阅读全文
posted @ 2017-06-30 10:11 Go_Forward 阅读(360) 评论(0) 推荐(0)
摘要: from:http://www.cnblogs.com/kerrycode/p/4717498.html 在 CentOS release 6.6 上启动sendmail服务时发现服务启动过程非常慢,基本上要耗费3分多钟。有点纳闷:什么原因导致sendmail启动这么慢?搜索了这方面的一些资料,结合 阅读全文
posted @ 2017-06-23 17:27 Go_Forward 阅读(266) 评论(0) 推荐(0)
摘要: from: http://www.jianshu.com/p/b9677e9e56ec Thinkpad大概是对Linux支持最好的笔记本了,Ubuntu大概是对硬件支持最好的Linux发行版了。Ubuntu16.04已经可以支持最新的2016年的Thinkpad X1 Carbon的CPU,但是还 阅读全文
posted @ 2017-06-12 10:02 Go_Forward 阅读(2985) 评论(0) 推荐(0)
摘要: https://stackoverflow.com/questions/36898130/python-how-to-insert-null-mysql-values You are inserting the string 'NULL', not the NULL value. If these 阅读全文
posted @ 2017-06-06 11:32 Go_Forward 阅读(1884) 评论(0) 推荐(0)
摘要: from: http://www.jasongj.com/2015/01/02/Kafka%E6%B7%B1%E5%BA%A6%E8%A7%A3%E6%9E%90/ 一种非常常用的选举leader的方式是“majority vote”(“少数服从多数”),但Kafka并未采用这种方式。这种模式下,如 阅读全文
posted @ 2017-05-18 21:35 Go_Forward 阅读(1315) 评论(0) 推荐(0)
摘要: from: http://stackoverflow.com/questions/36579815/kafka-python-how-do-i-commit-a-partition 如果consumer.commit()不可以,可以使用seek(),使用seek()时,如果有多个partition, 阅读全文
posted @ 2017-05-18 09:01 Go_Forward 阅读(4823) 评论(0) 推荐(0)
摘要: from: http://blog.csdn.net/WxyangID/article/details/52981262 之前是按照http://blog.csdn.net/yunwei888/article/details/51991185这篇博客进行安装的,但是之后发生了wine-qqintl 阅读全文
posted @ 2017-05-16 09:18 Go_Forward 阅读(302) 评论(0) 推荐(0)
摘要: 1.安装: 依赖java环境,须首先安装java运行环境,并正确设置路径。 确保kafka已经安装,且版本合适。 修改配置文件: kafka-manager.zkhosts="你的zookeeper地址:端口/namespace" 按照kafka-manager的github说明编译,形成压缩包,解 阅读全文
posted @ 2017-05-09 07:15 Go_Forward 阅读(3495) 评论(2) 推荐(0)
摘要: 一般有两个原因: 1.磁盘空间不足 2.inode不足 用df -h查看磁盘空间使用情况 用df -i查看inode使用情况 阅读全文
posted @ 2017-05-09 06:53 Go_Forward 阅读(361) 评论(0) 推荐(0)