Container Storage Interface

Navdeep Garg
Image shows a Container Storage Interface Logo.

Introduction

CSI stands for Container Storage Interface. It is an initiative to combine the storage interface of Container Orchestrator Systems(COS) such as Mesos, Kubernetes, Docker Swarm, etc. with storage vendors like Ceph, Net App (Network Appliance Inc. is a hybrid cloud data services and data management Company.), etc. This means Implementing a single CSI for storage vendors, which definitely with all COS. Kubernetes 1.9 introduces an alpha implementation of the Container Storage Interface, which makes installing new volume plugins easy. Before Kubernetes 1.9, we need to add to the core Kubernetes codebase for third-party storage providers to develop solutions, but after Kubernetes 1.9 third-party storage providers to develop solutions without the need of adding core Kubernetes codebase. At present, the CSI 0.2 version was introduced in March 2018.

Essential Terminologies related to Container Storage Interface (CSI)

  • COS – Container Orchestrator Systems is all about managing the life cycle of Containers, especially in large dynamic environments. It is used to control and automate many tasks by software teams.
  • Volume – A unit of space that will be made available inside of managed containers via the CSI.
  • Node – A host where a workload will be running.
  • Workload – The atomic unit of “work” anticipated by a COS.
  • Plugin – Plugin points to a service that exposes gRPC endpoints.
  • gRPC – It is an open-source Remote Procedure Call System initially developed at Google.
  • SP – Storage Provider, the vendor of CSI plugin implementation.

Container Storage Interface Goals

Image shows a Container Storage Interface Logo with text.
Container Storage Interface Logo.
    • Interoperability – The storage vendor can build once a plugin, and that plugin can be used by all the CO that support CSI.
    • Vendor-neutral – Any CO and storage provider should not terminate it.
  • Focus on specification
  • Control plane only

Before Container Storage Interface (CSI)

Before CSI was introduced, different COS have their interface that the storage vendor has to implement so that the COS can talk to that SP during the life cycle of volume. The First release of the CSI version 0.1 was introduced in December 2017. In the case of Kubernetes, volume plugins were serving the storage need for container workload.

The first problem was in Kubernetes itself, you need to write a driver as a source vendor and put it inside the Kubernetes code, and what that meant is that as a storage vendor you could not one fix any issues, which you have to wait for Kubernetes release you are bound for release process of Kubernetes.

What happens is that each one of this COS would then design their method and say: “This is our API.” So as a storage product as a storage system, you have to write drivers for three different systems (Mesos, Kubernetes, Docker Swarm).

Developers who developed plugins are forced to make plugin source code available.

Object Storage – Object storage also called object-based storage. Which describes an approach to addressing and manipulating discrete units of storage called objects like files objects contain data, but unlike files, objects are not organized in a hierarchy that means every object exists at the same level in a flat address space called the storage pool and one object can not be placed inside another object. An object is designed for unstructured data such as media, documents, logs, backup, etc. The most popular cloud object storage is AWS S3. Useful for automating and streamlining data storage.

Image shows a Visual Comparison of Object Storage and Block Storage.
Object Storage vs Block Storage Visualization

Use cases –

  • Storage for unstructured data like music, image, etc.
  • Storage for backup files, log files.
  • Hybrid cloud storage.
  • Disaster Recovery.

Benefits of object storage

  • Scalability: Adding data forever, there is no limit. Security and compliance
  • Flexible management
  • Efficiency

Drawbacks – They are designed to read and write entire files, not for a small piece of files. It can not guarantee that each request will always get the latest version of the file that means if any application updates, its not necessary that all the locations where application installed get notification regarding the update.

Block Storage – This kind of storage system is usually located close to the server in the same data center, and it organizes data in separate volumes, accessed by one or very few servers simultaneously. The volume has the layout of local hard-disks, presented in the form of sectors and tracks. Most common access protocols are FC and iSCSI, and all of the communication happens on a dedicated Storage area network based on lossless Ethernet or FC equipment. This type of storage is perfect for databases and virtual machines, and more in general for all those workloads that require low latency and high IOPS. Unfortunately, Block storage systems are also characterized by a very high cost per gigabyte, and most of the implementations in the market still rely on scale-up dual-controller designs, with a total capacity that can hardly reach the petabyte level, while maintaining a right performance consistency.

Use cases –

  • Structured database storage.
  • Application using server-side processing.

Drawbacks – The limited scalability drives up complexity and costs in large-capacity scenarios. That means complex to manage at scale.

Before CSI, all COS had their way to handle storage. Docker has DVDI, kubernetes has flex volume. These implementations have their design criteria, since compatible APIs, applications with various degrees of reliability and quality.

Problem with current interfaces are as follows –

  • CLI based interface
  • Heavyweight
  • Lack of idempotency on APIs
  • In-tree interface

Three core RPC Services –

  • Identity Services
  • Controller Services
  • Node Services

Identity Services – Identity Services gives basic information about plugins like what is your name? What are your capabilities? And we are going to probe you and to see is you are healthy or not, and if every single plug-in needs to implement these three costs, it’s original cost

Image shows syntax of indenty services in container storage interface.
Container Storage Interface: Identity Services Code
  • GetPluginInfo() – This method returns the name and version of the plugin.
  • GetPluginCapabilities() – It returns the capabilities of the plugin. If this method returns the capability of the plugin, then CO calls the Controller method.
  • Probe() – This is called by CO to check plugin is running or not.

Controller Services – Controller Services are responsible for controlling and managing the volumes, such as: creating, deleting, mount, unmount, and create snapshots, etc.

Image shows some functions of Controller Services in container storage interface.
Container Storage Interface:Node Stage Volume Functions

 

NodeStageVolume – This method is called by the CO to mount the volume to a path temporarily. But in Kubernetes, two steps mount need in. First, it’s mount to the global directory then it into the pod directory because, in kubernetes, a single volume is used by multiple pods.

Image shows functions of Node Stage Volume in container storage interface.
Container Storage Interface:Node Stage Volume Functions

Volume Life Cycle Container Orchestrator

Image shows Volume Life Cycle in Container Orchestrator text with animated laptop connected to icons.
Exploring the Volume Life Cycle in Container Orchestrator

Initially, the volume is not created CO (Container Orchestrator) will dynamically provision the amount by using Create Volume and now the amount is in create state and then before the size can be used by a container on a node the CO will call ControllerPublishVolume to make an amount available on some required node. Once the ControllerPublish is successful, the CO calls the NodeStageVolume, which the operation for each volume on a node and then calls NodePublishVolume for each part.

Frequently Asked Questions

Our testing processes place a high priority on data security. To ensure the security of sensitive information, we adhere to a number of protocols, including the anonymization, encryption, and control of access to data. During testing, we use secure environments and data that mimic real-world scenarios without exposing sensitive information. We adhere to best practices for data protection and comply with industry standards and regulations including GDPR and HIPAA. As part of our security testing process, we employ a variety of tools and methodologies to identify and rectify security vulnerabilities.

To ensure the quality and reliability of your software solutions, we employ a comprehensive range of testing methodologies and cutting-edge tools. Our testing approach includes:

  • Manual Testing: We use structured test cases to identify usability, functionality, and design issues.
  • Automated Testing: Automated testing streamlines processes, improves efficiency, and ensures consistency.
  • Unit Testing: JUnit, NUnit, and PyUnit are unit testing frameworks we use to validate the functionality of code units.
  • Integration Testing: We verify the seamless interaction of various system components using tools such as Selenium, Appium, and Postman.
  • Performance Testing: To assess system responsiveness and scalability, we employ tools like JMeter, LoadRunner, and Gatling.
  • Security Testing: Our security testing includes vulnerability assessments and penetration testing using tools like OWASP ZAP and Nessus.
  • User Acceptance Testing (UAT): We collaborate closely with your team to ensure that the software aligns with your end-users’ expectations.

You can count on us to improve the visibility of your website on search engines by using our SEO services. On-page and technical SEO best practices are implemented by our team, content is optimized, and search engine optimization strategies are provided to improve the search engine rankings of your website.

We adhere rigorously to project timelines and deadlines at our software development company. To ensure on-time delivery, we use meticulous project management, agile methodologies, and clear communication. Depending on the scope, complexity, and your specific requirements, we conduct a comprehensive analysis and planning phase. Our project managers then track progress continuously using agile frameworks. We maintain regular status updates and transparent communication channels. Whenever changes need to be made, we let you know promptly while keeping you updated.

We specialize in a wide range of technologies and programming languages, including but not limited to Blockchain, .Net, JavaScript, C#, Ruby, PHP, Wordpress. Our expertise covers web development frameworks like React, Angular, and Vue.js, as well as mobile app development for React Native, Flutter, iOS and Android. We also have experience with cloud platforms such as AWS, Azure, and Google Cloud, and are proficient in database systems like MySQL, PostgreSQL, MongoDB, and more. Additionally, we are well-versed in DevOps tools and practices to ensure seamless deployment and ongoing maintenance of the software we develop.

Our company offers a wide range of development services, including:

  • Web Development: We specialize in creating custom websites, web applications, e-commerce platforms, and content management systems.
  • Mobile App Development: We develop mobile apps for iOS and Android platforms, from concept to deployment.
  • Software Development: Our software development services cover desktop applications, business software, and cloud-based solutions.
  • Blockchain Development: We have expertise in blockchain technology, including smart contract development and decentralized application (DApp) creation.
  • IoT Development: Our Internet of Things (IoT) development services encompass connecting physical devices to the digital world.

Navdeep Garg
Article written by

Navdeep Garg

I'm founder and CEO of Revinfotech Inc. I traits in leadership and brilliant practitioner in the Financial Services and FinTech. I helped ban in connecting to the FinTech ecosystem through payment acceptance in blockchain as a service and even help i... read more

Do you have an exciting mobile app idea in mind?

We can help you to build a mobile app on an affordable budget. Contact us!






    What is 5 x 7 ? math-captcha

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    This site uses Akismet to reduce spam. Learn how your comment data is processed.