Question

How RPC calls are implemented between modules of OpenStack specially Nova and Neutron? I want to call a neutron method in Nova through RPC.

Searched throughout the web, but couldn't find any easy understandable explanation. Any link/document would be helpful.

Était-ce utile?

La solution

There're two aspects:

  1. RPC among components of a single openstack module. Take Nova for example, AMQP is underneath RPC implementation in pub/sub paradigm. Refer AMQP and Nova

  2. RPC among openstack modules. It is the communication across different modules to serve user requests like how nova, glance and neutron work together when booting a virtual machine. it uses exposed module API to do inter-module communication. for example, it depends on both Neutron API client and Glance API client in nova.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top