SlideShare uma empresa Scribd logo
1 de 16
Baixar para ler offline
Cloud File System Gateway
                     &
 Cloud Data Management Interface (CDMI)



Author:                        Imran Khan, Solutions Architect, Calsoft Inc.
Presenter:                     Parag Kulkarni, VP Engineering, Calsoft Inc.

2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
Agenda

    Cloud Storage Industry Challenges
    Brief about CDMI
    Cloud File System(FS)
       Cloud FS Architecture
       Cloud FS Modules
       Cloud FS Solution
    Conclusion
    Q&A Session




 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                           2
Abstract
          Seamless extension of NAS to Cloud Storage using Cloud File System
Today NAS stores data on local disks and/or SAN disks. Most enterprises have sufficient file
storage capacity to run their day-to-day operations provided some older data is moved to
secondary storage. But since most data resides on primary storage (or secondary storage
within enterprise boundaries) it becomes necessary to extend storage capacity for NAS.

With Cloud storage becoming more secure, accessible, easy to use and cost effective, it can
be a considered as secondary storage for enterprise NAS – Hierarchical Storage
Management. We can even use cloud storage as primary storage by using enterprise storage
devices for caching to improve cloud data access throughput.

Adding CDMI based interfaces to cloud file system enables us to integrate with any cloud
storage provider and store file based data to cloud storage easily. Cloud File System
presented and implemented by Calsoft integrates with many cloud storage providers using
CDMI. This helps enterprises store file based data to cloud storage and provides throughput
similar to local NAS by using efficient caching techniques.
 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                        3
Learning Objectives
         Challenges
      To store ever growing data and optimally manage
       storage capacity
      Hierarchal Storage Management across enterprise
       storage and cloud storage
      Measure/monitor user guarantees and SLAs and map
       them over multiple clouds
      Optimizing storage capacity between on-premise and
       cloud storage pools
      To migrate between cloud storage platforms



       Solution
     Adoption of Cloud Storage
     CDMI – move to build an open standards for storing data
      in the Cloud
     No impact on existing users/apps using NAS
     Abstract policy engine to monitor and map the SLAs

    2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                              4
Cloud Storage Industry Challenges

                                  Access Bandwidth, Delay And
                                  Disruption Of Service

                                  Common Interface To Multiple Clouds


                                  Data Security


                                  Data Transfer Policy


                                  Auxiliary Features

  2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                            5
Cloud Data Management Interface

                                                                                                   CDMI
                                                                              A        protocol    for       self-provisioning,
                                                                               administering and accessing cloud storage.
                                                                              It defines RESTful HTTP operations for
                                                                               assessing capabilities of cloud storage
                                                                               system and exporting data via other
                                                                               protocols such as CIFS and NFS




                                                                                             CDMI Benefits
                                                                              To manage containers, domains, security
                                                                               access
                                                                              Easy of monitoring / billing
                                                                              For storage that is functionally accessible by
                                                                               legacy or proprietary protocols

 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                                                              6
Calsoft’s Cloud File System
       Leveraging CDMI to provide a common interface to interact with multiple clouds

 Cloud Access                                         Cloud Request              Multiple Cloud
                                                                                  Framework
     • File system                                          • Convert the           • Enables
       interface to the                                       filesystem              interaction with
       cloud access.                                          demand into             multiple clouds,
                                                              cloud requests          while abstracting
     • Filesystem cache                                                               out many
       the data from the                                    • Convert the data        operations
       cloud to provide a                                     objects back to
       quicker access                                         common file           • Dynamically
                                                              model                   changes support
     • Filesystem                                                                     for various cloud
       interface                                                                      vendors
       provided to the
       clients using NFS,                                                           • Provides a set of
       CIFS etc                                                                       policies to control
                                                                                      access patterns

 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                                     7
Cloud File System Architecture
 User 1
                            C                                                                             CDMI
                            I                                                         CDMI              Compliant
 User 2                     F     CLOUD DATA              3rd party Cloud Cloud 1
                                                                                                          Cloud
                                  ACCESSS                 Storage Plug-in                                Storage
                            S                                             Cloud 2
                            /
                                  LAYER
                                                                                          SOAP / REST
 User 3                     N                                                              / WebDAV
                            F     USER MANAGEMENT                                                   Cloud 1 - CDMI
                            S     POLICY MANAGEMENT                                                 Non Compliant
                                                                                                    Cloud Storage
 User 4                           Etc.
                            S
                            E
  ……




                            R     LVM, Disk Driver, RAID, etc.
                            V                                                                       Cloud 2 - CDMI
 User n                     E                                                                       Non Compliant
                            R                                                                       Cloud Storage


                             CLOUD FILE SYSTEM
                                                                            Local / SAN Disks
  2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                                                     8
Cloud File System Modules

                                                                                                                             Cloud     S3
                                                                                                                             Plugins
Cloud interface                                                                                                                             Other

and the policy                                                                         CFS User Space             Cloud
engine                                                                                                           Interface
                                                                                                                                             Other



  CFS user space                                                NIFS/
                                                                                                                 & Policy

  and   Local FS                                                CIFS                 Command
                                                                                     translation
                                                                                                      Local FS
                                                                                                      wrapper
                                                                                                                  Engine                    Other


  wrapper                                                       User                                                                   User

                                                                            Cloud                                                      kernel
                                                                NIFS/       FS
     Command                                                    CIFS        ( CFS)
                                                                            Layer 1 Functionality
     Translation                                                Kernnel
                                                                            Layer 2 Functionality


                                                                                     Local Cache FS (LCFS)
         Cloud FS – from
         cache or not?                                                             Ext 3     reiser      other


                                  NFS /
                                  CIFS


  2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                                                                                9
User Space Vs. Kernel Space
• Most of the file systems in user
  space (using FUSE) are designed so
  for the ease of developing and
  maintaining them. Example - s3fs for
  Amazon S3 cloud.

• Doesn’t mean that performance is
  guaranteed.

• User space FS makes one or
  sometimes more than one data
  copies.

• When using a cache, in case of a hit,
  FUSE will still need a context switch
  and data copy.

• Linus Trovalds – ‘I think that arguing
  that something _can_ be done with
  fuse, and thus _should_ be done
  with fuse is just ridiculous.’

• Polpulating the local cache can be
  done by just a command, why pass a
  buffer like fuse does.

• Layered functionality inside the FS
  (for ex: splitting) is easy to
  implement and could prove useful.
    2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                              10
Policy Engine

   •    Pricing models that most clouds use –
          • Storage based              - $/GB
          • Request based              - $/1000 requests.
          • Data transfer based        - $/GB
   •    Other QoS parameters that determine choice of cloud
          • Easy provisioning
          • Multi-tenancy
          • Security
          • Reliability
   •    These parameters especially pricing is tracked by the service provider. There is no easy way for
        user to track these parameters.
   •    Also, there is no standard or specification that defines these parameters.
   •    The policy engine module, proves to be an efficient solution
          • To try and define these parameters across multiple clouds
          • To monitor, keep track of these parameters
          • Allows a rule based framework to control the access to these clouds based on the QoS
              they provide.
   •    In future maybe these QoS parameters can be standardized
   •    And made accessible via APIs, enabling users to program against these parameters

  2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                                      11
Cloud File System Solution

     Industry Challenges                                                    Calsoft Solution
                                               The policy engine in cloud interface module can be used to
      Access bandwidth, delay
                                               distribute or replicate data across multiple clouds. Loss of service
      and disruption of service
                                               from one cloud will not hamper access to any data.

                                               The plugins to interface with different clouds supporting different
        Common interface to
                                               communication protocols can be written independently and
          multiple cloud
                                               loaded at run time
                                               The policy engine can also select different security algorithms
                                               based on different clouds, which can be applied to the data while
                  Security
                                               sending out over the wire. It is more efficient since it is out of band
                                               for a cache hit scenario

                                               The Policy engine is user controlled and xml based. The rules can
         Data transfer policy
                                               be as simple and as comprehensive as needed

                                               The cloud interface and plugins can do book keeping that can be
           Auxiliary features                  used to verify amount of data transferred and compare the cost of
                                               that data transfer against the billed amount
  2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                                                   12
Conclusion

 Cloud File System is an idea that has taken into consideration
 current events in Cloud world related to Data storage as a Service
 (DaaS)

 It is a prediction of how infrastructure around cloud services and
 management has changed. This model that will improve
 performance, will enable seamless transitions across CDMI
 compliant and non-compliant clouds for large enterprises with
 very less hassle.




 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                           13
Presenter Biography




 Parag Kulkarni – VP Engineering, Calsoft Inc.
  A veteran of storage industry

  More than 19 years of experience in architecting and developing products
  Key strength lies in quickly understanding product requirements and translating them into

    architectural and engineering specs for implementation.
  Led the engineering team at Calsoft.

  Led the development of Database Editions product at Veritas (Symantec)
  A key contributing member at leading storage companies like Informix (IBM).
  Masters of Technology in Computer Science from IIT Roorkee

  Degree in Industrial Management from University of Indore, India.




 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
Author Biography




 Imran Khan – Solutions Architect, Calsoft Inc.
  A veteran of storage industry

  More than 8 years of experience in architecting and developing products

  Has dealt with products ranging from backup and replication, SAN simulators, multipathing,

    SMI-S, filesystems, journaling, link aggregation protocols.
  Key strength is the ability to have holistic view across stacks of different functionality and

    their interaction.
  Bachelors in Computers Engineering from University of Pune, India.




 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
Thank You



                                     Questions & Answers


                                                    Contact info
                                                   Parag Kulkarni
                                      VP Engineering, Calsoft Inc.
                                          Email: parag.kulkarni@calsoftinc.com
                                                Phone: +1 (408) 834 7086


 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
                                                                                 16

Mais conteúdo relacionado

Mais procurados

Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...
Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...
Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...Simplilearn
 
Cloud deployment models
Cloud deployment modelsCloud deployment models
Cloud deployment modelsAshok Kumar
 
Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...
Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...
Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...Simplilearn
 
End-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks Delta
End-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks DeltaEnd-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks Delta
End-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks DeltaDatabricks
 
Data Lake Overview
Data Lake OverviewData Lake Overview
Data Lake OverviewJames Serra
 
Cloud File System with GFS and HDFS
Cloud File System with GFS and HDFS  Cloud File System with GFS and HDFS
Cloud File System with GFS and HDFS Dr Neelesh Jain
 
Virtualization in Cloud Computing and Machine reference Model
Virtualization in Cloud Computing and Machine reference ModelVirtualization in Cloud Computing and Machine reference Model
Virtualization in Cloud Computing and Machine reference ModelDr Neelesh Jain
 
Big Data Evolution
Big Data EvolutionBig Data Evolution
Big Data Evolutionitnewsafrica
 
What are Hadoop Components? Hadoop Ecosystem and Architecture | Edureka
What are Hadoop Components? Hadoop Ecosystem and Architecture | EdurekaWhat are Hadoop Components? Hadoop Ecosystem and Architecture | Edureka
What are Hadoop Components? Hadoop Ecosystem and Architecture | EdurekaEdureka!
 
SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience aniadkar
 
Siligong.Data - May 2021 - Transforming your analytics workflow with dbt
Siligong.Data - May 2021 - Transforming your analytics workflow with dbtSiligong.Data - May 2021 - Transforming your analytics workflow with dbt
Siligong.Data - May 2021 - Transforming your analytics workflow with dbtJon Su
 
Introduction to data warehousing
Introduction to data warehousing   Introduction to data warehousing
Introduction to data warehousing Girish Dhareshwar
 
Cloud Computing and Service oriented Architecture
Cloud Computing and Service oriented Architecture Cloud Computing and Service oriented Architecture
Cloud Computing and Service oriented Architecture Ravindra Dastikop
 

Mais procurados (20)

Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...
Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...
Hadoop Tutorial For Beginners | Apache Hadoop Tutorial For Beginners | Hadoop...
 
Cloud deployment models
Cloud deployment modelsCloud deployment models
Cloud deployment models
 
Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...
Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...
Introduction To Hadoop | What Is Hadoop And Big Data | Hadoop Tutorial For Be...
 
End-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks Delta
End-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks DeltaEnd-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks Delta
End-to-End Spark/TensorFlow/PyTorch Pipelines with Databricks Delta
 
Data Lake Overview
Data Lake OverviewData Lake Overview
Data Lake Overview
 
Cloud File System with GFS and HDFS
Cloud File System with GFS and HDFS  Cloud File System with GFS and HDFS
Cloud File System with GFS and HDFS
 
Introduction to ETL and Data Integration
Introduction to ETL and Data IntegrationIntroduction to ETL and Data Integration
Introduction to ETL and Data Integration
 
Virtualization in Cloud Computing and Machine reference Model
Virtualization in Cloud Computing and Machine reference ModelVirtualization in Cloud Computing and Machine reference Model
Virtualization in Cloud Computing and Machine reference Model
 
Cloud Computing Architecture
Cloud Computing ArchitectureCloud Computing Architecture
Cloud Computing Architecture
 
Big Data Evolution
Big Data EvolutionBig Data Evolution
Big Data Evolution
 
Unit 2
Unit 2Unit 2
Unit 2
 
Big data unit i
Big data unit iBig data unit i
Big data unit i
 
Hadoop HDFS Concepts
Hadoop HDFS ConceptsHadoop HDFS Concepts
Hadoop HDFS Concepts
 
Data warehousing
Data warehousingData warehousing
Data warehousing
 
What are Hadoop Components? Hadoop Ecosystem and Architecture | Edureka
What are Hadoop Components? Hadoop Ecosystem and Architecture | EdurekaWhat are Hadoop Components? Hadoop Ecosystem and Architecture | Edureka
What are Hadoop Components? Hadoop Ecosystem and Architecture | Edureka
 
SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience SUN Network File system - Design, Implementation and Experience
SUN Network File system - Design, Implementation and Experience
 
Hadoop
HadoopHadoop
Hadoop
 
Siligong.Data - May 2021 - Transforming your analytics workflow with dbt
Siligong.Data - May 2021 - Transforming your analytics workflow with dbtSiligong.Data - May 2021 - Transforming your analytics workflow with dbt
Siligong.Data - May 2021 - Transforming your analytics workflow with dbt
 
Introduction to data warehousing
Introduction to data warehousing   Introduction to data warehousing
Introduction to data warehousing
 
Cloud Computing and Service oriented Architecture
Cloud Computing and Service oriented Architecture Cloud Computing and Service oriented Architecture
Cloud Computing and Service oriented Architecture
 

Destaque

Virtual Machine Migration & Hypervisors
Virtual Machine Migration & HypervisorsVirtual Machine Migration & Hypervisors
Virtual Machine Migration & HypervisorsArun Shukla
 
Alten calsoft labs analytics service offerings
Alten calsoft labs   analytics service offeringsAlten calsoft labs   analytics service offerings
Alten calsoft labs analytics service offeringsSandeep Vyas
 
Storage Virtualization
Storage VirtualizationStorage Virtualization
Storage Virtualizationrjain51
 
5. IO virtualization
5. IO virtualization5. IO virtualization
5. IO virtualizationHwanju Kim
 
4. Memory virtualization and management
4. Memory virtualization and management4. Memory virtualization and management
4. Memory virtualization and managementHwanju Kim
 
An Introduction to Soft Computing
An Introduction to Soft ComputingAn Introduction to Soft Computing
An Introduction to Soft ComputingTameem Ahmad
 
VMware Esx Short Presentation
VMware Esx Short PresentationVMware Esx Short Presentation
VMware Esx Short PresentationBarcamp Cork
 
virtualization and hypervisors
virtualization and hypervisorsvirtualization and hypervisors
virtualization and hypervisorsGaurav Suri
 
Virtualization Techniques & Cloud Compting
Virtualization Techniques & Cloud ComptingVirtualization Techniques & Cloud Compting
Virtualization Techniques & Cloud ComptingAhmed Mekkawy
 
Cloud operating system
Cloud operating systemCloud operating system
Cloud operating systemsadak pramodh
 
Soft computing (ANN and Fuzzy Logic) : Dr. Purnima Pandit
Soft computing (ANN and Fuzzy Logic)  : Dr. Purnima PanditSoft computing (ANN and Fuzzy Logic)  : Dr. Purnima Pandit
Soft computing (ANN and Fuzzy Logic) : Dr. Purnima PanditPurnima Pandit
 
Virtualization and cloud Computing
Virtualization and cloud ComputingVirtualization and cloud Computing
Virtualization and cloud ComputingRishikese MR
 

Destaque (20)

Memory ballooning
Memory ballooningMemory ballooning
Memory ballooning
 
tutorial presentation
tutorial presentationtutorial presentation
tutorial presentation
 
Virtual Machine Migration & Hypervisors
Virtual Machine Migration & HypervisorsVirtual Machine Migration & Hypervisors
Virtual Machine Migration & Hypervisors
 
Alten calsoft labs analytics service offerings
Alten calsoft labs   analytics service offeringsAlten calsoft labs   analytics service offerings
Alten calsoft labs analytics service offerings
 
Memory virtualization
Memory virtualizationMemory virtualization
Memory virtualization
 
No sql databases
No sql databasesNo sql databases
No sql databases
 
Storage Virtualization
Storage VirtualizationStorage Virtualization
Storage Virtualization
 
5. IO virtualization
5. IO virtualization5. IO virtualization
5. IO virtualization
 
4. Memory virtualization and management
4. Memory virtualization and management4. Memory virtualization and management
4. Memory virtualization and management
 
An Introduction to Soft Computing
An Introduction to Soft ComputingAn Introduction to Soft Computing
An Introduction to Soft Computing
 
VMware Esx Short Presentation
VMware Esx Short PresentationVMware Esx Short Presentation
VMware Esx Short Presentation
 
virtualization and hypervisors
virtualization and hypervisorsvirtualization and hypervisors
virtualization and hypervisors
 
Alten calsoft labs corporate Info
Alten calsoft labs   corporate InfoAlten calsoft labs   corporate Info
Alten calsoft labs corporate Info
 
Virtualization Techniques & Cloud Compting
Virtualization Techniques & Cloud ComptingVirtualization Techniques & Cloud Compting
Virtualization Techniques & Cloud Compting
 
Basics of Soft Computing
Basics of Soft  Computing Basics of Soft  Computing
Basics of Soft Computing
 
Cloud operating system
Cloud operating systemCloud operating system
Cloud operating system
 
Soft computing (ANN and Fuzzy Logic) : Dr. Purnima Pandit
Soft computing (ANN and Fuzzy Logic)  : Dr. Purnima PanditSoft computing (ANN and Fuzzy Logic)  : Dr. Purnima Pandit
Soft computing (ANN and Fuzzy Logic) : Dr. Purnima Pandit
 
CMS on AWS Deep Dive
CMS on AWS Deep DiveCMS on AWS Deep Dive
CMS on AWS Deep Dive
 
Virtualization basics
Virtualization basics Virtualization basics
Virtualization basics
 
Virtualization and cloud Computing
Virtualization and cloud ComputingVirtualization and cloud Computing
Virtualization and cloud Computing
 

Semelhante a Cloud File System and Cloud Data Management Interface (CDMI)

Be Prepared for Tomorrow's IT Forecast Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast Great Chance of Hybrid CloudsBe Prepared for Tomorrow's IT Forecast Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast Great Chance of Hybrid CloudsEucalyptus Systems, Inc.
 
Be Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid CloudsBe Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid CloudsEucalyptus Systems, Inc.
 
Database consolidation onto private
Database consolidation onto privateDatabase consolidation onto private
Database consolidation onto privateStudying
 
SNIA Cloud Storage Presentation
SNIA Cloud Storage PresentationSNIA Cloud Storage Presentation
SNIA Cloud Storage PresentationMark Carlson
 
Cloud Computing at UTM Shillong
Cloud Computing at UTM ShillongCloud Computing at UTM Shillong
Cloud Computing at UTM ShillongCapgemini
 
V fabricoverveiw telkom
V fabricoverveiw telkomV fabricoverveiw telkom
V fabricoverveiw telkomAbdul Zaelani
 
Building a foundation for a high-performance, low cost private cloud
Building a foundation for a  high-performance, low cost  private cloudBuilding a foundation for a  high-performance, low cost  private cloud
Building a foundation for a high-performance, low cost private cloudIBM India Smarter Computing
 
3 Step Path to Storage Cloud Services using IBM System Storage
3 Step Path to Storage Cloud Services using IBM System Storage3 Step Path to Storage Cloud Services using IBM System Storage
3 Step Path to Storage Cloud Services using IBM System StorageIBM India Smarter Computing
 
Taking the Containers First Approach
Taking the Containers First ApproachTaking the Containers First Approach
Taking the Containers First Approachstrikr .
 
Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...
Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...
Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...IBM India Smarter Computing
 
Enterprise Private Cloud Computing
Enterprise Private Cloud ComputingEnterprise Private Cloud Computing
Enterprise Private Cloud ComputingCisco Canada
 
Postgres Plus Cloud Database
Postgres Plus Cloud DatabasePostgres Plus Cloud Database
Postgres Plus Cloud DatabaseGary Carter
 
Cloud computing
Cloud computingCloud computing
Cloud computingMed Zaibi
 
Cloud Storage Adoption, Practice, and Deployment
Cloud Storage Adoption, Practice, and DeploymentCloud Storage Adoption, Practice, and Deployment
Cloud Storage Adoption, Practice, and DeploymentGlusterFS
 
Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012CLOUDIAN KK
 

Semelhante a Cloud File System and Cloud Data Management Interface (CDMI) (20)

Be Prepared for Tomorrow's IT Forecast Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast Great Chance of Hybrid CloudsBe Prepared for Tomorrow's IT Forecast Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast Great Chance of Hybrid Clouds
 
Be Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid CloudsBe Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid Clouds
Be Prepared for Tomorrow's IT Forecast: Great Chance of Hybrid Clouds
 
Cloud management march 20 - v7 sgc
Cloud management  march 20 - v7 sgcCloud management  march 20 - v7 sgc
Cloud management march 20 - v7 sgc
 
Database consolidation onto private
Database consolidation onto privateDatabase consolidation onto private
Database consolidation onto private
 
SNIA Cloud Storage Presentation
SNIA Cloud Storage PresentationSNIA Cloud Storage Presentation
SNIA Cloud Storage Presentation
 
Cloud Computing at UTM Shillong
Cloud Computing at UTM ShillongCloud Computing at UTM Shillong
Cloud Computing at UTM Shillong
 
V fabricoverveiw telkom
V fabricoverveiw telkomV fabricoverveiw telkom
V fabricoverveiw telkom
 
MISA Cloud workshop - Cloud 101
MISA Cloud workshop - Cloud 101MISA Cloud workshop - Cloud 101
MISA Cloud workshop - Cloud 101
 
Building a foundation for a high-performance, low cost private cloud
Building a foundation for a  high-performance, low cost  private cloudBuilding a foundation for a  high-performance, low cost  private cloud
Building a foundation for a high-performance, low cost private cloud
 
3 Step Path to Storage Cloud Services using IBM System Storage
3 Step Path to Storage Cloud Services using IBM System Storage3 Step Path to Storage Cloud Services using IBM System Storage
3 Step Path to Storage Cloud Services using IBM System Storage
 
Taking the Containers First Approach
Taking the Containers First ApproachTaking the Containers First Approach
Taking the Containers First Approach
 
Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...
Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...
Scale-Out Network-Attached Storage Addresses Storage Problems for Private Clo...
 
Enterprise Private Cloud Computing
Enterprise Private Cloud ComputingEnterprise Private Cloud Computing
Enterprise Private Cloud Computing
 
Postgres Plus Cloud Database
Postgres Plus Cloud DatabasePostgres Plus Cloud Database
Postgres Plus Cloud Database
 
Effective storagemanagementforcloudcomputing
Effective storagemanagementforcloudcomputingEffective storagemanagementforcloudcomputing
Effective storagemanagementforcloudcomputing
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
Blue Skies for Your Cloud with IBM XIV Storage
Blue Skies for Your Cloud with IBM XIV Storage Blue Skies for Your Cloud with IBM XIV Storage
Blue Skies for Your Cloud with IBM XIV Storage
 
Cloud Computing
Cloud ComputingCloud Computing
Cloud Computing
 
Cloud Storage Adoption, Practice, and Deployment
Cloud Storage Adoption, Practice, and DeploymentCloud Storage Adoption, Practice, and Deployment
Cloud Storage Adoption, Practice, and Deployment
 
Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012Cloudian_Cassandra Summit 2012
Cloudian_Cassandra Summit 2012
 

Último

[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Bhuvaneswari Subramani
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 

Último (20)

[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 

Cloud File System and Cloud Data Management Interface (CDMI)

  • 1. Cloud File System Gateway & Cloud Data Management Interface (CDMI) Author: Imran Khan, Solutions Architect, Calsoft Inc. Presenter: Parag Kulkarni, VP Engineering, Calsoft Inc. 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
  • 2. Agenda  Cloud Storage Industry Challenges  Brief about CDMI  Cloud File System(FS)  Cloud FS Architecture  Cloud FS Modules  Cloud FS Solution  Conclusion  Q&A Session 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 2
  • 3. Abstract Seamless extension of NAS to Cloud Storage using Cloud File System Today NAS stores data on local disks and/or SAN disks. Most enterprises have sufficient file storage capacity to run their day-to-day operations provided some older data is moved to secondary storage. But since most data resides on primary storage (or secondary storage within enterprise boundaries) it becomes necessary to extend storage capacity for NAS. With Cloud storage becoming more secure, accessible, easy to use and cost effective, it can be a considered as secondary storage for enterprise NAS – Hierarchical Storage Management. We can even use cloud storage as primary storage by using enterprise storage devices for caching to improve cloud data access throughput. Adding CDMI based interfaces to cloud file system enables us to integrate with any cloud storage provider and store file based data to cloud storage easily. Cloud File System presented and implemented by Calsoft integrates with many cloud storage providers using CDMI. This helps enterprises store file based data to cloud storage and provides throughput similar to local NAS by using efficient caching techniques. 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 3
  • 4. Learning Objectives Challenges  To store ever growing data and optimally manage storage capacity  Hierarchal Storage Management across enterprise storage and cloud storage  Measure/monitor user guarantees and SLAs and map them over multiple clouds  Optimizing storage capacity between on-premise and cloud storage pools  To migrate between cloud storage platforms Solution  Adoption of Cloud Storage  CDMI – move to build an open standards for storing data in the Cloud  No impact on existing users/apps using NAS  Abstract policy engine to monitor and map the SLAs 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 4
  • 5. Cloud Storage Industry Challenges Access Bandwidth, Delay And Disruption Of Service Common Interface To Multiple Clouds Data Security Data Transfer Policy Auxiliary Features 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 5
  • 6. Cloud Data Management Interface CDMI  A protocol for self-provisioning, administering and accessing cloud storage.  It defines RESTful HTTP operations for assessing capabilities of cloud storage system and exporting data via other protocols such as CIFS and NFS CDMI Benefits  To manage containers, domains, security access  Easy of monitoring / billing  For storage that is functionally accessible by legacy or proprietary protocols 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 6
  • 7. Calsoft’s Cloud File System Leveraging CDMI to provide a common interface to interact with multiple clouds Cloud Access Cloud Request Multiple Cloud Framework • File system • Convert the • Enables interface to the filesystem interaction with cloud access. demand into multiple clouds, cloud requests while abstracting • Filesystem cache out many the data from the • Convert the data operations cloud to provide a objects back to quicker access common file • Dynamically model changes support • Filesystem for various cloud interface vendors provided to the clients using NFS, • Provides a set of CIFS etc policies to control access patterns 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 7
  • 8. Cloud File System Architecture User 1 C CDMI I CDMI Compliant User 2 F CLOUD DATA 3rd party Cloud Cloud 1 Cloud ACCESSS Storage Plug-in Storage S Cloud 2 / LAYER SOAP / REST User 3 N / WebDAV F USER MANAGEMENT Cloud 1 - CDMI S POLICY MANAGEMENT Non Compliant Cloud Storage User 4 Etc. S E …… R LVM, Disk Driver, RAID, etc. V Cloud 2 - CDMI User n E Non Compliant R Cloud Storage CLOUD FILE SYSTEM Local / SAN Disks 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 8
  • 9. Cloud File System Modules Cloud S3 Plugins Cloud interface Other and the policy CFS User Space Cloud engine Interface Other CFS user space NIFS/ & Policy and Local FS CIFS Command translation Local FS wrapper Engine Other wrapper User User Cloud kernel NIFS/ FS Command CIFS ( CFS) Layer 1 Functionality Translation Kernnel Layer 2 Functionality Local Cache FS (LCFS) Cloud FS – from cache or not? Ext 3 reiser other NFS / CIFS 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 9
  • 10. User Space Vs. Kernel Space • Most of the file systems in user space (using FUSE) are designed so for the ease of developing and maintaining them. Example - s3fs for Amazon S3 cloud. • Doesn’t mean that performance is guaranteed. • User space FS makes one or sometimes more than one data copies. • When using a cache, in case of a hit, FUSE will still need a context switch and data copy. • Linus Trovalds – ‘I think that arguing that something _can_ be done with fuse, and thus _should_ be done with fuse is just ridiculous.’ • Polpulating the local cache can be done by just a command, why pass a buffer like fuse does. • Layered functionality inside the FS (for ex: splitting) is easy to implement and could prove useful. 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 10
  • 11. Policy Engine • Pricing models that most clouds use – • Storage based - $/GB • Request based - $/1000 requests. • Data transfer based - $/GB • Other QoS parameters that determine choice of cloud • Easy provisioning • Multi-tenancy • Security • Reliability • These parameters especially pricing is tracked by the service provider. There is no easy way for user to track these parameters. • Also, there is no standard or specification that defines these parameters. • The policy engine module, proves to be an efficient solution • To try and define these parameters across multiple clouds • To monitor, keep track of these parameters • Allows a rule based framework to control the access to these clouds based on the QoS they provide. • In future maybe these QoS parameters can be standardized • And made accessible via APIs, enabling users to program against these parameters 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 11
  • 12. Cloud File System Solution Industry Challenges Calsoft Solution The policy engine in cloud interface module can be used to Access bandwidth, delay distribute or replicate data across multiple clouds. Loss of service and disruption of service from one cloud will not hamper access to any data. The plugins to interface with different clouds supporting different Common interface to communication protocols can be written independently and multiple cloud loaded at run time The policy engine can also select different security algorithms based on different clouds, which can be applied to the data while Security sending out over the wire. It is more efficient since it is out of band for a cache hit scenario The Policy engine is user controlled and xml based. The rules can Data transfer policy be as simple and as comprehensive as needed The cloud interface and plugins can do book keeping that can be Auxiliary features used to verify amount of data transferred and compare the cost of that data transfer against the billed amount 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 12
  • 13. Conclusion Cloud File System is an idea that has taken into consideration current events in Cloud world related to Data storage as a Service (DaaS) It is a prediction of how infrastructure around cloud services and management has changed. This model that will improve performance, will enable seamless transitions across CDMI compliant and non-compliant clouds for large enterprises with very less hassle. 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 13
  • 14. Presenter Biography Parag Kulkarni – VP Engineering, Calsoft Inc.  A veteran of storage industry  More than 19 years of experience in architecting and developing products  Key strength lies in quickly understanding product requirements and translating them into architectural and engineering specs for implementation.  Led the engineering team at Calsoft.  Led the development of Database Editions product at Veritas (Symantec)  A key contributing member at leading storage companies like Informix (IBM).  Masters of Technology in Computer Science from IIT Roorkee  Degree in Industrial Management from University of Indore, India. 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
  • 15. Author Biography Imran Khan – Solutions Architect, Calsoft Inc.  A veteran of storage industry  More than 8 years of experience in architecting and developing products  Has dealt with products ranging from backup and replication, SAN simulators, multipathing, SMI-S, filesystems, journaling, link aggregation protocols.  Key strength is the ability to have holistic view across stacks of different functionality and their interaction.  Bachelors in Computers Engineering from University of Pune, India. 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved.
  • 16. Thank You Questions & Answers Contact info Parag Kulkarni VP Engineering, Calsoft Inc. Email: parag.kulkarni@calsoftinc.com Phone: +1 (408) 834 7086 2012 Storage Developer Conference. © Calsoft Inc.. All Rights Reserved. 16