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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top