def f():
     assert threading.current_thread() in e._threads
     secede()
     sleep(0.1)
     assert threading.current_thread() not in e._threads
     rejoin()
     assert len(e._threads) == 2
     assert threading.current_thread() in e._threads
     return threading.current_thread()
コード例 #2
0
 def f():
     assert threading.current_thread() in e._threads
     secede()
     sleep(0.1)
     assert threading.current_thread() not in e._threads
     rejoin()
     assert len(e._threads) == 2
     assert threading.current_thread() in e._threads
     return threading.current_thread()
コード例 #3
0
def worker_client(timeout=None, separate_thread=True):
    """Get client for this thread

    This context manager is intended to be called within functions that we run
    on workers.  When run as a context manager it delivers a client
    ``Client`` object that can submit other tasks directly from that worker.

    Parameters
    ----------
    timeout : Number or String
        Timeout after which to error out. Defaults to the
        ``distributed.comm.timeouts.connect`` configuration value.
    separate_thread : bool, optional
        Whether to run this function outside of the normal thread pool
        defaults to True

    Examples
    --------
    >>> def func(x):
    ...     with worker_client(timeout="10s") as c:  # connect from worker back to scheduler
    ...         a = c.submit(inc, x)     # this task can submit more tasks
    ...         b = c.submit(dec, x)
    ...         result = c.gather([a, b])  # and gather results
    ...     return result

    >>> future = client.submit(func, 1)  # submit func(1) on cluster

    See Also
    --------
    get_worker
    get_client
    secede
    """

    if timeout is None:
        timeout = dask.config.get("distributed.comm.timeouts.connect")

    timeout = dask.utils.parse_timedelta(timeout, "s")

    worker = get_worker()
    client = get_client(timeout=timeout)
    if separate_thread:
        duration = time() - thread_state.start_time
        secede()  # have this thread secede from the thread pool
        worker.loop.add_callback(
            worker.transition,
            worker.tasks[thread_state.key],
            "long-running",
            stimulus_id=f"worker-client-secede-{time()}",
            compute_duration=duration,
        )

    yield client

    if separate_thread:
        rejoin()
コード例 #4
0
 def f():
     secede()
     for i in range(5):
         rejoin()
     return 1
コード例 #5
0
 def f():
     secede()
     for i in range(5):
         rejoin()
     return 1