random在多进程下的奇怪表现

tornado源码process.py fork_process函数功能是根据cpu数等来启动多个进程, 使用得是os.fork, 但在子进程里,真正执行端口监听前调用了一个奇怪得函数_reseed_random,该函数实现如下:

def _reseed_random():
    if 'random' not in sys.modules:
        return
    import random
    # If os.urandom is available, this method does the same thing as
    # random.seed (at least as of python 2.6).  If os.urandom is not
    # available, we mix in the pid in addition to a timestamp.
    try:
        seed = long(hexlify(os.urandom(16)), 16)
    except NotImplementedError:
        seed = int(time.time() * 1000) ^ os.getpid()
    random.seed(seed)

这个函数好像没做什么有用得功能,只是调用了random.seed,为什么用调用random.seed呢,因为random得随机数种子是在import得时候就被确定了,默认应该是当前系统时间,而通过os.fork得到得子进程中,这个种子依然有效,所以在各子进程调用random会出现随机数一样得现象。看下面代码:

import random
import os, sys, time

def test():
    for i in range(10):
        if os.fork() == 0:
            import random
            print i, '---(1)--', random.random()
            print i, '---(2)--', random.random()
            return
    time.sleep(2)


def main():
    test()

if __name__ == '__main__':
    main()

=====================
执行结果:

$ python fixrandom.py 
0 ---(1)-- 0.977207861202
0 ---(2)-- 0.21855746022
9 ---(1)-- 0.977207861202
9 ---(2)-- 0.21855746022
1 ---(1)-- 0.977207861202
1 ---(2)-- 0.21855746022
8 ---(1)-- 0.977207861202
8 ---(2)-- 0.21855746022
7 ---(1)-- 0.977207861202
7 ---(2)-- 0.21855746022
6 ---(1)-- 0.977207861202
6 ---(2)-- 0.21855746022
2 ---(1)-- 0.977207861202
2 ---(2)-- 0.21855746022
4 ---(1)-- 0.977207861202
4 ---(2)-- 0.21855746022
5 ---(1)-- 0.977207861202
5 ---(2)-- 0.21855746022
3 ---(1)-- 0.977207861202
3 ---(2)-- 0.21855746022

可以看出所有进程得random都一致了,这就完全达不到random得期望了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值