1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
|
# Copyright (C) 2014 Yahoo! Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import functools
import logging
import queue
import threading
import time
from concurrent import futures as _futures
from concurrent.futures import process as _process
from debtcollector import removals
from futurist import _green
from futurist import _thread
from futurist import _utils
TimeoutError = _futures.TimeoutError
CancelledError = _futures.CancelledError
LOG = logging.getLogger(__name__)
class RejectedSubmission(Exception):
"""Exception raised when a submitted call is rejected (for some reason)."""
# NOTE(harlowja): Allows for simpler access to this type...
Future = _futures.Future
class _Gatherer:
def __init__(self, submit_func, lock_factory, start_before_submit=False):
self._submit_func = submit_func
self._stats_lock = lock_factory()
self._stats = ExecutorStatistics()
self._start_before_submit = start_before_submit
@property
def statistics(self):
return self._stats
def clear(self):
with self._stats_lock:
self._stats = ExecutorStatistics()
def _capture_stats(self, started_at, fut):
"""Capture statistics
:param started_at: when the activity the future has performed
was started at
:param fut: future object
"""
# If time somehow goes backwards, make sure we cap it at 0.0 instead
# of having negative elapsed time...
elapsed = max(0.0, _utils.now() - started_at)
with self._stats_lock:
# Use a new collection and lock so that all mutations are seen as
# atomic and not overlapping and corrupting with other
# mutations (the clone ensures that others reading the current
# values will not see a mutated/corrupted one). Since futures may
# be completed by different threads we need to be extra careful to
# gather this data in a way that is thread-safe...
(failures, executed, runtime, cancelled) = (self._stats.failures,
self._stats.executed,
self._stats.runtime,
self._stats.cancelled)
if fut.cancelled():
cancelled += 1
else:
executed += 1
if fut.exception() is not None:
failures += 1
runtime += elapsed
self._stats = ExecutorStatistics(failures=failures,
executed=executed,
runtime=runtime,
cancelled=cancelled)
def submit(self, fn, *args, **kwargs):
"""Submit work to be executed and capture statistics."""
if self._start_before_submit:
started_at = _utils.now()
fut = self._submit_func(fn, *args, **kwargs)
if not self._start_before_submit:
started_at = _utils.now()
fut.add_done_callback(functools.partial(self._capture_stats,
started_at))
return fut
class ThreadPoolExecutor(_futures.Executor):
"""Executor that uses a thread pool to execute calls asynchronously.
It gathers statistics about the submissions executed for post-analysis...
Note that this executor never shrinks its thread pool, which will cause
the pool to eventually reach its maximum capacity defined by max_workers.
Check :py:class:`DynamicThreadPoolExecutor` for an alternative.
See: https://docs.python.org/dev/library/concurrent.futures.html
"""
threading = _thread.Threading()
def __init__(self, max_workers=None, check_and_reject=None):
"""Initializes a thread pool executor.
:param max_workers: maximum number of workers that can be
simultaneously active at the same time, further
submitted work will be queued up when this limit
is reached.
:type max_workers: int
:param check_and_reject: a callback function that will be provided
two position arguments, the first argument
will be this executor instance, and the second
will be the number of currently queued work
items in this executors backlog; the callback
should raise a :py:class:`.RejectedSubmission`
exception if it wants to have this submission
rejected.
:type check_and_reject: callback
"""
if max_workers is None:
max_workers = _utils.get_optimal_thread_count()
if max_workers <= 0:
raise ValueError("max_workers must be greater than zero")
self._max_workers = max_workers
self._work_queue = queue.Queue()
self._shutdown_lock = threading.RLock()
self._shutdown = False
self._workers = []
self._check_and_reject = check_and_reject or (lambda e, waiting: None)
self._gatherer = _Gatherer(self._submit, self.threading.lock_object)
@property
def statistics(self):
""":class:`.ExecutorStatistics` about the executors executions."""
return self._gatherer.statistics
@property
def alive(self):
"""Accessor to determine if the executor is alive/active."""
return not self._shutdown
@property
def queue_size(self):
"""The current size of the queue.
This value represents the number of tasks that are waiting for a free
worker thread.
"""
return self._work_queue.qsize()
@property
def num_workers(self):
"""The current number of worker threads."""
return len(self._workers)
def get_num_idle_workers(self):
"""Get the number of currently idle threads.
A thread is idle if it's waiting for new tasks from the queue.
This method is required to obtain the shutdown lock it provides
an accurate count.
"""
with self._shutdown_lock:
return sum(1 for w in self._workers if w.idle)
def _add_thread(self):
w = _thread.ThreadWorker.create_and_register(
self, self._work_queue)
# Always save it before we start (so that even if we fail
# starting it we can correctly join on it).
self._workers.append(w)
w.start()
def _maybe_spin_up(self):
"""Spin up a worker if needed."""
if (not self._workers or
len(self._workers) < self._max_workers):
self._add_thread()
def shutdown(self, wait=True):
with self._shutdown_lock:
if not self._shutdown:
self._shutdown = True
for w in self._workers:
w.stop()
if wait:
for w in self._workers:
w.join()
def _submit(self, fn, *args, **kwargs):
f = Future()
self._maybe_spin_up()
self._work_queue.put(_utils.WorkItem(f, fn, args, kwargs))
return f
def submit(self, fn, *args, **kwargs):
"""Submit some work to be executed (and gather statistics)."""
# NOTE(dtantsur): DynamicThreadPoolExecutor relies on this lock for
# its complex logic around thread management. If you ever decide to
# remove it, please add a lock there instead.
with self._shutdown_lock:
if self._shutdown:
raise RuntimeError('Can not schedule new futures'
' after being shutdown')
self._check_and_reject(self, self._work_queue.qsize())
return self._gatherer.submit(fn, *args, **kwargs)
class DynamicThreadPoolExecutor(ThreadPoolExecutor):
"""Executor that creates or removes threads on demand.
As new work is scheduled on the executor, it will try to keep the
proportion of busy threads within the provided range (between 40% and 80%
by default). A busy thread is a thread that is not waiting on the
task queue.
Each time a task is submitted, the executor makes a decision whether to
grow or shrink the pool. It takes the proportion of the number of busy
threads to the total number of threads and compares it to shrink_threshold
and grow_threshold.
Initially, the pool is empty, so submitting a task always result in one
new thread. Since min_workers must be greater than zero, at least one
thread will always be available after this point.
Once the proportion of busy threads reaches grow_threshold (e.g. 4 out of 5
with the default grow_threshold of 0.8), a new thread is created when a
task is submitted. If on submitting a task a proportion of busy threads is
below shrink_threshold (e.g. only 2 out of 5), one idle thread is stopped.
The values of grow_threshold and shrink_threshold are different to prevent
the number of threads from oscilating on reaching grow_threshold.
If threads are not created often in your application, the number of idle
threads may stay high for a long time. To avoid it, you can call
:py:meth:`.maintain` periodically to keep the number of threads within
the thresholds.
"""
def __init__(self, max_workers=None, check_and_reject=None,
min_workers=1, grow_threshold=0.8,
shrink_threshold=0.4):
"""Initializes a thread pool executor.
:param max_workers: maximum number of workers that can be
simultaneously active at the same time, further
submitted work will be queued up when this limit
is reached.
:type max_workers: int
:param check_and_reject: a callback function that will be provided
two position arguments, the first argument
will be this executor instance, and the second
will be the number of currently queued work
items in this executors backlog; the callback
should raise a :py:class:`.RejectedSubmission`
exception if it wants to have this submission
rejected.
:type check_and_reject: callback
:param min_workers: the minimum number of workers that can be reached
when shrinking the pool. Note that the pool always
starts at zero workers and will be smaller than
min_workers until enough workers are created.
At least one thread is required.
:type max_workers: int
:param grow_threshold: minimum proportion of busy threads to total
threads for the pool to grow.
:type grow_threshold: float
:param shrink_threshold: maximum proportion of busy threads to total
threads for the pool to shrink.
:type shrink_threshold: float
"""
super().__init__(max_workers=max_workers,
check_and_reject=check_and_reject)
if min_workers <= 0:
raise ValueError('min_workers must be greater than zero')
if max_workers and min_workers >= max_workers:
raise ValueError('min_workers must be less than max_workers')
self._min_workers = min_workers
if grow_threshold <= 0 or grow_threshold > 1.0:
raise ValueError('grow_threshold must be within (0, 1]')
if shrink_threshold < 0 or shrink_threshold >= 1.0:
raise ValueError('shrink_threshold must be within [0, 1)')
if shrink_threshold >= grow_threshold:
raise ValueError(
'shrink_threshold must be less than grow_threshold')
self._grow_threshold = grow_threshold
self._shrink_threshold = shrink_threshold
self._dead_workers = []
def _drop_thread(self):
new_workers = []
idle_worker = None
for i, w in enumerate(self._workers):
if w.idle:
new_workers = self._workers[i + 1:]
idle_worker = w
break
new_workers.append(w)
if idle_worker is None:
# Should not actually happen but races are possible; do nothing
LOG.warning(
'No idle worker thread to delete when shrinking pool %r', self)
return False
w.stop()
self._workers = new_workers
self._dead_workers.append(w)
return True
def _maybe_spin_up(self):
nthreads = self.num_workers
if nthreads < self._min_workers:
self._add_thread()
return True
# NOTE(dtantsur): here we count the number of threads that are
# doing something (i.e. are not waiting on the queue) plus the
# number of tasks in the queue. In theory, if there are idle
# workers, the queue should be empty. But race conditions are
# possible when workers do not pick up tasks quickly enough,
# especially in the presence of CPU-bound tasks.
idle = self.get_num_idle_workers()
busy = (nthreads - idle + self.queue_size) / nthreads
if busy >= self._grow_threshold and nthreads < self._max_workers:
LOG.debug('Creating a new worker thread for pool %r '
'(%d thread(s) idle, queue size %d, total %d thread(s))',
self, idle, self.queue_size, nthreads)
self._add_thread()
return True
elif busy <= self._shrink_threshold and nthreads > self._min_workers:
LOG.debug('Deleting a worker thread from pool %r '
'(%d thread(s) idle, queue size %d, total %d thread(s))',
self, idle, self.queue_size, nthreads)
return self._drop_thread()
return False
def maintain(self):
"""Keep the number of threads within the expected range.
If too many idle threads are running, they are deleted.
Additionally, deleted workers are joined to free up resources.
"""
# NOTE(dtantsur): this call can potentially run for some time, so
# avoid taking shutdown_lock once and holding it for the entire
# duration (blocking any new tasks from being added).
keep_going = True
while keep_going:
if self._shutdown:
return
with self._shutdown_lock:
keep_going = self._maybe_spin_up()
time.sleep(0)
# NOTE(dtantsur): copy the value of _dead_workers to prevent races with
# other invocations for maintain or shutdown.
with self._shutdown_lock:
dead_workers = self._dead_workers
self._dead_workers = []
for w in dead_workers:
w.join()
def shutdown(self, wait=True):
super().shutdown(wait=wait)
if wait:
for w in self._dead_workers:
w.join()
class ProcessPoolExecutor(_process.ProcessPoolExecutor):
"""Executor that uses a process pool to execute calls asynchronously.
It gathers statistics about the submissions executed for post-analysis...
See: https://docs.python.org/dev/library/concurrent.futures.html
"""
threading = _thread.Threading()
def __init__(self, max_workers=None):
if max_workers is None:
max_workers = _utils.get_optimal_process_count()
super().__init__(max_workers=max_workers)
if self._max_workers <= 0:
raise ValueError("Max workers must be greater than zero")
self._gatherer = _Gatherer(
# Since our submit will use this gatherer we have to reference
# the parent submit, bound to this instance (which is what we
# really want to use anyway).
super().submit,
self.threading.lock_object)
@property
def alive(self):
"""Accessor to determine if the executor is alive/active."""
return not self._shutdown_thread
@property
def statistics(self):
""":class:`.ExecutorStatistics` about the executors executions."""
return self._gatherer.statistics
def submit(self, fn, *args, **kwargs):
"""Submit some work to be executed (and gather statistics)."""
return self._gatherer.submit(fn, *args, **kwargs)
class SynchronousExecutor(_futures.Executor):
"""Executor that uses the caller to execute calls synchronously.
This provides an interface to a caller that looks like an executor but
will execute the calls inside the caller thread instead of executing it
in a external process/thread for when this type of functionality is
useful to provide...
It gathers statistics about the submissions executed for post-analysis...
"""
threading = _thread.Threading()
@removals.removed_kwarg('green',
message="Eventlet support is deprecated. "
"Please migrate your code and stop enforcing "
"its usage.")
def __init__(self, green=False, run_work_func=lambda work: work.run()):
"""Synchronous executor constructor.
:param green: when enabled this forces the usage of greened lock
classes and green futures (so that the internals of this
object operate correctly under eventlet)
:type green: bool
:param run_work_func: callable that takes a single work item and
runs it (typically in a blocking manner)
:param run_work_func: callable
"""
if green and not _utils.EVENTLET_AVAILABLE:
raise RuntimeError('Eventlet is needed to use a green'
' synchronous executor')
if not callable(run_work_func):
raise ValueError("Run work parameter expected to be callable")
self._run_work_func = run_work_func
self._shutoff = False
if green:
self.threading = _green.threading
self._future_cls = GreenFuture
else:
self._future_cls = Future
self._run_work_func = run_work_func
self._gatherer = _Gatherer(self._submit,
self.threading.lock_object,
start_before_submit=True)
@property
def alive(self):
"""Accessor to determine if the executor is alive/active."""
return not self._shutoff
def shutdown(self, wait=True):
self._shutoff = True
def restart(self):
"""Restarts this executor (*iff* previously shutoff/shutdown).
NOTE(harlowja): clears any previously gathered statistics.
"""
if self._shutoff:
self._shutoff = False
self._gatherer.clear()
@property
def statistics(self):
""":class:`.ExecutorStatistics` about the executors executions."""
return self._gatherer.statistics
def submit(self, fn, *args, **kwargs):
"""Submit some work to be executed (and gather statistics)."""
if self._shutoff:
raise RuntimeError('Can not schedule new futures'
' after being shutdown')
return self._gatherer.submit(fn, *args, **kwargs)
def _submit(self, fn, *args, **kwargs):
fut = self._future_cls()
self._run_work_func(_utils.WorkItem(fut, fn, args, kwargs))
return fut
@removals.removed_class("GreenFuture",
message="Eventlet support is deprecated. "
"Please migrate your code and stop using Green "
"future.")
class GreenFuture(Future):
__doc__ = Future.__doc__
def __init__(self):
super().__init__()
if not _utils.EVENTLET_AVAILABLE:
raise RuntimeError('Eventlet is needed to use a green future')
# NOTE(harlowja): replace the built-in condition with a greenthread
# compatible one so that when getting the result of this future the
# functions will correctly yield to eventlet. If this is not done then
# waiting on the future never actually causes the greenthreads to run
# and thus you wait for infinity.
if not _green.is_monkey_patched('thread'):
self._condition = _green.threading.condition_object()
@removals.removed_class("GreenThreadPoolExecutor",
message="Eventlet support is deprecated. "
"Please migrate your code and stop using Green "
"executor.")
class GreenThreadPoolExecutor(_futures.Executor):
"""Executor that uses a green thread pool to execute calls asynchronously.
See: https://docs.python.org/dev/library/concurrent.futures.html
and http://eventlet.net/doc/modules/greenpool.html for information on
how this works.
It gathers statistics about the submissions executed for post-analysis...
"""
threading = _green.threading
def __init__(self, max_workers=1000, check_and_reject=None):
"""Initializes a green thread pool executor.
:param max_workers: maximum number of workers that can be
simulatenously active at the same time, further
submitted work will be queued up when this limit
is reached.
:type max_workers: int
:param check_and_reject: a callback function that will be provided
two position arguments, the first argument
will be this executor instance, and the second
will be the number of currently queued work
items in this executors backlog; the callback
should raise a :py:class:`.RejectedSubmission`
exception if it wants to have this submission
rejected.
:type check_and_reject: callback
"""
if not _utils.EVENTLET_AVAILABLE:
raise RuntimeError('Eventlet is needed to use a green executor')
if max_workers <= 0:
raise ValueError("Max workers must be greater than zero")
self._max_workers = max_workers
self._pool = _green.Pool(self._max_workers)
self._delayed_work = _green.Queue()
self._check_and_reject = check_and_reject or (lambda e, waiting: None)
self._shutdown_lock = self.threading.lock_object()
self._shutdown = False
self._gatherer = _Gatherer(self._submit,
self.threading.lock_object)
@property
def alive(self):
"""Accessor to determine if the executor is alive/active."""
return not self._shutdown
@property
def statistics(self):
""":class:`.ExecutorStatistics` about the executors executions."""
return self._gatherer.statistics
def submit(self, fn, *args, **kwargs):
"""Submit some work to be executed (and gather statistics).
:param args: non-keyworded arguments
:type args: list
:param kwargs: key-value arguments
:type kwargs: dictionary
"""
with self._shutdown_lock:
if self._shutdown:
raise RuntimeError('Can not schedule new futures'
' after being shutdown')
self._check_and_reject(self, self._delayed_work.qsize())
return self._gatherer.submit(fn, *args, **kwargs)
def _submit(self, fn, *args, **kwargs):
f = GreenFuture()
work = _utils.WorkItem(f, fn, args, kwargs)
if not self._spin_up(work):
self._delayed_work.put(work)
return f
def _spin_up(self, work):
"""Spin up a greenworker if less than max_workers.
:param work: work to be given to the greenworker
:returns: whether a green worker was spun up or not
:rtype: boolean
"""
alive = self._pool.running() + self._pool.waiting()
if alive < self._max_workers:
self._pool.spawn_n(_green.GreenWorker(work, self._delayed_work))
return True
return False
def shutdown(self, wait=True):
with self._shutdown_lock:
if not self._shutdown:
self._shutdown = True
shutoff = True
else:
shutoff = False
if wait and shutoff:
self._delayed_work.join()
self._pool.waitall()
class ExecutorStatistics:
"""Holds *immutable* information about a executors executions."""
__slots__ = ['_failures', '_executed', '_runtime', '_cancelled']
_REPR_MSG_TPL = ("<ExecutorStatistics object at 0x%(ident)x"
" (failures=%(failures)s,"
" executed=%(executed)s, runtime=%(runtime)0.2f,"
" cancelled=%(cancelled)s)>")
def __init__(self, failures=0, executed=0, runtime=0.0, cancelled=0):
self._failures = failures
self._executed = executed
self._runtime = runtime
self._cancelled = cancelled
@property
def failures(self):
"""How many submissions ended up raising exceptions.
:returns: how many submissions ended up raising exceptions
:rtype: number
"""
return self._failures
@property
def executed(self):
"""How many submissions were executed (failed or not).
:returns: how many submissions were executed
:rtype: number
"""
return self._executed
@property
def runtime(self):
"""Total runtime of all submissions executed (failed or not).
:returns: total runtime of all submissions executed
:rtype: number
"""
return self._runtime
@property
def cancelled(self):
"""How many submissions were cancelled before executing.
:returns: how many submissions were cancelled before executing
:rtype: number
"""
return self._cancelled
@property
def average_runtime(self):
"""The average runtime of all submissions executed.
:returns: average runtime of all submissions executed
:rtype: number
:raises: ZeroDivisionError when no executions have occurred.
"""
return self._runtime / self._executed
def __repr__(self):
return self._REPR_MSG_TPL % ({
'ident': id(self),
'failures': self._failures,
'executed': self._executed,
'runtime': self._runtime,
'cancelled': self._cancelled,
})
|