File tree 3 files changed +17
-9
lines changed
3 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 7
7
import logging
8
8
import threading
9
9
10
- from ..dag import walk , ThreadedWalker
10
+ from ..dag import walk , ThreadedWalker , UnlimitedSemaphore
11
11
from ..plan import Step , build_plan , build_graph
12
12
13
13
import botocore .exceptions
@@ -53,7 +53,12 @@ def build_walker(concurrency):
53
53
"""
54
54
if concurrency == 1 :
55
55
return walk
56
- return ThreadedWalker (concurrency ).walk
56
+
57
+ semaphore = UnlimitedSemaphore ()
58
+ if concurrency > 1 :
59
+ semaphore = threading .Semaphore (concurrency )
60
+
61
+ return ThreadedWalker (semaphore ).walk
57
62
58
63
59
64
def plan (description , stack_action , context ,
Original file line number Diff line number Diff line change @@ -414,14 +414,12 @@ class ThreadedWalker(object):
414
414
allows, using threads.
415
415
416
416
Args:
417
- semaphore (threading.Semaphore, optional ): a semaphore object which
417
+ semaphore (threading.Semaphore): a semaphore object which
418
418
can be used to control how many steps are executed in parallel.
419
- By default, there is not limit to the amount of parallelism,
420
- other than what the graph topology allows.
421
419
"""
422
420
423
- def __init__ (self , semaphore = None ):
424
- self .semaphore = semaphore or UnlimitedSemaphore ()
421
+ def __init__ (self , semaphore ):
422
+ self .semaphore = semaphore
425
423
426
424
def walk (self , dag , walk_func ):
427
425
""" Walks each node of the graph, in parallel if it can.
Original file line number Diff line number Diff line change 5
5
6
6
from nose import with_setup
7
7
from nose .tools import nottest , raises
8
- from stacker .dag import DAG , DAGValidationError , ThreadedWalker
8
+ from stacker .dag import (
9
+ DAG ,
10
+ DAGValidationError ,
11
+ ThreadedWalker ,
12
+ UnlimitedSemaphore
13
+ )
9
14
import threading
10
15
11
16
dag = None
@@ -220,7 +225,7 @@ def test_transitive_deep_reduction():
220
225
@with_setup (blank_setup )
221
226
def test_threaded_walker ():
222
227
dag = DAG ()
223
- walker = ThreadedWalker ()
228
+ walker = ThreadedWalker (UnlimitedSemaphore () )
224
229
225
230
# b and c should be executed at the same time.
226
231
dag .from_dict ({'a' : ['b' , 'c' ],
You can’t perform that action at this time.
0 commit comments