Big Data in Cloud. 堵俊平 Apache Hadoop Committer Staff Engineer, VMware

Size: px
Start display at page:

Download "Big Data in Cloud. 堵俊平 Apache Hadoop Committer Staff Engineer, VMware"

Transcription

1 Big Data in Cloud 堵俊平 Apache Hadoop Committer Staff Engineer, VMware

2 Bio 堵俊平 (Junping Du) - Join VMware in 2008 for cloud product first - Initiate earliest effort on big data within VMware since Automate Hadoop deployment on vsphere which becomes Open Source project Serengeti later - Start contributing to Apache Hadoop community since Become Apache Hadoop committer recently only 1 in +8 timezone today

3 Agenda - Virtualization, SDDC and Cloud - Trends from my observation in Big Data - YARN: resource hub for Big Data Applications - YARN in the Cloud

4 What is Virtualization? VMware s vsphere Guest Guest TCP/IP File System Monitor Emulates Physical Devices: CPU, Memory, I/O Monitor Monitor Virtual NIC Virtual SCSI CPU is controlled by scheduler and virtualized by monitor VMkernel Scheduler Memory Manager Virtual Switch NIC Drivers File System I/O Drivers Memory is allocated by the VMkernel and virtualized by the monitor Physical Hardware Network and I/O devices are emulated and proxied though native device drivers

5 Server Virtualization Adoption on Path to 80% Over Next 5 Years 百万 % Virtualized of x86 Workloads Total x86 Workloads 80% IDC 2012 to 2016 Change = +12 pts % 90% 40% Gartner 2012 to 2016 Change = +22 pts x86 % Physical Servers Unvirtualized IDC+ VMW Estimate: Workloads to 2016 CAGR = 21% 80% 70% 60% 50% 40% 60 30% 40 20% 20 10% 0% % Source(s): IDC: Annual Virtualization Forecast, Feb-13; Gartner: x86 Server Virtualization, Worldwide, 3Q12 Update; Gartner: Forecast x86 Server Virtualization, Worldwide, , Jul-11; VMware estimates, Note: Server workloads only 1 Installed Base totals assume 5-year refresh

6 Apps on Traditional Infrastructure Windows Linux Databases Mission Critical HPC Big Data

7 Apps on Software-Defined Data Center Windows Linux Databases Mission Critical HPC Big Data Software-Defined Data Center VDC VDC VDC VDC VDC Software-Defined Data Center Services Abstract Pool Automate

8 Infrastructure for Traditional Apps Traditional Applications Infrastructure for Traditional Enterprise Apps Existing Application bound to vendor specific HW M M 70% Hardware-based Resiliency Hardware-based QOS Hard To automate Complex to scale

9 Infrastructure for New Apps Infrastructure for New/Cloud/Data Apps Application Specific Network and Storage Next Gen Cloud Applications M M 700% Software-based Infrastructure Transformational Economics Automation and Agility Designed For Scale

10 SDDC Delivers Single Architecture for New and Existing Apps Infrastructure for New/Cloud/Data Apps Application Specific Network and Storage Any Application Infrastructure for Existing Enterprise Apps Existing Application bound to vendor specific HW Any Hardware

11 Let s back to Big Data New Trends of Big Data from my observation - Hadoop 2.0, YARN plays as key resource hub in big data ecosystem - MapReduce is not good enough, we need faster one, like: Tez, Spark, etc. - HDFS tries to support more scenarios, i.e. cache for low-latency apps, snapshot for disaster recovery, storage tiers awareness, etc. - More Hadoop-based SQL engines: Apache Drill, Impala, Stinger, Hawq, etc. - For enterprise-ready, more efforts are spent on Security, HA, QoS, Monitor & Management

12 Hadoop MapReduce v1 (Classic) JobTracker Manage cluster resources and job scheduling TaskTracker Per node agent Manage tasks

13 MapReduce v1 Limitations Scalability Manage cluster resources and job scheduling SPOF (Single Point Of Failure) JobTracker failure cause all queued and running job failure Restart is very tricky due to complex state Hard partition of resources into map and reduce slots Low resource utilization Lacks support for alternate paradigms Lack of wire-compatible protocols

14 YARN Architecture Splits up the two major functions of JobTracker Resource Manager (RM) - Cluster resource management Application Master (AM) - Task scheduling and monitoring NodeManager (NM) - A new per-node slave launching the applications containers monitoring their resource usage (cpu, memory) and reporting to the Resource Manager. YARN maintains compatibility with existing MapReduce application and support other applications

15 YARN Hub for Big Data Applications OpenMPI Distributed Shell Spark Impala HBase MapReduce Tez Storm YARN HDFS App-specific AM HOYA (Hbase On YArn) Long running services (YARN-896) LLAMA (Low Latency Application MAster) Gang Scheduler (YARN-624)

16 YARN and Cloud Two different prospective: YARN-centric prospective YARN is the key platform to apps YARN is independent of infrastructure, running on top of Cloud shows YARN s generality Cloud-centric prospective YARN is an umbrella kind of applications Supporting YARN shows Cloud s generality

17 YARN and Cloud: YARN-centric Prospective YARN is OS Big Data Apps Infrastructure (no matter physical or cloud) is hardware HBase Open MPI Distributed Shell Spark Impala MapReduce Tez Storm YARN Infrastructure Bare-metal machines VMware Cloud Infrastructure Open Stack

18 YARN and Cloud: Cloud-centric Prospective Cloud Infrastructure is OS YARN is a group of process Legacy Apps Other Big Data Apps HBase YARN Apps Open MPI D.S Spark Impala MapReduce Tez Storm YARN Cloud Infrastructure (VMware, Open Stack, etc.)

19 YARN vs. Cloud Similarity Target to share resources across applications Provide Global Resource Management YARN vs. Cloud YARN managing resource in OS layer vs. Cloud managing resources in Hypervisor (Not comparable, but Hypervisor is more powerful than OS in isolation) Apps managed by YARN need specific AppMaster, Apps managed by Cloud is exactly the same as running on physical machines (Cloud +1) YARN layer is closed to big data app, better understand/estimate app s requirement (YARN +1) Cloud layer is closed to hardware resources, easier to track real time and global resource utilization (Cloud +1)

20 YARN + Cloud Why YARN + Cloud? Leverage virtualization in strong isolation, fine-grained resource sharing and other benefits Uniform infrastructure to simplify IT in enterprise What it looks like? Running YARN NM inside of VMs managed by Cloud Infrastructure Build communication channel between YARN RM and Cloud Resource Manager for coordination How we do? First thing above is very easy and smoothly Second things to achieve in two ways YARN can aware/manipulate Cloud resource change YARN provide a generic resource notification mechanism so Cloud Manager can use when resource changing

21 Elastic YARN Node in the Cloud Container Container Add/Remove Resources? Other Workload Virtual YARN Node NodeManager Datanode Grow/Shrink by tens of GB in memory? Virtualization Host VMDK Grow/Shrink resource of a VM

22 Elastic YARN Node in the Cloud VM s resource boundary can be elastic CPU is easy time slicing (with constraints) Memory is harder page sharing and memory ballooning In case of contention, enforce limits and proportional sharing Stealing resources behind apps could cause bad performance (paging) App aware resource management could address these issues Hadoop YARN Resource Model Dynamic with adding/removing nodes But static for per node In this case, shall we enable resource elasticity on VM? If yes, low performance when resource contention happens. If no, low utilization as physical boxes because free resources cannot be leveraged by other busy VMs We need better answer.

23 HVE provide the answer! Hadoop Virtualization Extensions A project initiated from VMware to enhance Hadoop running on virtualization A driver for Hadoop OS running on cloud hardware Goal: Make Hadoop Cloud-Ready Provide Virtualization-awareness to Hadoop, i.e. virtual topology, virtual resources, etc. Deliver generic utility that can be leveraged by virtualized platform Independent of virtualization platform and cloud infrastructure 100% contribute to Apache Hadoop Community

24 Philosophy HVE make infrastructure related components abstract deliver different implementations that can be configured properly E.g. BlockPlacementPolicy BlockPlacementPolicy (Abstract) BlockPlacementPolicy Default BlockPlacementPolicy For Virtualization

25 Elastic YARN Node in the Cloud In this case, shall we enable resource elasticity on VM? Yes, and we try to get rid of resource contention Notify YARN that node s resource get changed YARN RM scheduler won t schedule new tasks on nodes get congestion YARN scheduler preempt low priority tasks if necessary The work is addressed in YARN-291

26 Implementation YARN-291 (umbrella) YARN-311 Core scheduler changes YARN-313 CLI YARN-312 AdminProtocol changes REST API, JMX, etc. Resource Manager Scheduler Cluster Resource AdminService UpdateNodeResource() Admin CLI SchedulerNode Resource Tracker Service RMContext RMNode yarn rmadmin -updatenoderesource <NodeId> <Resource> Cloud Resource Manager Heartbeat Node Manager

27 Welcome contribution to Apache Hadoop! Hadoop is the key platform For architecting Big Data Contribute a bit can change the world! Open source project is a great platform For people to share great ideas, works from different organizations Community is a great work place Companies and persons get credit From work and resources they are putting Also easy to build a ecosystem and show expertise So many challenges in Big Data, like building Babel Open source is the common language to make sure we can work together

28 Key messages in today s talk SDDC and Cloud are the future for architecting enterprise IT New trends in big data: YARN plays as a OS for big data apps In VMware, we tries to support any OS, include YARN HVE plays as driver to enable Hadoop on virtualization/cloud Contribute to Apache Hadoop

29 Reference YARN MapReduce HVE topology extension HVE topology extension for YARN HVE elastic resource configuration Gang Scheduling Long-lived services in YARN

30

Virtualizing Big Data/Hadoop Workloads. Update for vsphere 6. Justin Murray VMware VMware Inc. All rights reserved.

Virtualizing Big Data/Hadoop Workloads. Update for vsphere 6. Justin Murray VMware VMware Inc. All rights reserved. Virtualizing Big Data/Hadoop Workloads Update for vsphere 6 Justin Murray VMware 2014 VMware Inc. All rights reserved. Agenda The Hadoop Customer Journey Why Virtualize Hadoop? vsphere Big Data Extensions

More information

Optimal Infrastructure for Big Data

Optimal Infrastructure for Big Data Optimal Infrastructure for Big Data Big Data 2014 Managing Government Information Kevin Leong January 22, 2014 2014 VMware Inc. All rights reserved. The Right Big Data Tools for the Right Job Real-time

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme VIRT1400BU Real-World Customer Architecture for Big Data on VMware vsphere Joe Bruneau, General Mills Justin Murray, Technical Marketing, VMware #VMworld #VIRT1400BU Disclaimer This presentation may contain

More information

Adobe Deploys Hadoop as a Service on VMware vsphere

Adobe Deploys Hadoop as a Service on VMware vsphere Adobe Deploys Hadoop as a Service A TECHNICAL CASE STUDY APRIL 2015 Table of Contents A Technical Case Study.... 3 Background... 3 Why Virtualize Hadoop on vsphere?.... 3 The Adobe Marketing Cloud and

More information

FUT SLES for POWER Trends and Roadmap. Jay Kruemcke Product

FUT SLES for POWER Trends and Roadmap. Jay Kruemcke Product FUT89014 - SLES for POWER Trends and Roadmap Jay Kruemcke Product Manager jayk@suse.com @mr_sles Line Of Business Leaders Focus On Analytics For Competitiveness 89% 83% 26.4% Of Business Leaders Believe

More information

BIG DATA AND HADOOP DEVELOPER

BIG DATA AND HADOOP DEVELOPER BIG DATA AND HADOOP DEVELOPER Approximate Duration - 60 Hrs Classes + 30 hrs Lab work + 20 hrs Assessment = 110 Hrs + 50 hrs Project Total duration of course = 160 hrs Lesson 00 - Course Introduction 0.1

More information

Fast Innovation requires Fast IT

Fast Innovation requires Fast IT Fast Innovation requires Fast IT Trends and Data Centre Innovation Sudheesh Subhash Principal Solutions Architect Agenda Application trends Current data centre trends IT Cloud integration Automation and

More information

Deploying IBM Cognos 8 BI on VMware ESX. Barnaby Cole Practice Lead, Technical Services

Deploying IBM Cognos 8 BI on VMware ESX. Barnaby Cole Practice Lead, Technical Services Deploying IBM Cognos 8 BI on VMware ESX Barnaby Cole Practice Lead, Technical Services Agenda > Overview IBM Cognos 8 BI Architecture VMware ESX > Deployment Options > Our Testing > Optimization of VMware

More information

Data Center Operating System (DCOS) IBM Platform Solutions

Data Center Operating System (DCOS) IBM Platform Solutions April 2015 Data Center Operating System (DCOS) IBM Platform Solutions Agenda Market Context DCOS Definitions IBM Platform Overview DCOS Adoption in IBM Spark on EGO EGO-Mesos Integration 2 Market Context

More information

Resource Scheduling Architectural Evolution at Scale and Distributed Scheduler Load Simulator

Resource Scheduling Architectural Evolution at Scale and Distributed Scheduler Load Simulator Resource Scheduling Architectural Evolution at Scale and Distributed Scheduler Load Simulator Renyu Yang Supported by Collaborated 863 and 973 Program Resource Scheduling Problems 2 Challenges at Scale

More information

AZURE HDINSIGHT. Azure Machine Learning Track Marek Chmel

AZURE HDINSIGHT. Azure Machine Learning Track Marek Chmel AZURE HDINSIGHT Azure Machine Learning Track Marek Chmel SESSION AGENDA Understanding different scenarios of Hadoop Building an end to end pipeline using HDInsight Using in-memory techniques to analyze

More information

Big Data Cloud. Simple, Secure, Integrated and Performant Big Data Platform for the Cloud

Big Data Cloud. Simple, Secure, Integrated and Performant Big Data Platform for the Cloud Big Data Cloud Simple, Secure, Integrated and Performant Big Data Platform for the Cloud Big Data Platform engineered for the data-driven enterprise Oracle s Big Data Cloud delivers a Big Data Platform

More information

A Examcollection.Premium.Exam.35q

A Examcollection.Premium.Exam.35q A2030-280.Examcollection.Premium.Exam.35q Number: A2030-280 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: A2030-280 Exam Name: IBM Cloud Computing Infrastructure

More information

Taking Advantage of Cloud Elasticity and Flexibility

Taking Advantage of Cloud Elasticity and Flexibility Taking Advantage of Cloud Elasticity and Flexibility Fred Koopmans Sr. Director of Product Management 1 Public cloud adoption is surging 2 Cloudera customers are leading the way 3 Hadoop was born for the

More information

Automating Capacity Management in Virtual, Cloud & Software Defined Datacenters

Automating Capacity Management in Virtual, Cloud & Software Defined Datacenters Automating Capacity Management in Virtual, Cloud & Software Defined Datacenters Andrew Hillier CTO, CiRBA Inc. Capacity Challenges Increasingly Dynamic Access to Alternatives Complex Low Utilization Application

More information

Insights to HDInsight

Insights to HDInsight Insights to HDInsight Why Hadoop in the Cloud? No hardware costs Unlimited Scale Pay for What You Need Deployed in minutes Azure HDInsight Big Data made easy Enterprise Ready Easier and more productive

More information

5th Annual. Cloudera, Inc. All rights reserved.

5th Annual. Cloudera, Inc. All rights reserved. 5th Annual 1 The Essentials of Apache Hadoop The What, Why and How to Meet Agency Objectives Sarah Sproehnle, Vice President, Customer Success 2 Introduction 3 What is Apache Hadoop? Hadoop is a software

More information

Hadoop Administration Course Content

Hadoop Administration Course Content Hadoop Administration Course Content Weekend Batch (2 Months): SAT & SUN (8-12pm) Course Fee: 16,000/- New Batch starts on: Free Demo Session scheduled on : Ph : 8892499499 Web:www.dvstechnologies.in mail:dvs.training@gmail.com

More information

20775: Performing Data Engineering on Microsoft HD Insight

20775: Performing Data Engineering on Microsoft HD Insight Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

Microsoft FastTrack For Azure Service Level Description

Microsoft FastTrack For Azure Service Level Description ef Microsoft FastTrack For Azure Service Level Description 2017 Microsoft. All rights reserved. 1 Contents Microsoft FastTrack for Azure... 3 Eligible Solutions... 3 FastTrack for Azure Process Overview...

More information

UForge AppCenter 3.8. Introduction March Copyright 2018 FUJITSU LIMITED

UForge AppCenter 3.8. Introduction March Copyright 2018 FUJITSU LIMITED UForge AppCenter 3.8 Introduction March 2018 Copyright 2018 FUJITSU LIMITED Enterprise Cloud Application Journey 3 stages in transitioning legacy enterprise applications to cloud: Cloud-hosted applications:

More information

Cloud Based Analytics for SAP

Cloud Based Analytics for SAP Cloud Based Analytics for SAP Gary Patterson, Global Lead for Big Data About Virtustream A Dell Technologies Business 2,300+ employees 20+ data centers Major operations in 10 countries One of the fastest

More information

Stateful Services on DC/OS. Santa Clara, California April 23th 25th, 2018

Stateful Services on DC/OS. Santa Clara, California April 23th 25th, 2018 Stateful Services on DC/OS Santa Clara, California April 23th 25th, 2018 Who Am I? Shafique Hassan Solutions Architect @ Mesosphere Operator 2 Agenda DC/OS Introduction and Recap Why Stateful Services

More information

Increased Informix Awareness Discover Informix microsite launched

Increased Informix Awareness Discover Informix microsite launched Information Management Increased Informix Awareness Discover Informix microsite launched www.ibm.com/discoverinformix 2010 IBM Corporation Informix Panther Early Program Want to be on the cutting-edge

More information

20775 Performing Data Engineering on Microsoft HD Insight

20775 Performing Data Engineering on Microsoft HD Insight Duración del curso: 5 Días Acerca de este curso The main purpose of the course is to give students the ability plan and implement big data workflows on HD. Perfil de público The primary audience for this

More information

VMware vcenter Operations Standard

VMware vcenter Operations Standard VMware vcenter Operations Standard Real-time Performance Management for VMware Administrators Even Solberg 2010 VMware Inc. All rights reserved Why vcenter Operations Standard? 80% of VMware admin time

More information

BUILDING A PRIVATE CLOUD

BUILDING A PRIVATE CLOUD INNOVATION CORNER BUILDING A PRIVATE CLOUD How Platform Computing s Platform ISF* Can Help MARK BLACK, CLOUD ARCHITECT, PLATFORM COMPUTING JAY MUELHOEFER, VP OF CLOUD MARKETING, PLATFORM COMPUTING PARVIZ

More information

Oracle Cloud for the Enterprise John Mishriky Director, NAS Strategy & Business Development

Oracle Cloud for the Enterprise John Mishriky Director, NAS Strategy & Business Development % Oracle Cloud for the Enterprise John Mishriky Director, NAS Strategy & Business Development john.mishriky@oracle.com Right Solution. Right Time. What We Built An Enterprise Cloud An integrated platform

More information

Oracle Big Data Cloud Service

Oracle Big Data Cloud Service Oracle Big Data Cloud Service Delivering Hadoop, Spark and Data Science with Oracle Security and Cloud Simplicity Oracle Big Data Cloud Service is an automated service that provides a highpowered environment

More information

On Cloud Computational Models and the Heterogeneity Challenge

On Cloud Computational Models and the Heterogeneity Challenge On Cloud Computational Models and the Heterogeneity Challenge Raouf Boutaba D. Cheriton School of Computer Science University of Waterloo WCU IT Convergence Engineering Division POSTECH FOME, December

More information

Analytics Platform System

Analytics Platform System Analytics Platform System Big data. Small data. All data. Audie Wright, DW & Big Data Specialist Audie.Wright@Microsoft.com Ofc 425-538-0044, Cell 303-324-2860 Sean Mikha, DW & Big Data Architect semikha@microsoft.com

More information

Course Content. The main purpose of the course is to give students the ability plan and implement big data workflows on HDInsight.

Course Content. The main purpose of the course is to give students the ability plan and implement big data workflows on HDInsight. Course Content Course Description: The main purpose of the course is to give students the ability plan and implement big data workflows on HDInsight. At Course Completion: After competing this course,

More information

Hortonworks Connected Data Platforms

Hortonworks Connected Data Platforms Hortonworks Connected Data Platforms MASTER THE VALUE OF DATA EVERY BUSINESS IS A DATA BUSINESS EMBRACE AN OPEN APPROACH 2 Hortonworks Inc. 2011 2016. All Rights Reserved Data Drives the Connected Car

More information

HADOOP SOLUTION USING EMC ISILON AND CLOUDERA ENTERPRISE Efficient, Flexible In-Place Hadoop Analytics

HADOOP SOLUTION USING EMC ISILON AND CLOUDERA ENTERPRISE Efficient, Flexible In-Place Hadoop Analytics HADOOP SOLUTION USING EMC ISILON AND CLOUDERA ENTERPRISE Efficient, Flexible In-Place Hadoop Analytics ESSENTIALS EMC ISILON Use the industry's first and only scale-out NAS solution with native Hadoop

More information

JOURNEY TO AS A SERVICE

JOURNEY TO AS A SERVICE JOURNEY TO AS A SERVICE CONTAINERIZATION JULY 2017 THE DIGITAL ERA EVOLVED IT TO BUSINESS STRATEGY Siloed, legacy, de-centralized, multi vendor setup. IT product focused. AO Operations IO Operations Wall

More information

20775A: Performing Data Engineering on Microsoft HD Insight

20775A: Performing Data Engineering on Microsoft HD Insight 20775A: Performing Data Engineering on Microsoft HD Insight Duration: 5 days; Instructor-led Implement Spark Streaming Using the DStream API. Develop Big Data Real-Time Processing Solutions with Apache

More information

20775A: Performing Data Engineering on Microsoft HD Insight

20775A: Performing Data Engineering on Microsoft HD Insight 20775A: Performing Data Engineering on Microsoft HD Insight Course Details Course Code: Duration: Notes: 20775A 5 days This course syllabus should be used to determine whether the course is appropriate

More information

SAP HANA MADE SIMPLE WITH VALIDATED SOLUTIONS & CONVERGED SYSTEMS. Joakim Zetterblad, Director SAP Practice, EMEA

SAP HANA MADE SIMPLE WITH VALIDATED SOLUTIONS & CONVERGED SYSTEMS. Joakim Zetterblad, Director SAP Practice, EMEA SAP HANA MADE SIMPLE WITH VALIDATED SOLUTIONS & CONVERGED SYSTEMS Joakim Zetterblad, Director SAP Practice, EMEA The NEW SAP fromthings IoT Applications IoT Analytics Connected Devices SAP HANA Cloud Platform

More information

IBM Tivoli Workload Scheduler

IBM Tivoli Workload Scheduler Manage mission-critical enterprise applications with efficiency IBM Tivoli Workload Scheduler Highlights Drive workload performance according to your business objectives Help optimize productivity by automating

More information

MS Integrating On-Premises Core Infrastructure with Microsoft Azure

MS Integrating On-Premises Core Infrastructure with Microsoft Azure MS-10992 Integrating On-Premises Core Infrastructure with Microsoft Azure COURSE OVERVIEW: This three-day instructor-led course covers a range of components, including Azure Compute, Azure Storage, and

More information

Sr. Sergio Rodríguez de Guzmán CTO PUE

Sr. Sergio Rodríguez de Guzmán CTO PUE PRODUCT LATEST NEWS Sr. Sergio Rodríguez de Guzmán CTO PUE www.pue.es Hadoop & Why Cloudera Sergio Rodríguez Systems Engineer sergio@pue.es 3 Industry-Leading Consulting and Training PUE is the first Spanish

More information

ENABLING GLOBAL HADOOP WITH DELL EMC S ELASTIC CLOUD STORAGE (ECS)

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

More information

Avoid Paying The Virtualization Tax: Deploying Virtualized BI 4.0 The Right Way

Avoid Paying The Virtualization Tax: Deploying Virtualized BI 4.0 The Right Way Avoid Paying The Virtualization Tax: Deploying Virtualized BI 4.0 The Right Way Material by Ashish C. Morzaria, SAP. @AshishMorzaria Presented by Matthew Shaw, SAP. @MattShaw_on_BI LEARNING POINTS Understanding

More information

Trasformare il Business con Soluzioni Cloud

Trasformare il Business con Soluzioni Cloud Trasformare il Business con Soluzioni Cloud Marco Sebastiani Product Manager, IBM Tivoli Cloud Solutions 1 What is different about cloud computing? Without cloud computing With cloud computing Virtualized

More information

<Insert Picture Here> Oracle Exalogic Elastic Cloud: Revolutionizing the Datacenter

<Insert Picture Here> Oracle Exalogic Elastic Cloud: Revolutionizing the Datacenter Oracle Exalogic Elastic Cloud: Revolutionizing the Datacenter Mike Piech Senior Director, Product Marketing The following is intended to outline our general product direction. It

More information

Rapid Start with Big Data Appliance X6-2 Technical & Operational Overview

Rapid Start with Big Data Appliance X6-2 Technical & Operational Overview Rapid Start with Big Data Appliance X6-2 Technical & Operational Overview Dirk Augustin Solution Architect Hardware Presales Germany The Realities of Today s Data Center... Accelerating Customer Expectations

More information

Pivotal Ready Architecture by Dell EMC

Pivotal Ready Architecture by Dell EMC Pivotal Ready Architecture by Dell EMC The ready, reliable and resilient way to deploy Pivotal Cloud Foundry on premises Table of Contents Go cloud native to keep pace with future of enterprise IT............

More information

A Practice of Cloud Computing for HPC & Other Applications. Matthew Huang Sun Microsystems, a subsidiary of Oracle Corp.

A Practice of Cloud Computing for HPC & Other Applications. Matthew Huang Sun Microsystems, a subsidiary of Oracle Corp. A Practice of Cloud Computing for HPC & Other Applications Matthew Huang Sun Microsystems, a subsidiary of Oracle Corp. matthew.huang@sun.com 1 IT Transformation to Cloud Computing 2 Example: NY Times

More information

Building Your Big Data Team

Building Your Big Data Team Building Your Big Data Team With all the buzz around Big Data, many companies have decided they need some sort of Big Data initiative in place to stay current with modern data management requirements.

More information

Redefining Perspectives A thought leadership forum for technologists interested in defining a new future

Redefining Perspectives A thought leadership forum for technologists interested in defining a new future Redefining Perspectives A thought leadership forum for technologists interested in defining a new future Session 1 The Past, Present and Future of Cloud Computing in Capital and Commodity Markets Dixit

More information

[Header]: Demystifying Oracle Bare Metal Cloud Services

[Header]: Demystifying Oracle Bare Metal Cloud Services [Header]: Demystifying Oracle Bare Metal Cloud Services [Deck]: The benefits and capabilities of Oracle s next-gen IaaS By Umair Mansoob Introduction As many organizations look to the cloud as a way to

More information

z Systems The Lowest Cost Platform

z Systems The Lowest Cost Platform z Systems The Lowest Cost Platform Using IT Economics (TCO) to prove that z Systems is in fact the lowest cost platform, with the highest QoS! David F. Anderson PE dfa@us.ibm.com June 24, 2016 Christopher

More information

Cloud Management Platform Overview First Published On: Last Updated On:

Cloud Management Platform Overview First Published On: Last Updated On: Cloud Management Platform Overview First Published On: 06-09-2016 Last Updated On: 07-25-2017 1 Table of Contents 1. Cloud Management Platform Overview 1.1.Cloud Consumer Request/Catalog 1.2.Cloud Admin

More information

An Oracle White Paper January Upgrade to Oracle Netra T4 Systems to Improve Service Delivery and Reduce Costs

An Oracle White Paper January Upgrade to Oracle Netra T4 Systems to Improve Service Delivery and Reduce Costs An Oracle White Paper January 2013 Upgrade to Oracle Netra T4 Systems to Improve Service Delivery and Reduce Costs Executive Summary... 2 Deploy Services Faster and More Efficiently... 3 Greater Compute

More information

Achieving Agility and Flexibility in Big Data Analytics with the Urika -GX Agile Analytics Platform

Achieving Agility and Flexibility in Big Data Analytics with the Urika -GX Agile Analytics Platform Achieving Agility and Flexibility in Big Data Analytics with the Urika -GX Agile Analytics Platform Analytics R&D and Product Management Document Version 1 WP-Urika-GX-Big-Data-Analytics-0217 www.cray.com

More information

MapR Pentaho Business Solutions

MapR Pentaho Business Solutions MapR Pentaho Business Solutions The Benefits of a Converged Platform to Big Data Integration Tom Scurlock Director, WW Alliances and Partners, MapR Key Takeaways 1. We focus on business values and business

More information

Understanding The Value of Containers in a World of DevOps. Advice that empowers. Technology that enables.

Understanding The Value of Containers in a World of DevOps. Advice that empowers. Technology that enables. Understanding The Value of Containers in a World of DevOps Advice that empowers. Technology that enables. Bradley Brodkin - Some Background Founder & CEO of HighVail Systems, Toronto CANADA 31+ year industry

More information

Understanding the Business Value of Docker Enterprise Edition

Understanding the Business Value of Docker Enterprise Edition Understanding the Business Value of Docker Enterprise Edition JUNE 2017 www.docker.com/enterprise Table of Contents The Digital Transformation... 3 What the Digital Transformation Means... 3 We Still Need

More information

HP Cloud Maps for rapid provisioning of infrastructure and applications

HP Cloud Maps for rapid provisioning of infrastructure and applications Technical white paper HP Cloud Maps for rapid provisioning of infrastructure and applications Table of contents Executive summary 2 Introduction 2 What is an HP Cloud Map? 3 HP Cloud Map components 3 Enabling

More information

Fujitsu Managed Private Cloud Service

Fujitsu Managed Private Cloud Service Fujitsu Managed Private Cloud Service A K5 Connected Service Balancing agility and control Cloud is quickly becoming the new normal. 71% of companies who took part in a recent study said they are highly

More information

Introduction to Big Data(Hadoop) Eco-System The Modern Data Platform for Innovation and Business Transformation

Introduction to Big Data(Hadoop) Eco-System The Modern Data Platform for Innovation and Business Transformation Introduction to Big Data(Hadoop) Eco-System The Modern Data Platform for Innovation and Business Transformation Roger Ding Cloudera February 3rd, 2018 1 Agenda Hadoop History Introduction to Apache Hadoop

More information

Cisco Workload Optimization Manager: Setup and Use Cases

Cisco Workload Optimization Manager: Setup and Use Cases Cisco Workload Optimization Manager: Setup and Use Cases 2017 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1 of 49 Contents Introduction Minimum requirements

More information

NFV Orchestrator powered by VMware

NFV Orchestrator powered by VMware NFV Orchestrator powered by VMware White paper October 2015 2 Amdocs Network Cloud Service Orchestrator enables service agility and operational efficiency, powered by VMware. For Amdocs, it s important

More information

Virtualizing Enterprise SAP Software Deployments

Virtualizing Enterprise SAP Software Deployments Virtualizing SAP Software Deployments A Proof of Concept by HP, Intel, SAP, SUSE, and VMware Solution provided by: The Foundation of V Virtualizing SAP Software Deployments A Proof of Concept by HP, Intel,

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights ORACLE PRODUCT LOGO Virtualization and Cloud Deployments of Oracle E-Business Suite Ivo Dujmović, Director, Applications Development 2 Copyright

More information

Spark, Hadoop, and Friends

Spark, Hadoop, and Friends Spark, Hadoop, and Friends (and the Zeppelin Notebook) Douglas Eadline Jan 4, 2017 NJIT Presenter Douglas Eadline deadline@basement-supercomputing.com @thedeadline HPC/Hadoop Consultant/Writer http://www.basement-supercomputing.com

More information

Fujitsu Managed Private Cloud Service

Fujitsu Managed Private Cloud Service Fujitsu Managed Private Cloud Service A K5 Connected Service Balancing agility and control Cloud is quickly becoming the new normal. 71% of companies who took part in a recent study said they are highly

More information

I D C T E C H N O L O G Y S P O T L I G H T

I D C T E C H N O L O G Y S P O T L I G H T I D C T E C H N O L O G Y S P O T L I G H T V V o l s Provi d e s P ow erful Ap p l i c a t i o n - Aw a r e M a nagement for vs p h e r e E n vi r o n m e n t s August 2017 Adapted from VMware Helps Further

More information

New Approach for scheduling tasks and/or jobs in Big Data Cluster

New Approach for scheduling tasks and/or jobs in Big Data Cluster New Approach for scheduling tasks and/or jobs in Big Data Cluster IT College, Chairperson of MS Dept. Agenda Introduction What is Big Data? The 4 characteristics of Big Data V4s Different Categories of

More information

DOWNTIME IS NOT AN OPTION

DOWNTIME IS NOT AN OPTION DOWNTIME IS NOT AN OPTION HOW APACHE MESOS AND DC/OS KEEPS APPS RUNNING DESPITE FAILURES AND UPDATES 2017 Mesosphere, Inc. All Rights Reserved. 1 WAIT, WHO ARE YOU? Engineer at Mesosphere DC/OS Contributor

More information

E-guide Hadoop Big Data Platforms Buyer s Guide part 1

E-guide Hadoop Big Data Platforms Buyer s Guide part 1 Hadoop Big Data Platforms Buyer s Guide part 1 Your expert guide to Hadoop big data platforms for managing big data David Loshin, Knowledge Integrity Inc. Companies of all sizes can use Hadoop, as vendors

More information

Deep Learning Acceleration with

Deep Learning Acceleration with Deep Learning Acceleration with powered by A Technical White Paper TABLE OF CONTENTS The Promise of AI The Challenges of the AI Lifecycle and Infrastructure MATRIX Powered by Bitfusion Flex Solution Architecture

More information

Virtualization: Emerging to Mainstream at Lightspeed?

Virtualization: Emerging to Mainstream at Lightspeed? Virtualization: Emerging to Mainstream at Lightspeed? Philip Dawson Notes accompany this presentation. Please select Notes Page view. These materials can be reproduced only with written approval from Gartner.

More information

Cloud Computing, How do I do that?

Cloud Computing, How do I do that? Cloud Computing, How do I do that? Christian Verstraete Chief Technologist - Cloud Every Generation has a Defining Industry 2 IT is the Defining Industry of our Generation 1970-80s Mainframe 1990s Client/Server

More information

Cloudera Enterprise Data Hub Reference Architecture for Oracle Cloud Infrastructure Deployments O R A C L E W H I T E P A P E R J U N E

Cloudera Enterprise Data Hub Reference Architecture for Oracle Cloud Infrastructure Deployments O R A C L E W H I T E P A P E R J U N E Cloudera Enterprise Data Hub Reference Architecture for Oracle Cloud Infrastructure Deployments O R A C L E W H I T E P A P E R J U N E 2 0 1 8 Disclaimer The following is intended to outline our general

More information

Warren Buffett: I don't think there's any company that's done a better job of laying out where they're going to go and then having gone there.

Warren Buffett: I don't think there's any company that's done a better job of laying out where they're going to go and then having gone there. Warren Buffett: I don't think there's any company that's done a better job of laying out where they're going to go and then having gone there. Ginni Rometty, CEO IBM: IBM today is the leader in enterprise

More information

An IBM Proof of Technology IBM Workload Deployer Overview

An IBM Proof of Technology IBM Workload Deployer Overview An IBM Proof of Technology IBM Workload Deployer Overview WebSphere Infrastructure: The Big Picture Vertically integrated and horizontally fit for purpose Operational Management & Efficiency IBM Workload

More information

Solution Architecture Training: Enterprise Integration Patterns and Solutions for Architects

Solution Architecture Training: Enterprise Integration Patterns and Solutions for Architects www.peaklearningllc.com Solution Architecture Training: Enterprise Integration Patterns and Solutions for Architects (3 Days) Overview This training course covers a wide range of integration solutions

More information

Keep Calm and Don t Panic vsphere 5.5 End of General Support by Christopher Lewis

Keep Calm and Don t Panic vsphere 5.5 End of General Support by Christopher Lewis Keep Calm and Don t Panic vsphere 5.5 End of General Support by Christopher Lewis VMware vsphere 5.5 is coming to the end of general support on 19th September 2018. If you are a super, wellorganised and

More information

Innovating Availability Strategies for the Hybrid Cloud

Innovating Availability Strategies for the Hybrid Cloud Innovating Availability Strategies for the Hybrid Cloud กลย ทธ เพ มข ดความสามารถความพร อมให บร การสาหร บระบบไฮบร ดคลาวด Kiatchumpol Suttisirikul System Engineer kiatchumpol.suttisirikul@veeam.com Availability

More information

Uncovering the Hidden Truth In Log Data with vcenter Insight

Uncovering the Hidden Truth In Log Data with vcenter Insight Uncovering the Hidden Truth In Log Data with vcenter Insight April 2014 VMware vforum Istanbul 2014 Serdar Arıcan 2014 VMware Inc. All rights reserved. VMware Strategy To help customers realize the promise

More information

Understanding Cloud. #IBMDurbanHackathon. Presented by: Britni Lonesome IBM Cloud Advisor

Understanding Cloud. #IBMDurbanHackathon. Presented by: Britni Lonesome IBM Cloud Advisor Understanding Cloud #IBMDurbanHackathon Presented by: Britni Lonesome IBM Cloud Advisor What is this thing called cloud? Cloud computing is a new consumption and delivery model inspired by consumer internet

More information

IBM Spectrum Scale. Advanced storage management of unstructured data for cloud, big data, analytics, objects and more. Highlights

IBM Spectrum Scale. Advanced storage management of unstructured data for cloud, big data, analytics, objects and more. Highlights IBM Spectrum Scale Advanced storage management of unstructured data for cloud, big data, analytics, objects and more Highlights Consolidate storage across traditional file and new-era workloads for object,

More information

Transforming SAP Landscapes and HANA Analytics

Transforming SAP Landscapes and HANA Analytics Transforming SAP Landscapes and HANA Analytics Mohamed Al Basti @awatheel 1 Business Drivers Increase Revenue INCREASE AGILITY Lower Operational Costs Reduce Risk 2 Cloud Transforms IT Infrastructure 1

More information

Applicazioni Cloud native

Applicazioni Cloud native Applicazioni Cloud native Marco Dragoni IBM Cloud - Italy Roberto Pozzi IBM Cloud - Italy 2017 IBM Corporation 1 IBM Bluemix is our Integrated Cloud Platform Industry IoT Block Chain Health Financial Services

More information

Hadoop Integration Deep Dive

Hadoop Integration Deep Dive Hadoop Integration Deep Dive Piyush Chaudhary Spectrum Scale BD&A Architect 1 Agenda Analytics Market overview Spectrum Scale Analytics strategy Spectrum Scale Hadoop Integration A tale of two connectors

More information

Innovate with Oracle Public Cloud Platform & Infrastructure Services

Innovate with Oracle Public Cloud Platform & Infrastructure Services Innovate with Oracle Public Cloud Platform & Infrastructure Services Ravi Pinto Director, Product Management Copyright 2014 Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The

More information

GUIDE The Enterprise Buyer s Guide to Public Cloud Computing

GUIDE The Enterprise Buyer s Guide to Public Cloud Computing GUIDE The Enterprise Buyer s Guide to Public Cloud Computing cloudcheckr.com Enterprise Buyer s Guide 1 When assessing enterprise compute options on Amazon and Azure, it pays dividends to research the

More information

vsphere with Operations Management and vcenter Operations VMware vforum, 2014 Mehmet Çolakoğlu 2014 VMware Inc. All rights reserved.

vsphere with Operations Management and vcenter Operations VMware vforum, 2014 Mehmet Çolakoğlu 2014 VMware Inc. All rights reserved. vsphere with Operations Management and vcenter Operations VMware vforum, 2014 Mehmet Çolakoğlu 2014 VMware Inc. All rights reserved. What s on the agenda? vsphere with Operations Management Overview What

More information

WELCOME TO. Cloud Data Services: The Art of the Possible

WELCOME TO. Cloud Data Services: The Art of the Possible WELCOME TO Cloud Data Services: The Art of the Possible Goals for Today Share the cloud-based data management and analytics technologies that are enabling rapid development of new mobile applications Discuss

More information

How CloudEndure Works

How CloudEndure Works The Technology Behind s Disaster Recovery and Migration Solutions Introduction Organizations can thereby achieve sub-second Recovery Point Objectives (RPOs). offers Disaster Recovery and Migration Software-as-a-Service

More information

Apache Spark 2.0 GA. The General Engine for Modern Analytic Use Cases. Cloudera, Inc. All rights reserved.

Apache Spark 2.0 GA. The General Engine for Modern Analytic Use Cases. Cloudera, Inc. All rights reserved. Apache Spark 2.0 GA The General Engine for Modern Analytic Use Cases 1 Apache Spark Drives Business Innovation Apache Spark is driving new business value that is being harnessed by technology forward organizations.

More information

TECHNICAL WHITE PAPER. Rubrik and Microsoft Azure Technology Overview and How It Works

TECHNICAL WHITE PAPER. Rubrik and Microsoft Azure Technology Overview and How It Works TECHNICAL WHITE PAPER Rubrik and Microsoft Azure Technology Overview and How It Works TABLE OF CONTENTS THE UNSTOPPABLE RISE OF CLOUD SERVICES...3 CLOUD PARADIGM INTRODUCES DIFFERENT PRINCIPLES...3 WHAT

More information

Outline of Hadoop. Background, Core Services, and Components. David Schwab Synchronic Analytics Nov.

Outline of Hadoop. Background, Core Services, and Components. David Schwab Synchronic Analytics   Nov. Outline of Hadoop Background, Core Services, and Components David Schwab Synchronic Analytics https://synchronicanalytics.com Nov. 1, 2018 Hadoop s Purpose and Origin Hadoop s Architecture Minimum Configuration

More information

Oracle Autonomous Data Warehouse Cloud

Oracle Autonomous Data Warehouse Cloud Oracle Autonomous Data Warehouse Cloud 1 Lower Cost, Increase Reliability and Performance to Extract More Value from Your Data With Oracle Autonomous Data Warehouse Cloud Today s leading-edge organizations

More information

Spark and Hadoop Perfect Together

Spark and Hadoop Perfect Together Spark and Hadoop Perfect Together Arun Murthy Hortonworks Co-Founder @acmurthy Data Operating System Enable all data and applications TO BE accessible and shared BY any end-users Data Operating System

More information

Aurélie Pericchi SSP APS Laurent Marzouk Data Insight & Cloud Architect

Aurélie Pericchi SSP APS Laurent Marzouk Data Insight & Cloud Architect Aurélie Pericchi SSP APS Laurent Marzouk Data Insight & Cloud Architect 2005 Concert de Coldplay 2014 Concert de Coldplay 90% of the world s data has been created over the last two years alone 1 1. Source

More information

Transforming SAP Applications

Transforming SAP Applications Transforming SAP Applications Leveraging Cloud & Big Data Analytics Copyright 2012 Cisco, EMC Corporation, VCE, VMware. All other trademarks used herein are the property of their respective owners. All

More information

Oracle Autonomous Data Warehouse Cloud

Oracle Autonomous Data Warehouse Cloud Oracle Autonomous Data Warehouse Cloud 1 Lower Cost, Increase Reliability and Performance to Extract More Value from Your Data With Oracle Autonomous Database Cloud Service for Data Warehouse Today s leading-edge

More information