- Extending OpenStack
- Omar Khedher
- 380字
- 2021-06-24 18:51:48
Decomposing the compute power
The compute service in Nova is considered to be the core component of OpenStack. Understanding how to scale out the workload among several identical compute nodes might require to briefly revisit the building blocks of Nova:
- nova-compute: This runs on the compute node as described in Chapter 1, Inflating the OpenStack Setup. It is responsible for communicating with the hypervisors. Nova-compute interacts with each hypervisor by means of drivers. It creates compute resources by picking up requests from the message queue.
- nova-scheduler: This runs on the cloud controller as described in Chapter 1, Inflating the OpenStack Setup. It is responsible for finding the right placement (physical server) of the initiated request to create a VM. The request will be left in the message queue along with additional information regarding the server information where the nova-compute service will create the compute resource.
- nova-api: This runs on the cloud controller as described in Chapter 1, Inflating the OpenStack Setup. It is responsible for handling API calls from other services through the messaging queue service.
- nova-conductor: This runs on the cloud controller as described in Chapter 1, Inflating the OpenStack Setup. It is responsible for managing access to the database for read/write operations for security and data coherence reasons.
- nova-consoleauth: This runs on the cloud controller as described in Chapter 1, Inflating the OpenStack Setup. It is responsible for providing authentication to the VNC console by the means of the VNC protocol.
- Metadata service: Optionally, this can run on the compute node as described in Chapter 1, Inflating the OpenStack Setup. It is responsible for booting a virtual machine with a custom configuration that will be consumed by the compute service.
Bear in mind that other Nova services have not been cited, including nova-volume and nova-network. These Nova services will not be used, and are replaced in our setup by Cinder, for persistent storage on our virtual machines, and Neutron, for instance networking. Additionally, other non-mandatory Nova services, such as nova-serialproxy and euca-tools, are not covered in this chapter. The nova-cells service will be discussed in the later parts of this chapter.
The following diagram illustrates an overview of the different components forming the OpenStack compute service:

推薦閱讀
- Learning OpenDaylight
- Linux Mint Essentials
- 新手易學:系統安裝與重裝
- 巧學活用Windows 7
- ElasticSearch Cookbook
- Windows 8實戰從入門到精通(超值版)
- HTML5 Enterprise Application Development
- Linux內核API完全參考手冊(第2版)
- iOS 10快速開發:18天零基礎開發一個商業應用
- Java EE 7 Developer Handbook
- Zabbix監控系統之深度解析和實踐
- Linux深度攻略
- 完美應用Ubuntu(第4版)
- 電腦辦公(Windows10+Office2016)從新手到高手
- Serverless Architectures with Kubernetes