##// END OF EJS Templates
Merge pull request #2808 from minrk/parallel_wait...
Merge pull request #2808 from minrk/parallel_wait improve patience for slow Hub in client tests adds a first step in `_wait_for_idle`, where it waits for all tasks to arrive before waiting for no tasks to be running. On a super slow machine, it was possible for `_wait_for_idle` to return prematurely, before tasks had even started. closes #2807

File last commit:

r6455:15863dc1
r9181:9db88115 merge
Show More
helloworld.py
35 lines | 596 B | text/x-python | PythonLexer
# <nbformat>2</nbformat>
# <markdowncell>
# # Distributed hello world
#
# Originally by Ken Kinder (ken at kenkinder dom com)
# <codecell>
from __future__ import print_function
from IPython.parallel import Client
# <codecell>
rc = Client()
view = rc.load_balanced_view()
# <codecell>
def sleep_and_echo(t, msg):
import time
time.sleep(t)
return msg
# <codecell>
world = view.apply_async(sleep_and_echo, 3, 'World!')
hello = view.apply_async(sleep_and_echo, 2, 'Hello')
# <codecell>
print("Submitted tasks:", hello.msg_ids, world.msg_ids)
print(hello.get(), world.get())