- 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!

- 人臉識別原理及算法:動態人臉識別系統研究
- Web Application Development with MEAN
- 算法訓練營:提高篇(全彩版)
- Oracle Exadata專家手冊
- MATLAB 2020從入門到精通
- Getting Started with Hazelcast(Second Edition)
- Unity 3D腳本編程:使用C#語言開發跨平臺游戲
- Visual Basic程序設計全程指南
- Web編程基礎:HTML5、CSS3、JavaScript(第2版)
- Deep Learning for Natural Language Processing
- Selenium WebDriver Practical Guide
- Mastering ASP.NET Web API
- 軟件再工程:優化現有軟件系統的方法與最佳實踐
- Learning QGIS(Second Edition)
- Node.js進階之路