Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to share data when using the multiprocessing module (python 2.7, Linux), I got different results when using slightly different code:

import os
import time
from multiprocessing import Process, Manager

def editDict(d):
    d[1] = 10
    d[2] = 20
    d[3] = 30


pnum = 3
m = Manager()

1st version:

mlist = m.list()
for i in xrange(pnum):
    mdict = m.dict()
    mlist.append(mdict)
    p = Process(target=editDict,args=(mdict,))
    p.start()

time.sleep(2)
print 'after process finished', mlist

This generates:

after process finished [{1: 10, 2: 20, 3: 30}, {1: 10, 2: 20, 3: 30}, {1: 10, 2: 20, 3: 30}]

2nd version:

mlist = m.list([m.dict() for i in xrange(pnum)]) # main difference to 1st version
for i in xrange(pnum):
    p = Process(target=editDict,args=(mlist[i],))
    p.start()
time.sleep(2)
print 'after process finished', mlist

This generates:

after process finished [{}, {}, {}]

I do not understand why the outcome is so different.

share|improve this question
on which platform are you running this test ? multiprocessing behave differently on linux and on windows, and there are specific requirements on windows than you currently do not meet. – Adrien Plisson Dec 12 '11 at 15:12
Hi, Adrien: Linux 2.6.27.45-0.1-default x86_64 GNU/Linux – Hongbo Zhu Dec 12 '11 at 15:14

1 Answer

up vote 5 down vote accepted

It is because you access the variable by the list index the second time, while the first time you pass the actual variable. As stated in the multiprocessing docs:

Modifications to mutable values or items in dict and list proxies will not be propagated through the manager, because the proxy has no way of knowing when its values or items are modified.

This means that, to keep track of items that are changed within a container (dictionary or list), you must reassign them after each edit. Consider the following change (for explanatory purposes, I'm not claiming this to be clean code):

def editDict(d, l, i):
    d[1] = 10
    d[2] = 20
    d[3] = 30
    l[i] = d

mlist = m.list([m.dict() for i in xrange(pnum)])
for i in xrange(pnum):
    p = Process(target=editDict,args=(mlist[i], mlist, i,))
    p.start()

If you will now print mlist, you'll see that is has the same output as your first attempt. The reassignment will allow the container proxy to keep track of the updated item again.

Your main issue in this case is that you have a dict (proxy) inside a list proxy: updates to the contained container won't be noticed by the manager, and hence not have the changes you expected it to have. Note that the dictionary itself will be updated in the second example, but you just don't see it since the manager didn't sync.

share|improve this answer
Fantastic! Thank you very much, jro! – Hongbo Zhu Dec 13 '11 at 15:03
@HongboZhu Then why not vote up? – chance Dec 13 '11 at 17:03
@chance : I thought giving it a tick (accepting the answer) is more important than a voting-up. But I guess the answer deserves both. Done – Hongbo Zhu Dec 15 '11 at 7:20
@HongboZhu Well, to my understanding, the answer should be vote up if it is helpful or valuable; and it should be selected when you think it is exactly what you want. Sometimes you need do both :) – chance Dec 15 '11 at 9:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.