SlideShare une entreprise Scribd logo
1  sur  16
Télécharger pour lire hors ligne
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

Contenu connexe

Tendances

Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)nikhilus85
 
Open wrtでwired likeなwifinwを作ってみた。
Open wrtでwired likeなwifinwを作ってみた。Open wrtでwired likeなwifinwを作ってみた。
Open wrtでwired likeなwifinwを作ってみた。m_masataka
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon Web Services Korea
 
監視基盤 ~ZabbixとCloudWatch~
監視基盤 ~ZabbixとCloudWatch~監視基盤 ~ZabbixとCloudWatch~
監視基盤 ~ZabbixとCloudWatch~真乙 九龍
 
기업 통합 패턴(Enterprise Integration Patterns) 강의
기업 통합 패턴(Enterprise Integration Patterns) 강의기업 통합 패턴(Enterprise Integration Patterns) 강의
기업 통합 패턴(Enterprise Integration Patterns) 강의정호 차
 
Cloud sim pptx
Cloud sim pptxCloud sim pptx
Cloud sim pptxMD Redaan
 
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning InfrastructureML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning InfrastructureFei Chen
 
分散トレーシングAWS:X-Rayとの上手い付き合い方
分散トレーシングAWS:X-Rayとの上手い付き合い方分散トレーシングAWS:X-Rayとの上手い付き合い方
分散トレーシングAWS:X-Rayとの上手い付き合い方Recruit Lifestyle Co., Ltd.
 
우아한유스방
우아한유스방우아한유스방
우아한유스방BYUNGHOKIM10
 
인사이트™ vs 타사 웹로그분석 제품 비교
인사이트™ vs 타사 웹로그분석 제품 비교 인사이트™ vs 타사 웹로그분석 제품 비교
인사이트™ vs 타사 웹로그분석 제품 비교 BizSpring Inc.
 
How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...
How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...
How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...Amazon Web Services
 
コンテナ/マイクロサービス/サーバーレスのセキュリティと監査
コンテナ/マイクロサービス/サーバーレスのセキュリティと監査コンテナ/マイクロサービス/サーバーレスのセキュリティと監査
コンテナ/マイクロサービス/サーバーレスのセキュリティと監査Eiji Sasahara, Ph.D., MBA 笹原英司
 
Fake news detection
Fake news detection Fake news detection
Fake news detection shalushamil
 
IaaS - Infrastructure as a Service
IaaS - Infrastructure as a ServiceIaaS - Infrastructure as a Service
IaaS - Infrastructure as a ServiceRajind Ruparathna
 
Machine learning life cycle
Machine learning life cycleMachine learning life cycle
Machine learning life cycleRamjee Ganti
 
20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報
20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報
20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報Amazon Web Services Japan
 
Machine Learning Approaches for Crime Pattern Detection
Machine Learning Approaches for Crime Pattern DetectionMachine Learning Approaches for Crime Pattern Detection
Machine Learning Approaches for Crime Pattern DetectionAPNIC
 

Tendances (20)

Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)Action Recognition (Thesis presentation)
Action Recognition (Thesis presentation)
 
Amazon VPCトレーニング-VPCの説明
Amazon VPCトレーニング-VPCの説明Amazon VPCトレーニング-VPCの説明
Amazon VPCトレーニング-VPCの説明
 
Open wrtでwired likeなwifinwを作ってみた。
Open wrtでwired likeなwifinwを作ってみた。Open wrtでwired likeなwifinwを作ってみた。
Open wrtでwired likeなwifinwを作ってみた。
 
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
Amazon EMR - Enhancements on Cost/Performance, Serverless - 발표자: 김기영, Sr Anal...
 
監視基盤 ~ZabbixとCloudWatch~
監視基盤 ~ZabbixとCloudWatch~監視基盤 ~ZabbixとCloudWatch~
監視基盤 ~ZabbixとCloudWatch~
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
기업 통합 패턴(Enterprise Integration Patterns) 강의
기업 통합 패턴(Enterprise Integration Patterns) 강의기업 통합 패턴(Enterprise Integration Patterns) 강의
기업 통합 패턴(Enterprise Integration Patterns) 강의
 
Cloud sim pptx
Cloud sim pptxCloud sim pptx
Cloud sim pptx
 
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning InfrastructureML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure
ML Platform Q1 Meetup: Airbnb's End-to-End Machine Learning Infrastructure
 
分散トレーシングAWS:X-Rayとの上手い付き合い方
分散トレーシングAWS:X-Rayとの上手い付き合い方分散トレーシングAWS:X-Rayとの上手い付き合い方
分散トレーシングAWS:X-Rayとの上手い付き合い方
 
우아한유스방
우아한유스방우아한유스방
우아한유스방
 
인사이트™ vs 타사 웹로그분석 제품 비교
인사이트™ vs 타사 웹로그분석 제품 비교 인사이트™ vs 타사 웹로그분석 제품 비교
인사이트™ vs 타사 웹로그분석 제품 비교
 
How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...
How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...
How Esri Optimizes Massive Image Archives for Analytics in the Cloud - ABD402...
 
コンテナ/マイクロサービス/サーバーレスのセキュリティと監査
コンテナ/マイクロサービス/サーバーレスのセキュリティと監査コンテナ/マイクロサービス/サーバーレスのセキュリティと監査
コンテナ/マイクロサービス/サーバーレスのセキュリティと監査
 
Fake news detection
Fake news detection Fake news detection
Fake news detection
 
IaaS - Infrastructure as a Service
IaaS - Infrastructure as a ServiceIaaS - Infrastructure as a Service
IaaS - Infrastructure as a Service
 
Machine learning life cycle
Machine learning life cycleMachine learning life cycle
Machine learning life cycle
 
20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報
20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報
20211203 AWS Black Belt Online Seminar AWS re:Invent 2021アップデート速報
 
Machine Learning Approaches for Crime Pattern Detection
Machine Learning Approaches for Crime Pattern DetectionMachine Learning Approaches for Crime Pattern Detection
Machine Learning Approaches for Crime Pattern Detection
 
Virtualization in cloud computing
Virtualization in cloud computingVirtualization in cloud computing
Virtualization in cloud computing
 

En vedette

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
 

En vedette (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
 

Similaire à 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
 

Similaire à 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
 

Dernier

Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 

Dernier (20)

Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 

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