Bases: ThreadPoolModel
A ThreadPoolModel suitable for use with evenlet/greenthreads.
Bases: ThreadPoolModel
A ThreadPoolModel suitable for use with native threads.
Bases: object
Base class for Asynchronous task executors. It does not support the execution mechanism.
Provisions the extensible classes with necessary variables to utilize important Glance modules like, context, task_repo, image_repo, image_factory.
It also gives abstraction for the standard pre-processing and post-processing operations to be executed by a task. These may include validation checks, security checks, introspection, error handling etc. The aim is to give developers an abstract sense of the execution pipeline logic.
checks
glance.domain.Task and glance.domain.TaskStub objects into ORM semantics
glance.domain.Image object into ORM semantics
creating new images for certain types of tasks viz. import, cloning
glance.domain.Image object into ORM semantics, but with an admin context (optional)
Bases: object
Base class for an abstract ThreadPool.
Do not instantiate this directly, use one of the concrete implementations.
Map a function to each value in an iterable.
This spawns a thread for each item in the provided iterable, generating results in the same order. Each item will spawn a thread, and each may run in parallel up to the limit of the pool.
fn – A function to work on each item
iterable – A sequence of items to process
A generator of results in the same order
Returns the system-wide threadpool model class.
This must be called after set_threadpool_model() whenever some code needs to know what the threadpool implementation is.
This may only be called after set_threadpool_model() has been called to set the desired threading mode. If it is called before the model is set, it will raise AssertionError. This would likely be the case if this got run in a test before the model was initialized, or if glance modules that use threading were imported and run from some other code without setting the model first.
AssertionError if the model has not yet been set.
Set the system-wide threadpool model.
This sets the type of ThreadPoolModel to use globally in the process. It should be called very early in init, and only once.
thread_type – A string indicating the threading type in use, either “eventlet” or “native”
RuntimeError if the model is already set or some thread_type other than one of the supported ones is provided.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.