[openstack-dev] [Mistral] Local vs. Scalable Engine

Renat Akhmerov rakhmerov at mirantis.com
Wed Mar 12 05:34:19 UTC 2014


On 12 Mar 2014, at 06:37, W Chan <m4d.coder at gmail.com> wrote:

> Here're the proposed changes.
> 1) Rewrite the launch script to be more generic which contains option to launch all components (i.e. API, engine, executor) on the same process but over separate threads or launch each individually.

You mentioned test_executor.py so I think it would make sense first to refactor the code in there related with acquiring transport and launching executor. My suggestions are:
In test base class (mistral.tests.base.BaseTest) create the new method start_local_executor() that would deal with getting a fake driver inside and all that stuff. This would be enough for tests where we need to run engine and check something. start_local_executor() can be just a part of setUp() method for such tests.
As for the launch script I have the following thoughts:
Long-term launch scripts should be different for all API, engine and executor. Now API and engine start within the same process but it’s just a temporary solution.
Launch script for engine (which is the same as API’s for now) should have an option --use-local-executor to be able to run an executor along with engine itself within the same process.

> 2) Move transport to a global variables, similar to global _engine and then shared by the different component.

Not sure why we need it. Can you please explain more detailed here? The better way would be to initialize engine and executor with transport when we create them. If our current structure doesn’t allow this easily we should discuss it and change it.

In mistral.engine.engine.py we now have:

 def load_engine():
    global _engine
    module_name = cfg.CONF.engine.engine
    module = importutils.import_module(module_name)
    _engine = module.get_engine()

As an option we could have the code that loads engine in engine launch script (once we decouple it from API process) so that when we call get_engine() we could pass in all needed configuration parameters like transport.

> 3) Modified the engine and the executor to use a factory method to get the global transport

If we made a decision on #2 we won’t need it.


A side note: when we discuss things like that I really miss DI container :)

Renat Akhmerov
@ Mirantis Inc.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstack.org/pipermail/openstack-dev/attachments/20140312/f39ca5e2/attachment.html>


More information about the OpenStack-dev mailing list