Big Data Analytics on Object Storage -- Hadoop over Ceph* Object Storage with SSD Cache

Size: px
Start display at page:

Download "Big Data Analytics on Object Storage -- Hadoop over Ceph* Object Storage with SSD Cache"

Transcription

1 Big Data Analytics on Object Storage -- Hadoop over Ceph* Object Storage with SSD Cache David Cohen ) Yuan Zhou Jun Sun Weiting Chen Sep 2015

2 Agenda Big Data Analytics over Cloud Deployment considerations Design details of BDA over Ceph* Object Storage Sample Performance testing and results 2

3 Introduction Intel Cloud computing and Big Data Engineering Team Global team, local focus Open Spark, Hadoop, OpenStack, Ceph, NoSQL etc. Working with community and end customers closely Technology and Innovation oriented Real-time, in-memory, complex analytics Structure and unstructured data Agility, Multitenancy, Scalability and elasticity Bridging advanced research and real-world applications 3

4 Agenda Big Data Analytics over Cloud Deployment considerations Design details of BDA over Ceph* Object Storage Sample Performance testing and results 4

5 Big Data Analytics over Cloud You or someone at your company is using AWS, Azure, or Google cloud platform You re probably doing it for easy access to OS instances, but also the modern application features, e.g. AWS EMR or RDS or Storage Migrating to, or even using, OpenStack infrastructure for workloads means having application features, e.g. Sahara & Trove Writing applications is complex enough without having to manage supporting (non-value-add) infrastructure Things are also happening on the cloud computing side 5

6 Big Data Analytics over Cloud: OpenStack Sahara Repeatable cluster provisioning and management operations Data processing workflows (EDP) Cluster scaling (elasticity), Storage integration (Swift, Cinder, HCFS) Network and security group (firewall) integration Service anti-affinity (fault domains & efficiency) 6

7 Big data analytics on Object Storage Object storage provides restful/http access which is a good choice for archival storage It s just like a K-V storage and be able to build on commodity hardware Currently Hadoop solution usually relies on HDFS Hadoop over Swift (SwiftFS) provides an much easier way Which saves much efforts on the copying between HDFS and local storage 7

8 Agenda Big Data Analytics over Cloud Deployment considerations Design details of BDA over Ceph* Object Storage Sample Performance testing and results 8

9 Deployment Consideration Matrix Data Processing API Traditional EDP (Sahara native) 3rd party APIs Distro/Plugin Vanilla Spark Storm CDH HDP MapR Compute VM Container Bare-metal Storage Tenant vs. Admin provisioned Disaggregated vs. Collocated HDFS vs. other options 9

10 Storage Architecture Tenant provisioned (in VM) HDFS in the same VMs of computing tasks vs. in the different VMs Ephemeral disk vs. Cinder volume #1 Computing Task HDF S VM #2 #3 #4 Computing Task VM Computing Task VM HDF S VM Computing Task VM Computing Task VM Admin provided Logically disaggregated from computing tasks Physical collocation is a matter of deployment For network remote storage, Neutron DVR is very useful feature A disaggregated (and centralized) storage system has significant values No data silos, more business opportunities Could leverage Manila service Allow to create advanced solutions (.e.g. inmemory overlayer) More vendor specific optimization opportunities Legacy NFS Host HDFS GlusterFS Host HDFS Ceph* External HDFS Host HDFS Scenario #1: computing and data service collocate in the VMs Scenario #2: data service locates in the host world Scenario #3: data service locates in a separate VM world Scenario #4: data service locates in the remote network Swift 10

11 Agenda Big Data Analytics over Cloud Deployment considerations Design details of BDA over Ceph* Object Storage Sample Performance testing and results 11

12 Big data analytics on Ceph Object Storage Ceph provides a unified storage solution, which saves more man power to maintain another different setup for storage. We plan to build a reference solution on Hadoop over multiple Ceph* with SSD cache, similar with Hadoop over Swift. In this solution there s a requirement that all the storage servers are in a isolated network with the Hadoop cluster. The instances will play as the connectors of these two networks. We'll leverage Ceph* Cache Tier technology to cache the data in each servers. The reason for not using CephFS: CephFS is not so mature comparing with Existing deployment in DC may require a isolated network between storage and compute nodes 11

13 Servic e Isolated network Ceph* RADO S Scheduler FS 1 - Proxy (NEW!) MON Gateway 2 Server 1 M/R FS 3 (modified) OSD(SSD ) Rack 1 4 OSD(SSD ) Rack 2 Server 2 M/R FS (modified) OSD OSD OSD OSD OSD OSD Gateway OSD(SSD ) OSD(SSD ) Cache Tier Base Tier Ceph* with SSD cache 1. Scheduler ask service where a particular block locates (control path) -Proxy returns the closest active instance(s) 2. Scheduler allocates a task on the server that is near to the data 3. Task access data from nearby (data path) 4. get/put data from the CT, and CT would get/put data from BT if necessary (data path) 12

14 FS a new adaptor for HCFS Scheduler :// FS RADOS New filesystem URL rgw:// 1. Forked from Hadoop-8545(SwiftFS) 2. Hadoop is able to talk to a cluster with this plugin 3. A new block concept was added since Swift doesn t support blocks file1 Thus scheduler could use multiple tasks to access the same file Based on the location, FS is able to read from the closest through range GET API

15 -Proxy Give out the closest instance -Proxy (NEW!) Scheduler :// FS RADOS file1 1. Before get/put, FS would try to get the location of each block from -Proxy 1. One topology file of the cluster is generated 2. -Proxy would get the manifest from the head object first(librados + getxattr) 3. Then based on the crushmap -proxy can get the location of each object block(ceph osd map) 4. -proxy could get the closest the data osd info and the topology file(simple lookup in the topology file)

16 Serve the data requests 1. Setting up on a Cache Tier thus we could use SSD as the cache. Scheduler FS 1. With some dedicated chunk size: e.g., 64MB considering the data are quite big usually 2. rgw_max_chunk_size, rgw_obj_strip_size 2. Based on the account/container/object name, could get/put the content. 1. Using Range Read to get each chunk 3. We ll use write-through mode here as a start point to bypass the data consistency issue. Service Ceph* RADOS - Proxy (NEW!) MON Gateway (modified) OSD OSD (modified) OSD OSD OSD OSD OSD OSD Gateway OSD OSD Cache Tier Base Tier 15

17 Rack 1 Server 1 Rack 2 Server 2 Sample Get(mapper) Servic e Ceph* RADO S Scheduler FS 1 - Proxy (NEW!) MON Gateway 2 M/R FS 3 (modified) OSD(SSD ) 4 OSD(SSD ) M/R FS (modified) OSD OSD OSD OSD OSD OSD Gateway OSD(SSD ) OSD(SSD ) Cach e Tier Base Tier Scheduler asks -Proxy for the location of a big data file -Proxy looks for this file in a specified container (configured by operator) with a HEAD request to then returns the RADOS objects info in the manifest -Proxy looks for these objects in RADOS using Crush Get the target OSD in CT for each object. And with the OSD info, we know which instance is the closest. -Proxy would also monitors these instances and do the failover by returning the active instances Scheduler allocates a task on the server that is near to the data( instance) FS would issue a range read to get the block Ceph* CT would automatically handle the consistency here. 16

18 Service Ceph* RADO S Scheduler FS 1 - Proxy (NEW!) MON Gateway 2 Server 1 M/R FS 3 (modified) OSD(SSD ) Rack 1 4 OSD(SSD ) Rack 2 Server 2 M/R FS (modified) OSD OSD OSD OSD OSD OSD Gateway OSD(SSD ) OSD(SSD ) Cache Tier Base Tier Sample Put(reducer) Scheduler asks -Proxy for the location of a big data file -Proxy monitors the instances and returns an active instances list, with the closest instance at the first place and several other instances e.g., [ip1:/a/c/o(same rack), ip2:/a/c/o, ip3:/a/c/o] Reducer writes the output to would split the object into multiple RADOS objects Ceph* CT would automatically handle the consistency here. 17

19 Agenda Big Data Analytics over Cloud Deployment considerations Design details of BDA over Ceph* Sample Performance testing and results 19

20 Performance testing results VM HDFS.. VM HDFS VM VM Host Nova Inst. Store.. JBOD vs... Host Ceph/Swift JBOD o FS is Better than SwiftFS but worse than HDFS o Big gap with HDFS o Profiling data shows the biggest overhead comes from rename o Object stores use copy + delete, which is quite heavy 19

21 Rename in Reduce Task The output of the reduce function is written to a temporary location in HDFS. After completing, the output will automatically renamed from its temporary location to its final location. Object storage cannot support rename, copy and delete are used for rename function. HDFS Rename -> Change METADATA in Name Node Swift Rename -> Copy new object and Delete the older one Rename -> Copy new header file and Delete the old header file

22 Summary Big data analytics running on cloud will ease your work However each deployment has Pros and Cons Performance penalty is big, optimization needed Comparing with local HDFS setup, performance is 50% worse. The biggest gap is on the rename part. Intel is optimizing CEPH for Big data world 21

23 Next Step Finish the development(80% done) and complete the performance testing work Open source code repo(tbd) Optimize the rename part 23

24 Q&A 23

25 Legal Notices and Disclaimers Intel technologies features and benefits depend on system configuration and may require enabled hardware, software or service activation. Learn more at intel.com, or from the OEM or retailer. No computer system can be absolutely secure. Tests document performance of components on a particular test, in specific systems. Differences in hardware, software, or configuration will affect actual performance. Consult other sources of information to evaluate performance as you consider your purchase. For more complete information about performance and benchmark results, visit Cost reduction scenarios described are intended as examples of how a given Intel-based product, in the specified circumstances and configurations, may affect future costs and provide cost savings. Circumstances will vary. Intel does not guarantee any costs or cost reduction. This document contains information on products, services and/or processes in development. All information provided here is subject to change without notice. Contact your Intel representative to obtain the latest forecast, schedule, specifications and roadmaps. Statements in this document that refer to Intel s plans and expectations for the quarter, the year, and the future, are forward-looking statements that involve a number of risks and uncertainties. A detailed discussion of the factors that could affect Intel s results and plans is included in Intel s SEC filings, including the annual report on Form 10-K. The products described may contain design defects or errors known as errata which may cause the product to deviate from published specifications. Current characterized errata are available on request. No license (express or implied, by estoppel or otherwise) to any intellectual property rights is granted by this document. Intel does not control or audit third-party benchmark data or the web sites referenced in this document. You should visit the referenced web site and confirm whether referenced data are accurate. Intel, Xeon and the Intel logo are trademarks of Intel Corporation in the United States and other countries. *Other names and brands may be claimed as the property of others Intel Corporation. 24

26 Legal Information: Benchmark and Performance Claims Disclaimers Software and workloads used in performance tests may have been optimized for performance only on Intel microprocessors. Performance tests, such as SYSmark* and MobileMark*, are measured using specific computer systems, components, software, operations and functions. Any change to any of those factors may cause the results to vary. You should consult other information and performance tests to assist you in fully evaluating your contemplated purchases, including the performance of that product when combined with other products. Tests document performance of components on a particular test, in specific systems. Differences in hardware, software, or configuration will affect actual performance. Consult other sources of information to evaluate performance as you consider your purchase. Test and System Configurations: See Back up for details. For more complete information about performance and benchmark results, visit 25

27 Risk Factors The above statements and any others in this document that refer to plans and expectations for the first quarter, the year and the future are forwardlooking statements that involve a number of risks and uncertainties. Words such as "anticipates," "expects," "intends," "plans," "believes," "seeks," "estimates," "may," "will," "should" and their variations identify forward-looking statements. Statements that refer to or are based on projections, uncertain events or assumptions also identify forward-looking statements. Many factors could affect Intel's actual results, and variances from Intel's current expectations regarding such factors could cause actual results to differ materially from those expressed in these forward-looking statements. Intel presently considers the following to be important factors that could cause actual results to differ materially from the company's expectations. Demand for Intel s products is highly variable and could differ from expectations due to factors including changes in the business and economic conditions; consumer confidence or income levels; customer acceptance of Intel s and competitors products; competitive and pricing pressures, including actions taken by competitors; supply constraints and other disruptions affecting customers; changes in customer order patterns including order cancellations; and changes in the level of inventory at customers. Intel s gross margin percentage could vary significantly from expectations based on capacity utilization; variations in inventory valuation, including variations related to the timing of qualifying products for sale; changes in revenue levels; segment product mix; the timing and execution of the manufacturing ramp and associated costs; excess or obsolete inventory; changes in unit costs; defects or disruptions in the supply of materials or resources; and product manufacturing quality/yields. Variations in gross margin may also be caused by the timing of Intel product introductions and related expenses, including marketing expenses, and Intel s ability to respond quickly to technological developments and to introduce new features into existing products, which may result in restructuring and asset impairment charges. Intel's results could be affected by adverse economic, social, political and physical/infrastructure conditions in countries where Intel, its customers or its suppliers operate, including military conflict and other security risks, natural disasters, infrastructure disruptions, health concerns and fluctuations in currency exchange rates. Results may also be affected by the formal or informal imposition by countries of new or revised export and/or import and doing-business regulations, which could be changed without prior notice. Intel operates in highly competitive industries and its operations have high costs that are either fixed or difficult to reduce in the short term. The amount, timing and execution of Intel s stock repurchase program and dividend program could be affected by changes in Intel s priorities for the use of cash, such as operational spending, capital spending, acquisitions, and as a result of changes to Intel s cash flows and changes in tax laws. Product defects or errata (deviations from published specifications) may adversely impact our expenses, revenues and reputation. Intel s results could be affected by litigation or regulatory matters involving intellectual property, stockholder, consumer, antitrust, disclosure and other issues. An unfavorable ruling could include monetary damages or an injunction prohibiting Intel from manufacturing or selling one or more products, precluding particular business practices, impacting Intel s ability to design its products, or requiring other remedies such as compulsory licensing of intellectual property. Intel s results may be affected by the timing of closing of acquisitions, divestitures and other significant transactions. A detailed discussion of these and other factors that could affect Intel s results is included in Intel s SEC filings, including the company s most recent reports on Form 10-Q, Form 10-K and earnings release. 26 Rev. 1/15/15

28 Backup 28

29 MOC Project OpenStack.pdf

30 HDFS Server 1 Server 2 Scheduler 2 M/R M/R Scheduler ask HDFS service where a particular block locates (control path) HDFS Adapter 1 HDFS Adapter 3 HDFS Adapter Scheduler allocates a task on the server that is near to the data Task access data from local (data path) HDFS Service Name Node Data Node 4 Data Node In case of write, HDFS replicates the data autonomously (data path)

31 Rack 1 Server 1 Rack 2 Server 2 Swift Swift Servic e Scheduler Swift Adapter 1 Proxy Node M/R Swift Adapter Storage Node M/R Swift Adapter Storage Node 1. Scheduler ask Swift service where a particular block locates (control path) Thru regular read API The Swift Proxy service needs to be specially configured so that it will handle the read API in an unusual way return a list of locations instead of data. 2. Scheduler allocates a task on the server that is near to the data 3. Task access data from nearby (data path) 4. In case of write, Proxy will take the responsibility to write all the replicas (data path)

32 Servic e Ceph* RADO S Scheduler Swift Adapter 1 -API (new) Gateway 2 Rack 1 Server 1 M/R Swift Adapter 3 -Data (new) 4 Rack 2 Server 2 M/R Swift Adapter -Data (new) OSD OSD OSD OSD OSD OSD Gateway 1. Scheduler ask service where a particular block locates (control path) If the data already existed in one of the gateway, - API returns the location If the data not existed, - API returns a random gateway 2. Scheduler allocates a task on the server that is near to the data 3. Task access data from nearby (data path) 4. -Data relays the request to the backend if necessary (data path) Change to the existing is required! The rest remains unchanged.

33 Rack 1 Server 1 Rack 2 Server 2 Servic e Scheduler New Adapter 1 Master (NEW!) Gateway 2 M/R New Adapter 3 (modified) 4 Gateway M/R New Adapter (modified) 1. Scheduler ask service where a particular block locates (control path) If the data already existed in one of the gateway, - API returns the location If the data not existed, - API returns a random gateway 2. Scheduler allocates a task on the server that is near to the data 3. Task access data from nearby (data path) 4. -Data relays the request to the backend if necessary (data path) Ceph* RADO S OSD OSD OSD OSD OSD OSD

34 Rack 1 Server 1 Rack 2 Server 2 Servic e Scheduler Existing HDFS Adapter 1 HDFS Name Node Gateway 2 M/R Existing HDFS Adapter 3 HDFS Data Node (modified) 4 Gateway M/R Existing HDFS Adapter HDFS Data Node (modified) 1. Scheduler ask service where a particular block locates (control path) If the data already existed in one of the gateway, - API returns the location If the data not existed, - API returns a random gateway 2. Scheduler allocates a task on the server that is near to the data 3. Task access data from nearby (data path) 4. -Data relays the request to the backend if necessary (data path) Ceph* RADO S OSD OSD OSD OSD OSD OSD

35 Existing Existing implementation works in a different way and can t meet the requirement Client Client Load Balancer Servic e Share nothing Share nothing Ceph* RADO S OSD OSD OSD OSD OSD OSD

36 Servic e Ceph* RADO S Scheduler Adapter 1 - Proxy (NEW!) Gateway 2 Server 1 M/R Adapter (modified) OSD(SS D) Rack OSD(SS D) Rack 2 Server 2 M/R Adapter (modified) OSD OSD OSD OSD OSD OSD Gateway OSD(SS D) OSD(SS D) Cach e Tier Base Tier Sample Write(reducer) multiple uploads? Scheduler asks - Proxy for the location of a big data file -Proxy returns the closest instance Reducer writes the output to would split the object into multiple RADOS objects Ceph* CT would automatically handle the consistency here.

37 Testing Environment Host OS: CentOS7 Guest OS: CentOS7 Hadoop Nodes Cluster Baremetal OpenStack using KVM qemu-kvm v1.5 OpenStack using Docker Docker v1.6 37

Benchmarking Sahara-based Big-Data-as-a-Service Solutions. Zhidong Yu, Weiting Chen (Intel) Matthew Farrellee (Red Hat) May 2015

Benchmarking Sahara-based Big-Data-as-a-Service Solutions. Zhidong Yu, Weiting Chen (Intel) Matthew Farrellee (Red Hat) May 2015 Benchmarking Sahara-based Big-Data-as-a-Service Solutions Zhidong Yu, Weiting Chen (Intel) Matthew Farrellee (Red Hat) May 2015 Agenda o Why Sahara o Sahara introduction o Deployment considerations o Performance

More information

Jun Liu, Senior Software Engineer Bianny Bian, Engineering Manager SSG/STO/PAC

Jun Liu, Senior Software Engineer Bianny Bian, Engineering Manager SSG/STO/PAC Jun Liu, Senior Software Engineer Bianny Bian, Engineering Manager SSG/STO/PAC Agenda Quick Overview of Impala Design Challenges of an Impala Deployment Case Study: Use Simulation-Based Approach to Design

More information

Data center day. Big data. Jason Waxman VP, GM, Cloud Platforms Group. August 27, 2015

Data center day. Big data. Jason Waxman VP, GM, Cloud Platforms Group. August 27, 2015 Big data Jason Waxman VP, GM, Cloud Platforms Group August 27, 2015 Big Opportunity: Extract value from data REVENUE GROWTH 50 x = Billion 1 35 ZB 2 COST SAVINGS MARGIN GAIN THINGS DATA VALUE 1. Source:

More information

investor meeting 2 0 1 5 SANTA CLARA

investor meeting 2 0 1 5 SANTA CLARA investor meeting 2 0 1 5 SANTA CLARA investor meeting 2 0 1 5 SANTA CLARA Brian Krzanich Chief Executive Officer agenda 2015 Results Intel s Corporate Strategy Intel s Foundation Intel's Growth Engines

More information

Data center day. Network Transformation. Sandra Rivera. VP, Data Center Group GM, Network Platforms Group

Data center day. Network Transformation. Sandra Rivera. VP, Data Center Group GM, Network Platforms Group Network Transformation Sandra Rivera VP, Data Center Group GM, Network Platforms Group August 27, 2015 Network Infrastructure Opportunity WIRELESS / WIRELINE INFRASTRUCTURE CLOUD & ENTERPRISE INFRASTRUCTURE

More information

Data center day. a silicon photonics update. Alexis Björlin. Vice President, General Manager Silicon Photonics Solutions Group August 27, 2015

Data center day. a silicon photonics update. Alexis Björlin. Vice President, General Manager Silicon Photonics Solutions Group August 27, 2015 a silicon photonics update Alexis Björlin Vice President, General Manager Silicon Photonics Solutions Group August 27, 2015 Innovation in the data center High Performance Compute Fast Storage Unconstrained

More information

2015 Global Technology conference. Diane Bryant Senior Vice President & General Manager Data Center Group Intel Corporation

2015 Global Technology conference. Diane Bryant Senior Vice President & General Manager Data Center Group Intel Corporation 2015 Global Technology conference Diane Bryant Senior Vice President & General Manager Data Center Group Intel Corporation Risk Factors The above statements and any others in this document that refer to

More information

Douglas Fisher Vice President General Manager, Software and Services Group Intel Corporation

Douglas Fisher Vice President General Manager, Software and Services Group Intel Corporation Douglas Fisher Vice President General Manager, Software and Services Group Intel Corporation Other brands and names are the property of their respective owners. Other brands and names are the property

More information

NASDAQ CONFERENCE. Doug Davis Sr. Vice President and General Manager, internet of Things Group

NASDAQ CONFERENCE. Doug Davis Sr. Vice President and General Manager, internet of Things Group NASDAQ CONFERENCE 2015 Doug Davis Sr. Vice President and General Manager, internet of Things Group Risk factors Today s presentations contain forward-looking statements. All statements made that are not

More information

Media Cloud Based on Intel Graphics Virtualization Technology (Intel GVT-g) and OpenStack *

Media Cloud Based on Intel Graphics Virtualization Technology (Intel GVT-g) and OpenStack * Media Cloud Based on Intel Graphics Virtualization Technology (Intel GVT-g) and OpenStack * Xiao Zheng Software Engineer, Intel Corporation 1 SFTS002 Make the Future with China! Agenda Media Cloud Media

More information

CFO Commentary on Full Year 2015 and Fourth-Quarter Results

CFO Commentary on Full Year 2015 and Fourth-Quarter Results Intel Corporation 2200 Mission College Blvd. Santa Clara, CA 95054-1549 CFO Commentary on Full Year 2015 and Fourth-Quarter Results Summary The fourth quarter was a strong finish to the year with record

More information

Intel Reports Second-Quarter Revenue of $13.2 Billion, Consistent with Outlook

Intel Reports Second-Quarter Revenue of $13.2 Billion, Consistent with Outlook Intel Corporation 2200 Mission College Blvd. Santa Clara, CA 95054-1549 News Release Intel Reports Second-Quarter Revenue of $13.2 Billion, Consistent with Outlook News Highlights: Revenue of $13.2 billion

More information

Best Practices for Increasing Ceph Performance with SSD

Best Practices for Increasing Ceph Performance with SSD Best Practices for Increasing Ceph Performance with SSD Jian Zhang Jian.zhang@intel.com Jiangang Duan Jiangang.duan@intel.com Agenda Introduction Filestore performance on All Flash Array KeyValueStore

More information

Intel Many Integrated Core Architecture: An Overview and Programming Models

Intel Many Integrated Core Architecture: An Overview and Programming Models Intel Many Integrated Core Architecture: An Overview and Programming Models Jim Jeffers SW Product Application Engineer Technical Computing Group Agenda An Overview of Intel Many Integrated Core Architecture

More information

MapReduce and Lustre * : Running Hadoop * in a High Performance Computing Environment

MapReduce and Lustre * : Running Hadoop * in a High Performance Computing Environment MapReduce and Lustre * : Running Hadoop * in a High Performance Computing Environment Ralph H. Castain Senior Architect, Intel Corporation Omkar Kulkarni Software Developer, Intel Corporation Xu, Zhenyu

More information

Hadoop* on Lustre* Liu Ying (emoly.liu@intel.com) High Performance Data Division, Intel Corporation

Hadoop* on Lustre* Liu Ying (emoly.liu@intel.com) High Performance Data Division, Intel Corporation Hadoop* on Lustre* Liu Ying (emoly.liu@intel.com) High Performance Data Division, Intel Corporation Agenda Overview HAM and HAL Hadoop* Ecosystem with Lustre * Benchmark results Conclusion and future work

More information

Intel Reports Third-Quarter Revenue of $14.5 Billion, Net Income of $3.1 Billion

Intel Reports Third-Quarter Revenue of $14.5 Billion, Net Income of $3.1 Billion Intel Corporation 2200 Mission College Blvd. Santa Clara, CA 95054-1549 News Release Intel Reports Third-Quarter Revenue of $14.5 Billion, Net Income of $3.1 Billion News Highlights: Quarterly revenue

More information

RED HAT STORAGE PORTFOLIO OVERVIEW

RED HAT STORAGE PORTFOLIO OVERVIEW RED HAT STORAGE PORTFOLIO OVERVIEW Andrew Hatfield Practice Lead Cloud Storage and Big Data MILCIS November 2015 THE RED HAT STORAGE MISSION To offer a unified, open software-defined storage portfolio

More information

New Developments in Processor and Cluster. Technology for CAE Applications

New Developments in Processor and Cluster. Technology for CAE Applications 7. LS-DYNA Anwenderforum, Bamberg 2008 Keynote-Vorträge II New Developments in Processor and Cluster Technology for CAE Applications U. Becker-Lemgau (Intel GmbH) 2008 Copyright by DYNAmore GmbH A - II

More information

Intel Reports Fourth-Quarter and Annual Results

Intel Reports Fourth-Quarter and Annual Results Intel Corporation 2200 Mission College Blvd. P.O. Box 58119 Santa Clara, CA 95052-8119 CONTACTS: Reuben Gallegos Amy Kircos Investor Relations Media Relations 408-765-5374 480-552-8803 reuben.m.gallegos@intel.com

More information

Enabling Innovation in Mobile User Experience. Bruce Fleming Sr. Principal Engineer Mobile and Communications Group

Enabling Innovation in Mobile User Experience. Bruce Fleming Sr. Principal Engineer Mobile and Communications Group Enabling Innovation in Mobile User Experience Bruce Fleming Sr. Principal Engineer Mobile and Communications Group Agenda Mobile Communications Group: Intel in Mobility Smartphone Roadmap Intel Atom Processor

More information

Intel Service Assurance Administrator. Product Overview

Intel Service Assurance Administrator. Product Overview Intel Service Assurance Administrator Product Overview Running Enterprise Workloads in the Cloud Enterprise IT wants to Start a private cloud initiative to service internal enterprise customers Find an

More information

How To Scale At 14 Nanomnemester

How To Scale At 14 Nanomnemester 14 nm Process Technology: Opening New Horizons Mark Bohr Intel Senior Fellow Logic Technology Development SPCS010 Agenda Introduction 2 nd Generation Tri-gate Transistor Logic Area Scaling Cost per Transistor

More information

Intel Reports Second-Quarter Results

Intel Reports Second-Quarter Results Intel Corporation 2200 Mission College Blvd. Santa Clara, CA 95054-1549 CONTACTS: Mark Henninger Amy Kircos Investor Relations Media Relations 408-653-9944 480-552-8803 mark.h.henninger@intel.com amy.kircos@intel.com

More information

Ubuntu OpenStack on VMware vsphere: A reference architecture for deploying OpenStack while limiting changes to existing infrastructure

Ubuntu OpenStack on VMware vsphere: A reference architecture for deploying OpenStack while limiting changes to existing infrastructure TECHNICAL WHITE PAPER Ubuntu OpenStack on VMware vsphere: A reference architecture for deploying OpenStack while limiting changes to existing infrastructure A collaboration between Canonical and VMware

More information

Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP

Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP Agenda ADP Cloud Vision and Requirements Introduction to SUSE Cloud Overview Whats New VMWare intergration HyperV intergration ADP

More information

Next-Gen Big Data Analytics using the Spark stack

Next-Gen Big Data Analytics using the Spark stack Next-Gen Big Data Analytics using the Spark stack Jason Dai Chief Architect of Big Data Technologies Software and Services Group, Intel Agenda Overview Apache Spark stack Next-gen big data analytics Our

More information

Hadoop on OpenStack Cloud. Dmitry Mescheryakov Software Engineer, @MirantisIT

Hadoop on OpenStack Cloud. Dmitry Mescheryakov Software Engineer, @MirantisIT Hadoop on OpenStack Cloud Dmitry Mescheryakov Software Engineer, @MirantisIT Agenda OpenStack Sahara Demo Hadoop Performance on Cloud Conclusion OpenStack Open source cloud computing platform 17,209 commits

More information

THE FUTURE OF STORAGE IS SOFTWARE DEFINED. Jasper Geraerts Business Manager Storage Benelux/Red Hat

THE FUTURE OF STORAGE IS SOFTWARE DEFINED. Jasper Geraerts Business Manager Storage Benelux/Red Hat THE FUTURE OF STORAGE IS SOFTWARE DEFINED Jasper Geraerts Business Manager Storage Benelux/Red Hat THE FUTURE OF STORAGE Traditional Storage Complex proprietary silos Open, Software-Defined Storage Standardized,

More information

TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla

TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla Sales Engineer abonilla@suse.com Agenda Overview Manual Deployment Orchestration Generic workload autoscaling Sahara Dedicated for Hadoop

More information

I N V E S T O R M E E T I N G 2 0 1 4

I N V E S T O R M E E T I N G 2 0 1 4 I N V E S T O R M E E T I N G 2 0 1 4 Diane Bryant Senior Vice President & General Manager Data Center Group Key Messages Big industry trends fuel data center growth Investing to win across workloads &

More information

Storage Architectures for Big Data in the Cloud

Storage Architectures for Big Data in the Cloud Storage Architectures for Big Data in the Cloud Sam Fineberg HP Storage CT Office/ May 2013 Overview Introduction What is big data? Big Data I/O Hadoop/HDFS SAN Distributed FS Cloud Summary Research Areas

More information

Product Spotlight. A Look at the Future of Storage. Featuring SUSE Enterprise Storage. Where IT perceptions are reality

Product Spotlight. A Look at the Future of Storage. Featuring SUSE Enterprise Storage. Where IT perceptions are reality Where IT perceptions are reality Product Spotlight A Look at the Future of Storage Featuring SUSE Enterprise Storage Document # SPOTLIGHT2013001 v5, January 2015 Copyright 2015 IT Brand Pulse. All rights

More information

Building Storage as a Service with OpenStack. Greg Elkinbard Senior Technical Director

Building Storage as a Service with OpenStack. Greg Elkinbard Senior Technical Director Building Storage as a Service with OpenStack Greg Elkinbard Senior Technical Director MIRANTIS 2012 PAGE 1 About the Presenter Greg Elkinbard Senior Technical Director at Mirantis Builds on demand IaaS

More information

Intel and Qihoo 360 Internet Portal Datacenter - Big Data Storage Optimization Case Study

Intel and Qihoo 360 Internet Portal Datacenter - Big Data Storage Optimization Case Study Intel and Qihoo 360 Internet Portal Datacenter - Big Data Storage Optimization Case Study The adoption of cloud computing creates many challenges and opportunities in big data management and storage. To

More information

Addressing Storage Management Challenges using Open Source SDS Controller

Addressing Storage Management Challenges using Open Source SDS Controller Addressing Storage Management Challenges using Open Source SDS Controller Anjaneya Reddy Chagam, Intel Chief SDS Architect, Data Center Group Shayne Huddleston, Oregon State University Infrastructure Architect,

More information

Clodoaldo Barrera Chief Technical Strategist IBM System Storage. Making a successful transition to Software Defined Storage

Clodoaldo Barrera Chief Technical Strategist IBM System Storage. Making a successful transition to Software Defined Storage Clodoaldo Barrera Chief Technical Strategist IBM System Storage Making a successful transition to Software Defined Storage Open Server Summit Santa Clara Nov 2014 Data at the core of everything Data is

More information

Building low cost disk storage with Ceph and OpenStack Swift

Building low cost disk storage with Ceph and OpenStack Swift Background photo from: http://edelomahony.com/2011/07/25/loving-money-doesnt-bring-you-more/ Building low cost disk storage with Ceph and OpenStack Swift Paweł Woszuk, Maciej Brzeźniak TERENA TF-Storage

More information

Intel Desktop public roadmap

Intel Desktop public roadmap Intel Desktop public roadmap 1H Expires end of Q3 Info: roadmaps@intel.com Intel Desktop Public Roadmap - Consumer Intel High End Desktop Intel Core i7 Intel Core i7 processor Extreme Edition: i7-5960x

More information

Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Xeon Processor-based Platforms

Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Xeon Processor-based Platforms Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Xeon Processor-based Platforms Enomaly Elastic Computing Platform, * Service Provider Edition Executive Summary Intel Cloud Builder Guide

More information

Hadoop Applications on High Performance Computing. Devaraj Kavali devaraj@apache.org

Hadoop Applications on High Performance Computing. Devaraj Kavali devaraj@apache.org Hadoop Applications on High Performance Computing Devaraj Kavali devaraj@apache.org About Me Apache Hadoop Committer Yarn/MapReduce Contributor Senior Software Engineer @Intel Corporation 2 Agenda Objectives

More information

Savanna Hadoop on. OpenStack. Savanna Technical Lead

Savanna Hadoop on. OpenStack. Savanna Technical Lead Savanna Hadoop on OpenStack Sergey Lukjanov Savanna Technical Lead Mirantis, 2013 Agenda Savanna Overview Savanna Use Cases Roadmap & Current Status Architecture & Features Overview Hadoop vs. Virtualization

More information

Introduction to Cloud : Cloud and Cloud Storage. Lecture 2. Dr. Dalit Naor IBM Haifa Research Storage Systems. Dalit Naor, IBM Haifa Research

Introduction to Cloud : Cloud and Cloud Storage. Lecture 2. Dr. Dalit Naor IBM Haifa Research Storage Systems. Dalit Naor, IBM Haifa Research Introduction to Cloud : Cloud and Cloud Storage Lecture 2 Dr. Dalit Naor IBM Haifa Research Storage Systems 1 Advanced Topics in Storage Systems for Big Data - Spring 2014, Tel-Aviv University http://www.eng.tau.ac.il/semcom

More information

At-Scale Data Centers & Demand for New Architectures

At-Scale Data Centers & Demand for New Architectures Allen Samuels At-Scale Data Centers & Demand for New Architectures Software Architect, Software and Systems Solutions August 12, 2015 1 Forward-Looking Statements During our meeting today we may make forward-looking

More information

Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Platforms

Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Platforms Intel Cloud Builder Guide to Cloud Design and Deployment on Intel Platforms Ubuntu* Enterprise Cloud Executive Summary Intel Cloud Builder Guide Intel Xeon Processor Ubuntu* Enteprise Cloud Canonical*

More information

Object-based Storage in Big Data and Analytics. Ashish Nadkarni Research Director Storage IDC

Object-based Storage in Big Data and Analytics. Ashish Nadkarni Research Director Storage IDC Object-based Storage in Big Data and Analytics Ashish Nadkarni Research Director Storage IDC IDC s definition of Big Data and Analytics (BDA) Mix of data, talent, technology, processes, and services that

More information

Extended Attributes and Transparent Encryption in Apache Hadoop

Extended Attributes and Transparent Encryption in Apache Hadoop Extended Attributes and Transparent Encryption in Apache Hadoop Uma Maheswara Rao G Yi Liu ( 刘 轶 ) Who we are? Uma Maheswara Rao G - umamahesh@apache.org - Software Engineer at Intel - PMC/committer, Apache

More information

StorReduce Technical White Paper Cloud-based Data Deduplication

StorReduce Technical White Paper Cloud-based Data Deduplication StorReduce Technical White Paper Cloud-based Data Deduplication See also at storreduce.com/docs StorReduce Quick Start Guide StorReduce FAQ StorReduce Solution Brief, and StorReduce Blog at storreduce.com/blog

More information

ENABLING GLOBAL HADOOP WITH EMC ELASTIC CLOUD STORAGE

ENABLING GLOBAL HADOOP WITH EMC ELASTIC CLOUD STORAGE ENABLING GLOBAL HADOOP WITH EMC ELASTIC CLOUD STORAGE Hadoop Storage-as-a-Service ABSTRACT This White Paper illustrates how EMC Elastic Cloud Storage (ECS ) can be used to streamline the Hadoop data analytics

More information

SUSE Enterprise Storage Highly Scalable Software Defined Storage. Gábor Nyers Sales Engineer @SUSE gnyers@suse.com

SUSE Enterprise Storage Highly Scalable Software Defined Storage. Gábor Nyers Sales Engineer @SUSE gnyers@suse.com SUSE Enterprise Storage Highly Scalable Software Defined Storage Gábor Nyers Sales Engineer @SUSE gnyers@suse.com Setting the Stage Enterprise Data Capacity Utilization 1-3% 15-20% 20-25% Tier 0 Ultra

More information

Cloud based Holdfast Electronic Sports Game Platform

Cloud based Holdfast Electronic Sports Game Platform Case Study Cloud based Holdfast Electronic Sports Game Platform Intel and Holdfast work together to upgrade Holdfast Electronic Sports Game Platform with cloud technology Background Shanghai Holdfast Online

More information

HP OpenStack & Automation

HP OpenStack & Automation HP OpenStack & Automation Where we are heading Thomas Goh Cloud Computing Cloud Computing Cloud computing is a model for enabling ubiquitous network access to a shared pool of configurable computing resources.

More information

Introducing ScienceCloud

Introducing ScienceCloud Zentrale Informatik Introducing ScienceCloud Sergio Maffioletti IS/Cloud S3IT: Service and Support for Science IT Zurich, 10.03.2015 What are we going to talk about today? 1. Why are we building ScienceCloud?

More information

High Performance Computing OpenStack Options. September 22, 2015

High Performance Computing OpenStack Options. September 22, 2015 High Performance Computing OpenStack PRESENTATION TITLE GOES HERE Options September 22, 2015 Today s Presenters Glyn Bowden, SNIA Cloud Storage Initiative Board HP Helion Professional Services Alex McDonald,

More information

Postgres on OpenStack

Postgres on OpenStack Postgres on OpenStack Dave Page 18/9/2014 2014 EnterpriseDB Corporation. All rights reserved. 1 Introduction PostgreSQL: Core team member pgadmin lead developer Web/sysadmin teams PGCAC/PGEU board member

More information

Sales Slide Midokura Enterprise MidoNet V1. July 2015 Fujitsu Limited

Sales Slide Midokura Enterprise MidoNet V1. July 2015 Fujitsu Limited Sales Slide Midokura Enterprise MidoNet V1 July 2015 Fujitsu Limited What Is Midokura Enterprise MidoNet? Network Virtualization Software Coordinated with OpenStack Provides safe & effective virtual networks

More information

IBM Spectrum Protect in the Cloud

IBM Spectrum Protect in the Cloud IBM Spectrum Protect in the Cloud. Disclaimer IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at IBM s sole discretion. Information regarding

More information

Intel Cloud Builder Guide: Cloud Design and Deployment on Intel Platforms

Intel Cloud Builder Guide: Cloud Design and Deployment on Intel Platforms EXECUTIVE SUMMARY Intel Cloud Builder Guide Intel Xeon Processor-based Servers Red Hat* Cloud Foundations Intel Cloud Builder Guide: Cloud Design and Deployment on Intel Platforms Red Hat* Cloud Foundations

More information

Cloud Storage. Parallels. Performance Benchmark Results. White Paper. www.parallels.com

Cloud Storage. Parallels. Performance Benchmark Results. White Paper. www.parallels.com Parallels Cloud Storage White Paper Performance Benchmark Results www.parallels.com Table of Contents Executive Summary... 3 Architecture Overview... 3 Key Features... 4 No Special Hardware Requirements...

More information

SMB in the Cloud David Disseldorp

SMB in the Cloud David Disseldorp SMB in the Cloud David Disseldorp Samba Team / SUSE ddiss@suse.de Agenda Cloud storage Common types Interfaces Applications Cloud file servers Microsoft Azure File Service Demonstration Amazon Elastic

More information

Big Data Trends and HDFS Evolution

Big Data Trends and HDFS Evolution Big Data Trends and HDFS Evolution Sanjay Radia Founder & Architect Hortonworks Inc Page 1 Hello Founder, Hortonworks Part of the Hadoop team at Yahoo! since 2007 Chief Architect of Hadoop Core at Yahoo!

More information

新 一 代 軟 體 定 義 的 網 路 架 構 Software Defined Networking (SDN) and Network Function Virtualization (NFV)

新 一 代 軟 體 定 義 的 網 路 架 構 Software Defined Networking (SDN) and Network Function Virtualization (NFV) 新 一 代 軟 體 定 義 的 網 路 架 構 Software Defined Networking (SDN) and Network Function Virtualization (NFV) 李 國 輝 客 戶 方 案 事 業 群 亞 太 區 解 決 方 案 架 構 師 美 商 英 特 爾 亞 太 科 技 有 限 公 司 Email: kuo-hui.li@intel.com 1 Legal

More information

Data movement for globally deployed Big Data Hadoop architectures

Data movement for globally deployed Big Data Hadoop architectures Data movement for globally deployed Big Data Hadoop architectures Scott Rudenstein VP Technical Services November 2015 WANdisco Background WANdisco: Wide Area Network Distributed Computing " Enterprise

More information

Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings

Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings Solution Brief Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings Introduction Accelerating time to market, increasing IT agility to enable business strategies, and improving

More information

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION A DIABLO WHITE PAPER AUGUST 2014 Ricky Trigalo Director of Business Development Virtualization, Diablo Technologies

More information

Accelerating Enterprise Big Data Success. Tim Stevens, VP of Business and Corporate Development Cloudera

Accelerating Enterprise Big Data Success. Tim Stevens, VP of Business and Corporate Development Cloudera Accelerating Enterprise Big Data Success Tim Stevens, VP of Business and Corporate Development Cloudera 1 Big Opportunity: Extract value from data Revenue Growth x = 50 Billion 35 ZB Cost Savings Margin

More information

Cloud Platforms, Challenges & Hadoop. Aditee Rele Karpagam Venkataraman Janani Ravi

Cloud Platforms, Challenges & Hadoop. Aditee Rele Karpagam Venkataraman Janani Ravi Cloud Platforms, Challenges & Hadoop Aditee Rele Karpagam Venkataraman Janani Ravi Cloud Platform Models Aditee Rele Microsoft Corporation Dec 8, 2010 IT CAPACITY Provisioning IT Capacity Under-supply

More information

SwiftStack Filesystem Gateway Architecture

SwiftStack Filesystem Gateway Architecture WHITEPAPER SwiftStack Filesystem Gateway Architecture March 2015 by Amanda Plimpton Executive Summary SwiftStack s Filesystem Gateway expands the functionality of an organization s SwiftStack deployment

More information

Testing of several distributed file-system (HadoopFS, CEPH and GlusterFS) for supporting the HEP experiments analisys. Giacinto DONVITO INFN-Bari

Testing of several distributed file-system (HadoopFS, CEPH and GlusterFS) for supporting the HEP experiments analisys. Giacinto DONVITO INFN-Bari Testing of several distributed file-system (HadoopFS, CEPH and GlusterFS) for supporting the HEP experiments analisys. Giacinto DONVITO INFN-Bari 1 Agenda Introduction on the objective of the test activities

More information

Cloud File Services: October 1, 2014

Cloud File Services: October 1, 2014 Cloud File Services: SMB/CIFS and TITLE NFS in the Cloud PRESENTATION GOES HERE October 1, 2014 Webcast Presenters David Fair, SNIA ESF Business Development Chair - Intel John Reed Product Manager, Windows

More information

The Evolving Role of Flash in Memory Subsystems. Greg Komoto Intel Corporation Flash Memory Group

The Evolving Role of Flash in Memory Subsystems. Greg Komoto Intel Corporation Flash Memory Group The Evolving Role of Flash in Memory Subsystems Greg Komoto Intel Corporation Flash Memory Group Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS and TECHNOLOGY.

More information

SUSE Linux uutuudet - kuulumiset SUSECon:sta

SUSE Linux uutuudet - kuulumiset SUSECon:sta SUSE Linux uutuudet - kuulumiset SUSECon:sta Olli Tuominen Technology Specialist olli.tuominen@suse.com 2 SUSECon 13 4 days, 95 Sessions Keynotes, Breakout Sessions,Technology Showcase Case Studies, Technical

More information

SUSE Storage. FUT7537 Software Defined Storage Introduction and Roadmap: Getting your tentacles around data growth. Larry Morris

SUSE Storage. FUT7537 Software Defined Storage Introduction and Roadmap: Getting your tentacles around data growth. Larry Morris SUSE FUT7537 Software Defined Introduction and Roadmap: Getting your tentacles around data growth Larry Morris Sr. Product Manager lmorris@suse.com AGENDA Enterprise Market SUSE Product SUSE Solutions

More information

Modernizing Servers and Software

Modernizing Servers and Software SMB PLANNING GUIDE Modernizing Servers and Software Increase Performance with Intel Xeon Processor E3 v3 Family Servers and Windows Server* 2012 R2 Software Why You Should Read This Document This planning

More information

Installing Hadoop over Ceph, Using High Performance Networking

Installing Hadoop over Ceph, Using High Performance Networking WHITE PAPER March 2014 Installing Hadoop over Ceph, Using High Performance Networking Contents Background...2 Hadoop...2 Hadoop Distributed File System (HDFS)...2 Ceph...2 Ceph File System (CephFS)...3

More information

Virtualization, SDN and NFV

Virtualization, SDN and NFV Virtualization, SDN and NFV HOW DO THEY FIT TOGETHER? Traditional networks lack the flexibility to keep pace with dynamic computing and storage needs of today s data centers. In order to implement changes,

More information

Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading

Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading Requirement and driving forces multi-site cloud Along with the increasing popularity and wide adoption of Openstack as the de facto

More information

Product Brochure. Hedvig Distributed Storage Platform Modern Storage for Modern Business. Elastic. Accelerate data to value. Simple.

Product Brochure. Hedvig Distributed Storage Platform Modern Storage for Modern Business. Elastic. Accelerate data to value. Simple. Product Brochure Elastic Scales to petabytes of data Start with as few as two nodes and scale to thousands. Add capacity if and when needed. Embrace the economics of commodity x86 infrastructure to build

More information

Boas Betzler. Planet. Globally Distributed IaaS Platform Examples AWS and SoftLayer. November 9, 2015. 20014 IBM Corporation

Boas Betzler. Planet. Globally Distributed IaaS Platform Examples AWS and SoftLayer. November 9, 2015. 20014 IBM Corporation Boas Betzler Cloud IBM Distinguished Computing Engineer for a Smarter Planet Globally Distributed IaaS Platform Examples AWS and SoftLayer November 9, 2015 20014 IBM Corporation Building Data Centers The

More information

Sep 23, 2014. OSBCONF 2014 Cloud backup with Bareos

Sep 23, 2014. OSBCONF 2014 Cloud backup with Bareos Sep 23, 2014 OSBCONF 2014 Cloud backup with Bareos OSBCONF 23/09/2014 Content: Who am I Quick overview of Cloud solutions Bareos and Backup/Restore using Cloud Storage Bareos and Backup/Restore of Cloud

More information

Fast, Low-Overhead Encryption for Apache Hadoop*

Fast, Low-Overhead Encryption for Apache Hadoop* Fast, Low-Overhead Encryption for Apache Hadoop* Solution Brief Intel Xeon Processors Intel Advanced Encryption Standard New Instructions (Intel AES-NI) The Intel Distribution for Apache Hadoop* software

More information

CloudStack and Big Data. Sebastien Goasguen @sebgoa May 22nd 2013 LinuxTag, Berlin

CloudStack and Big Data. Sebastien Goasguen @sebgoa May 22nd 2013 LinuxTag, Berlin CloudStack and Big Data Sebastien Goasguen @sebgoa May 22nd 2013 LinuxTag, Berlin Google trends Start of Clouds Cloud computing trending down, while Big Data is booming. Virtualization BigData on the Trigger

More information

A Complete Open Cloud Storage, Virt, IaaS, PaaS. Dave Neary Open Source and Standards, Red Hat

A Complete Open Cloud Storage, Virt, IaaS, PaaS. Dave Neary Open Source and Standards, Red Hat A Complete Open Cloud Storage, Virt, IaaS, PaaS Dave Neary Open Source and Standards, Red Hat 1 Agenda 1. Traditional virtualization 2. The move to IaaS 3. Storage 4. PaaS, application encapsulation and

More information

FIA Athens 2014 vkoukis@grnet.gr ~OKEANOS: A LARGE EUROPEAN PUBLIC CLOUD BASED ON SYNNEFO. VANGELIS KOUKIS, TECHNICAL LEAD, ~OKEANOS

FIA Athens 2014 vkoukis@grnet.gr ~OKEANOS: A LARGE EUROPEAN PUBLIC CLOUD BASED ON SYNNEFO. VANGELIS KOUKIS, TECHNICAL LEAD, ~OKEANOS ~OKEANOS: A LARGE EUROPEAN PUBLIC CLOUD BASED ON SYNNEFO. VANGELIS KOUKIS, TECHNICAL LEAD, ~OKEANOS 1 Fact 1 NRENs and Europe need to decide on how to deliver cloud services Brokering between 3 rd party

More information

Cloudera Enterprise Reference Architecture for Google Cloud Platform Deployments

Cloudera Enterprise Reference Architecture for Google Cloud Platform Deployments Cloudera Enterprise Reference Architecture for Google Cloud Platform Deployments Important Notice 2010-2015 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, Impala, and

More information

Accelerate Cloud Initiatives with Cisco UCS and Ubuntu OpenStack

Accelerate Cloud Initiatives with Cisco UCS and Ubuntu OpenStack White Paper Accelerate Cloud Initiatives with Cisco UCS and Ubuntu OpenStack What You Will Learn This document is intended for IT decision makers. It describes how the combination of configurations running

More information

COSBench: A benchmark Tool for Cloud Object Storage Services. Jiangang.Duan@intel.com 2012.10

COSBench: A benchmark Tool for Cloud Object Storage Services. Jiangang.Duan@intel.com 2012.10 COSBench: A benchmark Tool for Cloud Object Storage Services Jiangang.Duan@intel.com 2012.10 Updated June 2012 Self introduction COSBench Introduction Agenda Case Study to evaluate OpenStack* swift performance

More information

DataCentred Cloud Storage

DataCentred Cloud Storage Service Description DataCentred Michigan Park Michigan Avenue Salford Quays M50 2GY United Kingdom Tel: 0161 870 3981 enquiries@datacentred.co.uk www.datacentred.co.uk Contents Service Description... 2

More information

Lustre* HSM in the Cloud. Robert Read, Intel HPDD

Lustre* HSM in the Cloud. Robert Read, Intel HPDD Lustre* HSM in the Cloud Robert Read, Intel HPDD Overview Lustre in the Cloud HSM for Cloud Importing from Amazon Simple Storage Service* (S3) General archive with S3 Crazy snapshot idea 2 Lustre in the

More information

SUSE Cloud 2.0. Pete Chadwick. Douglas Jarvis. Senior Product Manager pchadwick@suse.com. Product Marketing Manager djarvis@suse.

SUSE Cloud 2.0. Pete Chadwick. Douglas Jarvis. Senior Product Manager pchadwick@suse.com. Product Marketing Manager djarvis@suse. SUSE Cloud 2.0 Pete Chadwick Douglas Jarvis Senior Product Manager pchadwick@suse.com Product Marketing Manager djarvis@suse.com SUSE Cloud SUSE Cloud is an open source software solution based on OpenStack

More information

Date: April 2016 Version: 04152016v1

Date: April 2016 Version: 04152016v1 Data Center Group Date: April 2016 Version: 04152016v1 Modernization Deck Design Set the stage: The data center is a living and breathing organism, trends and journey to modernization of the data center

More information

Software-Defined Networks Powered by VellOS

Software-Defined Networks Powered by VellOS WHITE PAPER Software-Defined Networks Powered by VellOS Agile, Flexible Networking for Distributed Applications Vello s SDN enables a low-latency, programmable solution resulting in a faster and more flexible

More information

Architecting for the next generation of Big Data Hortonworks HDP 2.0 on Red Hat Enterprise Linux 6 with OpenJDK 7

Architecting for the next generation of Big Data Hortonworks HDP 2.0 on Red Hat Enterprise Linux 6 with OpenJDK 7 Architecting for the next generation of Big Data Hortonworks HDP 2.0 on Red Hat Enterprise Linux 6 with OpenJDK 7 Yan Fisher Senior Principal Product Marketing Manager, Red Hat Rohit Bakhshi Product Manager,

More information

THE REALITIES OF NOSQL BACKUPS

THE REALITIES OF NOSQL BACKUPS THE REALITIES OF NOSQL BACKUPS White Paper Trilio Data, Inc. March 2015 1 THE REALITIES OF NOSQL BACKUPS TABLE OF CONTENTS INTRODUCTION... 2 NOSQL DATABASES... 2 PROBLEM: LACK OF COMPREHENSIVE BACKUP AND

More information

At-Scale Data Centers & Demand for New Architectures

At-Scale Data Centers & Demand for New Architectures Allen Samuels At-Scale Data Centers & Demand for New Architectures Software Architect, Software and Systems Solutions August 17, 2015 1 Forward-Looking Statements During our meeting today we may make forward-looking

More information

OpenStack Manila Shared File Services for the Cloud

OpenStack Manila Shared File Services for the Cloud OpenStack Manila Shared File Services for the Cloud Bob Callaway, PhD Chief Architect & Senior Manager, Technical Marketing OpenStack Cloud Solutions Group, NetApp OpenStack Summit Paris November 3 rd,

More information

HYPER-CONVERGED INFRASTRUCTURE STRATEGIES

HYPER-CONVERGED INFRASTRUCTURE STRATEGIES 1 HYPER-CONVERGED INFRASTRUCTURE STRATEGIES MYTH BUSTING & THE FUTURE OF WEB SCALE IT 2 ROADMAP INFORMATION DISCLAIMER EMC makes no representation and undertakes no obligations with regard to product planning

More information

Cisco Prime Network Services Controller. Sonali Kalje Sr. Product Manager Cloud and Virtualization, Cisco Systems

Cisco Prime Network Services Controller. Sonali Kalje Sr. Product Manager Cloud and Virtualization, Cisco Systems Cisco Prime Network Services Controller Sonali Kalje Sr. Product Manager Cloud and Virtualization, Cisco Systems Agenda Cloud Networking Challenges Prime Network Services Controller L4-7 Services Solutions

More information

IAN MASSINGHAM. Technical Evangelist Amazon Web Services

IAN MASSINGHAM. Technical Evangelist Amazon Web Services IAN MASSINGHAM Technical Evangelist Amazon Web Services From 2014: Cloud computing has become the new normal Deploying new applications to the cloud by default Migrating existing applications as quickly

More information

Top 5 Reasons to choose Microsoft Windows Server 2008 R2 SP1 Hyper-V over VMware vsphere 5

Top 5 Reasons to choose Microsoft Windows Server 2008 R2 SP1 Hyper-V over VMware vsphere 5 Top 5 Reasons to choose Microsoft Windows Server 2008 R2 SP1 Hyper-V over VMware Published: April 2012 2012 Microsoft Corporation. All rights reserved. This document is provided "as-is." Information and

More information