Mastering Cinder Design Ideas-5 minutes a day to play OpenStack (46)

Source: Internet
Author: User

650) this.width=650; "Title=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733685112094502.png "src=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733847652055612.jpg "style=" border:0px;float:none; "/>

The previous section describes the architecture of Cinder, which discusses how Cinder components work together and how they are designed.

How cinder-* Sub-services work together from the volume creation process

For Cinder learning, Volume creation is a very good scene, involving each cinder-* sub-service, the following is a flowchart.
650) this.width=650; "Title=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733685195080027.png "src=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733848012009205.jpg "style=" border:0px;white-space:normal;float:none; "/>

  1. The customer (which can be an OpenStack end-user or other program) sends a request to the API (CINDER-API): "Create a volume for me"

  2. After the API has made some necessary processing of the request, a message is sent to Messaging (RabbitMQ): "Let Scheduler create a volume"

  3. Scheduler (Cinder-scheduler) Gets the message from Messaging to the API, then executes the scheduling algorithm and selects node A from several storage points

  4. Scheduler sent a message to Messaging: "Let storage node A create this volume"

  5. Storage Node A, Volume (Cinder-volume), gets the message Scheduler sent to it from Messaging and then creates driver on Volume provider through Volume.

The above is a few steps to create the core of the virtual machine, of course, omitted a lot of details, we will discuss in detail in later chapters.

The design idea of Cinder

Cinder continues the design ideas of Nova and other components.

API front-end services

Cinder-api as a unique window to the cinder component, exposing clients to the functionality that cinder can provide, when the customer needs to perform volume-related actions and can only send REST requests to CINDER-API. Customers here include end users, command lines, and other OpenStack components.

The benefits of designing API front-end services are:

    1. Provide a unified interface to the external, hide implementation details

    2. API provides REST standard invocation services for easy integration with third-party systems

    3. High availability of APIs can be easily implemented by running multiple API service instances, such as running multiple CINDER-API processes

Scheduler Dispatch Service

Cinder can have multiple storage nodes, and when the volume needs to be created, Cinder-scheduler chooses the most appropriate node to create the volume based on the properties and resource usage of the storage node.

The scheduling service is like a project manager in a development team, and when a new development task is received, the project manager assigns the task to the most appropriate developer based on the difficulty of the task, the current workload and skill level of each team member.

Worker Work Services

The dispatch service just assigns tasks, and the worker work service is the real task. In Cinder, this Worker is cinder-volume. This functional division between Scheduler and workers makes OpenStack very easy to scale:

You can increase the storage node (increase Worker) when storage resources are insufficient. When the customer's request volume is too large to dispatch, you can increase the Scheduler.

Driver Frame

OpenStack is an open infrastracture as a Service cloud operating system that supports the industry's best-in-class technologies, which may be open source free or commercially charged. This open architecture allows OpenStack to remain technologically advanced and competitive without creating vendor lock-in (lock-in). Where does this openness of OpenStack manifest itself? An important aspect is the adoption of a Driver-based framework.

In Cinder, for example, storage nodes support a variety of volume provider, including LVM, NFS, Ceph, GlusterFS, and commercial storage systems such as EMC and IBM. Cinder-volume defines a unified driver interface for these volume provider, and volume provider can plug and play into OpenStack in the form of driver simply by implementing these interfaces. The following is the architecture of the cinder driver:

650) this.width=650; "Title=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733685203065306.png "src=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733848253008029.jpg "style=" border:0px;white-space:normal;float:none; "/>

In Cinder-volume configuration file/etc/cinder/cinder.conf volume_driver the configuration item sets which volume provider the storage node uses, the following example indicates that LVM is used.

650) this.width=650; "Title=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733685199035130.png "src=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733848406013133.jpg "style=" border:0px;white-space:normal;float:none; "/>

In the next section we will discuss each component of Cinder in detail.

650) this.width=650; "title=" "src=" http://7xo6kd.com1.z0.glb.clouddn.com/ Upload-ueditor-image-20160612-1465733848880032132.jpg "style=" Border:0px;vertical-align:middle;color:rgb ( 63,63,63); font-family: ' Microsoft Yahei '; Font-size:15px;line-height:21.75px;text-align:justify;background-color: RGB (246,246,246); "/>

Mastering Cinder Design Ideas-5 minutes a day to play OpenStack (46)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.