- Preparing for the Certified OpenStack Administrator Exam
- Matt Dorn
- 248字
- 2021-07-02 19:30:28
OpenStack daemon communication
Now that we've discussed the various ways in which an OpenStack operator interacts with OpenStack via the API, let's discuss internal communication among the core OpenStack services. In Figure 1.7, you can see the color code in the top left that shows the service and daemon. The service is simply the name of the OpenStack service, while the daemon represents the program that is actually running to bring the service to life.
To avoid tight coupling, communication amongst the daemons within a specific service is achieved via an Advanced Message Queueing Protocol (AMQP). In a typical OpenStack environment, this can be software such as RabbitMQ or Qpid.
Recall the cloudy development methodology that we discussed in the history portion of this chapter. While OpenStack encourages its software developers to follow this methodology when deploying applications on it, the actual OpenStack infrastructure follows the exact same principles: highly available, scalable, and loosely coupled.
For example, when a user sends a request to nova-api to boot a server, nova-api will publish this message on the AMQP bus. This message will then be read by nova-scheduler. Now let's visualize an OpenStack cloud that often receives hundreds of requests to boot instances. To solve this problem you would deploy more servers in the infrastructure, install more nova-scheduler daemons, and simply point them to the OpenStack environment's AMQP server. That's Horizontal scaling in action!

- Advanced Splunk
- TypeScript入門與實戰
- C語言程序設計案例教程(第2版)
- Spring Cloud、Nginx高并發核心編程
- Java:High-Performance Apps with Java 9
- Swift Playgrounds少兒趣編程
- ASP.NET開發與應用教程
- Java面向對象程序設計
- Python 3.7從入門到精通(視頻教學版)
- Windows Phone 8 Game Development
- Android嵌入式系統程序開發(基于Cortex-A8)
- 例說FPGA:可直接用于工程項目的第一手經驗
- HTML5 WebSocket權威指南
- Python滲透測試編程技術:方法與實踐(第2版)
- 川哥教你Spring Boot 2實戰