MODERN ENTERPRISE APPS OPERATIONS WITH DC/OS

Size: px
Start display at page:

Download "MODERN ENTERPRISE APPS OPERATIONS WITH DC/OS"

Transcription

1 MODERN ENTERPRISE APPS OPERATIONS WITH DC/OS Lessons from Running Containers, Microservices, and Stateful Big Data Services in Production WHITE PAPER

2 Table of Contents Executive Summary... 3 A New Battlefront for Enterprises... 3 The Modern Enterprise App... 5 Architectural Components of Modern Enterprise Apps... 5 Microservices... 6 Containerization... 6 Enterprise Big Data... 7 Open Source... 7 Modern App Engineering and Operations... 8 Engineering Challenges of the Modern Enterprise App... 8 Resource Management Challenges... 9 Hyperscale Computing vs. IaaS Operating Models... 9 The Datacenter Operating System Model Developer and Operator Experience Apache Mesos the Enabling Technology Platform Considerations for Modern Enterprise Apps DC/OS Model Business Outcomes Hyperscale Operations Developer Agility Data Agility Transitioning Towards the DC/OS Operating Model Conclusions About the Authors Copyright Mesosphere, Inc WHITE PAPER 2

3 Executive Summary As Marc Andreessen foresaw almost five years ago: Software is eating the world. Businesses of all types need to develop and deploy new software services, quickly, to stay competitive. This turns out to be quite challenging because enterprises must: (1) Quickly adopt entirely new processes for building and deploying software, including such modern concepts as microservices, containers, and continuous integration and deployment; (2) Ingest and store vast amounts of data, in real time, such as from machine sensors and customer and business activities; and (3) Derive actionable insight from data, again in real time, in order to save money, respond to market conditions more quickly, and deliver better products and services. IT organizations must meet these challenges while addressing the traditional concerns of efficiency, security, service quality, and operational flexibility. Early web companies like Google and Facebook were the first to encounter these challenges and found the answer in hyperscale computing modern applications composed of distributed microservices with big-data built-in often running on commodity hardware. For mainstream enterprises, building and operating modern apps can be a significant challenge. The Datacenter Operating System (DC/OS) applies best practices established by early web companies, and is powered by the production-proven Apache Mesos distributed systems kernel. With DC/OS, modern apps are now practical for mainstream enterprises. A New Battlefront for Enterprises About a decade ago, web companies like Google, Facebook and Netflix addressed the challenge of serving millions of users in real time and processing unprecedented volumes of data. This started a quiet revolution in the datacenter, and launched the start of the mobile-cloud era dramatically raising user expectations, creating new businesses, and placing competitive pressures on industries like retail, manufacturing, healthcare, and financials, among others. Today, mainstream enterprises are looking for ways to better engage customers, improve operational decision-making, and capture new value streams. Doing this requires the enterprise to develop two related capabilities. The first is developer agility rolling out new services or product enhancements quickly, and reducing time to value of new services. The second is data agility gaining actionable insights from the large volume of data enterprises are collecting. The idea that enterprises need to get faster and smarter is not controversial. The real battlefront, and the question business leaders need to answer, is how to find the right technologies, operating models and talent that can collectively enable developer and data agility. Copyright Mesosphere, Inc WHITE PAPER 3

4 Developer agility isn t about getting developers to code faster. It s about getting code to production faster. Rolling out new services quickly means enterprises need to change how they build and operate software. No longer can enterprises afford to build legacy-style, monolithic applications that run in virtual machines (VMs), Instead, the modern enterprise needs to adopt new ways of doing things (e.g., microservices in containers) and select a technology stack that eliminates the latency from concept to development to production, while managing risk. In today s mobile-cloud era, software is evolving towards distributed systems and microservices (sometimes called cloud native ). This approach provides service scalability and maintainability, and increases the speed that software can be deployed, especially when used in conjunction with continuous integration and continuous delivery models. Many think of cloud native apps as inherently stateless. However, modern enterprise apps cannot be entirely stateless since they need to rely on data either to support a business function, or to engage customers in a meaningful way. And it s not just about data for stateful apps. The way enterprises are using big data is shifting. There have been two major waves of big data in the enterprise. The first enterprise big data efforts essentially built large data warehouses (and tools) for use by analysts or data scientists. In the current second wave, successful enterprises are building business applications powered by big data, capturing the value of actionable insights in real time. First wave big data efforts had mixed results. Gartner s 2015 Hadoop Adoption Survey 1 cited 49 percent of respondents were struggling to figure out how to get value from Hadoop. There are three main reasons. First, the technology stack these enterprises have sought to build is just too complex and inflexible. Second, most mainstream enterprises do not have the engineering expertise of companies like Google. Third, big data initiatives were often ill-defined 2 projects akin to give us your data, and we will find new patterns and insights to drive your business. The result has been heavy investment yielding some insights, with little impact to the business. Successful enterprises leading the second wave of big data are shifting from building systems of record (e.g., what were last quarter's sales of a product in a particular segment ) to systems of real-time insight and prediction (e.g., what is an individual customer likely to buy, and what types of engagement can best influence their behavior? ). These businesses are deriving true value out of their big data efforts and for those still stuck in the first wave, competitive pressures are mounting. The battlefront for business leaders today is finding the right technology, operating model, and talent to deliver new services quickly and leverage insights from stateful big data services. The technology should also provide flexibility and not be locked into a particular vendor, or cloud. Because the answer lies in distributed application architectures, the virtual machine is the wrong abstraction for addressing these challenges a new approach to building apps is needed. For the small number of successful companies that have been successful, a clear pattern has emerged: the modern enterprise application architecture. 1 Gartner, Inc Hadoop Adoption Study 2 McKinsey & Company. Getting big impact from big data. McKinsey Quarterly January Copyright Mesosphere, Inc WHITE PAPER 4

5 The Modern Enterprise App The revolution started at companies like Google and Facebook, with what we now call hyperscale computing. Faced with the challenge of serving billions of users in real time and rolling out new ideas quickly, these early web companies realized that the traditional monolithic application stacks and the underlying virtual machine architecture did not have the scalability and speed required to instantly launch thousands of workloads. With large budgets for infrastructure and armies of highly skilled engineers, these companies developed proprietary hyperscale stacks to address challenges specific to their business. Architectural Components of Modern Enterprise Apps The patterns they used form the basis of the modern enterprise app. In a modern enterprise app, application functions and logic are implemented as microservices, and packaged and deployed in containers, tightly integrated with big data. Some or all of these components may be open source technology. Enterprises are already adopting many of these patterns, and while containerization is increasingly common, containerization by itself is not sufficient for most enterprises. Microservices Enable teams to work self-sufficiently, and deliver and iterate quickly Containers Simply packaging of code (often stateless) Big Data Process information and retain the states of modern apps Open Source Leverage the work of others in building the application Copyright Mesosphere, Inc WHITE PAPER 5

6 Microservices The basic principle of microservices architecture is to decompose the application into a set of collaborating services, rolled out in the smallest deployable units. Each microservice implements a set of narrowly defined functions. Most commonly, these microservices interface with each other using the REST protocol. The benefits of microservices include the ability to have many teams working on different components in parallel, building and deploying independently, scaling only portions of an application that need the additional capacity, and being able to update/upgrade portions of the application without impacting users, as long as API contracts between microservices are maintained. The real power of microservices architecture is in enabling small cross-functional teams to build and deploy functions independently using continuous integration and continuous deployment pipelines. These techniques enable enterprises to create and sustain autonomous and innovative teams that can build highlyscalable applications easily and new functionality quickly. Containerization When applications are engineered as independently-deployed microservices, those microservices need a nimble infrastructure on which to run. For modern enterprise apps, containerization is the simplest and best way to run microservices, better than virtual machines because they are faster to spin up (and kill) and allow greater workload density. Containerization consists of two main components: the container image and the container runtime. Copyright Mesosphere, Inc WHITE PAPER 6

7 Container images are an elegant way for developers to package their apps, provide their code access to all the libraries they need, and give their code the illusion of the entire machine s filesystem, without actually including the operating system, unlike a virtual machine. Docker has become the most commonly used container image. The container runtime is responsible for executing what s defined in a container image and creating a running process from the image. Several container runtimes exist, and all support the Docker container image format. Below is an overview of container runtimes and the container images they support. Container Runtime DCOS w/mesos Docker Rocket Supported Container Image AppC, Docker, Mesos, OCI* Docker AppC, Docker, OCI* Enterprise Big Data * Based on public Roadmaps Big data is a reality for modern enterprise apps because any valuable enterprise service will either use or produce data with appreciable velocity, variability and volume. Modern enterprise apps aim not to support data scientists investigations, but to capture the value of data insights in real time through services. Examples include: Personalization delivering a unique and engaging real-time experience for customers Anomaly detection identifying potential cases of financial fraud, security breaches, or serious medical conditions, all in real-time Internet of Things leveraging connected devices and real time sensors to improve customer experience or optimize supply chains Enterprise big data is challenging because the relevant components (data streaming, batch analytics, databases, machine learning) are each themselves complex distributed systems that are difficult to set up, maintain and operate in a 24x7 environment. For enterprises with multiple teams or business units, this means multiple deployments for each distributed system to cover different versions of the technology being used, and different phases of the software development lifecycle significantly driving up costs for infrastructure, engineering talent and time. Open Source Enterprises increasingly recognize that to be competitive they cannot afford to start from the ground floor when building new systems. Many of the modern enterprise application components described above each have their own ecosystem of open source projects and companies behind those technologies. Enterprises successful using these technologies together dramatically accelerate their pace in developing new services. Modern Enterprise App Components Container Databases Analytics Message Queues File System Technologies (not exhaustive) Rkt, Docker, Mesos Cassandra, Elasticsearch, MySQL, Redis, Postgres Spark, Hadoop MapReduce, Flink, Storm Kafka, RabbitMQ, ActiveMQ NFS, HDFS Copyright Mesosphere, Inc WHITE PAPER 7

8 Modern App Engineering and Operations During 2010, Twitter was facing an urgent challenge as it could not scale its service to meet the demands of its explosive growth of users. The Twitter Fail Whale became an iconic image served up to users whenever the beloved service was beyond capacity. Twitter engineers understood that re-architecting Twitter s monolithic app into microservices would enable the service to scale, and provide additional benefits the challenge was how. As Twitter moved to a microservices-based architecture, they had to solve the engineering challenges that now face every enterprise looking to deploy modern apps. Engineering Challenges of the Modern Enterprise App As enterprises move to a modern app architecture, they face several challenges as the infrastructure and operating model of the IT organization also needs to transition to support the modern enterprise app. Deployment complexity While monolithic apps can be launched and monitored by a single administrator, there simply aren t enough admins to launch and monitor all of the decomposed services needed by a modern app. Partitioning A large number of microservices means many partitions of machines within the infrastructure one for each service and tracking which partitions are being used by which services. Or, it requires a new architecture that does not need partitions. Extremely low utilization Infrastructure is typically configured for peak expected demand for each service, wasting hardware, power and cooling, and hardware administration time. Maintaining high availability There is a severe loss of capacity when services in static partitions fail, and a labor-intensive process of knowing which services need to be restarted or recovered. Configuration and snowflaking Many services used by the application are distributed systems, and specific versions of each services may be used. The result is partitions that can only be used with one application. Copyright Mesosphere, Inc WHITE PAPER 8

9 Resource Management Challenges A key problem behind the infrastructure engineering challenges is datacenter resource management. Many modern enterprise app components can be distributed systems, each with their own scheduling logic or characteristics in resourcing requirements. For example, the Spark data processing service may want all the capacity it can get to finish a job. The Kafka message queue may need resourcing based on the volume of data passing through, while the Cassandra distributed database may need steady resourcing to persist data. Therefore, a key requirement for the infrastructure in running modern apps is being able to manage all of this stateless, stateful and multi-service applications. Hyperscale Computing vs. IaaS Operating Models The challenges mentioned above effectively led to the development of hyperscale computing. While Infrastructure as a Service (IaaS) has made a tremendous impact in enterprise datacenters by virtualizing physical servers into logical virtual machines, many of the gains enabled by virtualization to improve efficiency and availability (e.g., workload pooling, high availability, fault tolerance) are VM-centric and cannot be applied to modern enterprise applications, which are highly dynamic and span multiple machines. Besides being slower than containers, traditional VM-based infrastructure clouds can t meet the modern enterprise app operations requirements for two main reasons. First is that running microservices in VMs means proliferations of VMs, overwhelming administrators that need to manage them even with the use of configuration automation tools. Second, is that VMs effectively partition servers, but what s needed in this new era is aggregation of the datacenter to run multiple distributed systems each with their own logic for resourcing and scheduling. For Twitter, using modern enterprise apps, powered by Apache Mesos the core of datacenter operating system technology enabled the company to manage the unprecedented scale of users, while also improving manageability, rolling out new services quickly, and running at higher utilization. Copyright Mesosphere, Inc WHITE PAPER 9

10 The Datacenter Operating System Model The Datacenter Operating System (DC/OS) model was conceived with the disruptive idea that running datacenter-scale services should not be more complex than using a single computer. DC/OS aggregates primitive infrastructure services so that both the developer and the operator work with a single form factor: the logical datacenter. In addition to providing elastic scalability for distributed systems, DC/OS ensures high availability and fault tolerance of services. A user running an app on her PC does not care about which CPU core the application will run on, nor does she care whether the app is taking up one or two cores. The PC s operating systems manages this for her. The Datacenter Operating System (DC/OS) model applies this basic principle to the full logical datacenter. There are two key differences. First, the form factor that the user engages with is the complete logical datacenter (as opposed to a PC). Secondly, apps running on DC/OS are not monolithic apps running on a single PC they are Modern Enterprise Apps made of distributed systems of stateless and stateful services. Developer and Operator Experience With a DC/OS operations model, developers and administrators do not need to care about which CPU core will be running applications they ve launched, for any core in the logical datacenter. DC/OS commands are issued against the full logical datacenter in the DC/OS command line or GUI. This model has several benefits for developers, operations, and the hurdle for specialized skills. Copyright Mesosphere, Inc WHITE PAPER 10

11 Developers code against the logical datacenter, spending more time on application code and spending less time on datacenter plumbing. The datacenter developer builds distributed systems that can dynamically leverage all the resources available in the datacenter, with DC/OS handling actions like task management, deployment, resource allocation, isolation and quality of service. Operators in a DC/OS model run the logical datacenter using policies, and do not spend time managing individual machines (physical or virtual), dramatically reducing time and effort. A key benefit for operators is the ability to run at high levels of utilization, even as demand from multiple distributed services changes over time. But the largest benefit of the DC/OS model is perhaps reducing the technical skills hurdle for running modern apps. With DC/OS, complex distributed systems like Spark, Kafka, Cassandra and many other services become dramatically easier to install and operate. Single commands in a DC/OS UI can launch datacenter-wide services, scale those services and maintain those services. DC/OS effectively applies prescriptive best practices in running these services, based on the production operational experience of others. Apache Mesos the Enabling Technology The core of DC/OS is the Apache Mesos distributed systems kernel. Its power comes from the two-level scheduling that enables distributed systems to be pooled and share datacenter resources. Mesos provides the core primitives for distributed systems, such as resource allocation, isolation, and quota management. As a kernel, Mesos was designed with the expectation that additional services need to be built to leverage Mesos primitives. These are the components of DC/OS, such as security, advanced networking, operations, as well as other capabilities that make DC/OS a full operating system for the logical datacenter. Copyright Mesosphere, Inc WHITE PAPER 11

12 Platform Considerations for Modern Enterprise Apps For many enterprises, the transition towards modern enterprise apps is gradual, and their infrastructure will need to run traditional apps alongside modern apps. Only the DC/OS model enables operators to run all modern enterprise app components (microservices, stateful big data storage and analytics) while having the flexibility to run traditional apps. The DC/OS model uses the full logical datacenter as the unit of abstraction, aggregating infrastructure services to run modern enterprise apps DC/OS is built to operate the application whether it runs on a single node or is a distributed system of microservices, containers, and stateful and stateless services. Infrastructure as a Service (IaaS) models essentially provide virtual machines on demand, with the virtual machine as unit of abstraction. While virtual machines have had tremendous impact in eliminating physical server management and improving traditional workload efficiency and manageability, the virtual machinecentric model is not suited for modern enterprise applications composed of distributed services. Container as a Service (CaaS) models, or container-centric management platforms, use the container as the unit of abstraction. CaaS s meet some of the needs but fall short overall because running modern enterprise apps goes far beyond launching containers. For example, CaaS models cannot automate scheduling and perform workload lifecycle management for advanced distributed apps such as databases. Additionally, without a two-level scheduling architecture, stateful big data services cannot be deployed elastically, and managing failures of these stateful services also become a challenge. Platform as a Service (PaaS) models are essentially aimed at supporting developer workflows, not operating applications. PaaS s focus primarily on building stateless cloud-native applications. Because modern enterprise applications include both stateful and stateless components, PaaS s by themselves cannot effectively serve as the infrastructure for modern enterprise applications. Traditional Apps Modern Apps Operating Model Stateful, Non-distributed Applications Microservices Big Data Storage Big Data Analytics DC/OS Yes Yes Yes Yes CaaS Some static partitioning only Yes Some static partitioning, manual failure management Some not elastic IaaS Yes No No No PaaS No Yes (stateless only) No No IT Operating Models and Supported Capabilities Copyright Mesosphere, Inc WHITE PAPER 12

13 DC/OS Model Business Outcomes The Datacenter Operating System model applies lessons learned from production, at-scale implementations of the Apache Mesos distributed systems kernel. Common enterprise business outcomes from using DC/OS to power modern enterprise applications include: Hyperscale Operations Efficiency, automation, reliability and scale of a Google-like infrastructure without the complexity and specialized expertise Developer Agility Accelerating time to value of new services Data Agility Enabling applications and services that can capture value from ubiquitous data Hyperscale Operations Every company is a software company, and enterprises with the DC/OS model get hyperscale infrastructure adaptable to new technologies, without requiring an engineering department with the size or expertise of Google. With DC/OS, enterprises can rely on an open production-proven platform, run a mix of traditional and modern apps, provide administrators the greatest flexibility and empowerment, and use a platform that is at its core, future-ready. The distributed systems kernel at the heart of DC/OS (Apache Mesos) has been production-proven for over five years in datacenters of web companies running at massive scale (in order of tens of thousands of nodes). DC/OS provides a highly available architecture with no single point of failure. DC/OS s native container orchestrator (Marathon) has similarly been proven in production. DC/OS enables a single flexible infrastructure for the full range of enterprise applications, from traditional to modern enterprise apps. Two properties make this possible first, DC/OS only requires apps run on any modern Linux distribution (with Windows support in the near future), and has an extensible two-level scheduler design. Two-level scheduling essentially allows stateful and distributed services to apply their own business logic for needed infrastructure capacity, while still protecting the quality of service for other workloads. This approach includes today s distributed systems (e.g., Spark, Kafka, Cassandra) as well as those yet to come, as new technologies can be adopted to DC/OS services. A key benefit with the DC/OS model is running workloads with very different latency needs. For example, DC/OS can run workloads with tights SLA s (e.g., real-time transaction processing) along with latency-tolerant or less time-sensitive workloads (e.g., transcoding streaming media, batch analytics), driving extremely high utilization while meeting workload service level requirements. The most important benefit for DC/OS is empowering operators and administrators responsible for running the infrastructure. First, as an open source project backed by dozens of leading companies using DC/OS in production, enterprises have the flexibility of running their infrastructure on open source software, and the confidence of knowing DC/OS applies the lessons learned from production experience. Second, DC/OS enables operators to perform datacenter-wide actions with single commands (as opposed to managing individual hosts, virtual machines, or containers). Third, DC/OS automates many of the responsibilities of IT operators, including monitoring, application health checks, auto-recover in case of failure, and applying dynamic scaling policies. Most importantly, DC/OS supports non-disruptive upgrades to the infrastructure. Lastly, DC/OS enables a single operating experience from on premises infrastructure to cloud-based services, the operating experience is identical. Copyright Mesosphere, Inc WHITE PAPER 13

14 Developer Agility Businesses using the DC/OS model dramatically improve time to value of new services in two ways. First, by enabling the teams to roll out new services quickly and continuously refine these services across all relevant functional teams sometimes described as DevOps. Second, by enabling teams to experiment with new technologies at will, so they can find the right services (e.g., a new open-source message queue or analytics engine) to power their application. DevOps is an operational and cultural model where teams work cross-functionally to ensure as new services are developed they are also operational in a predictable and maintainable way. Key enablers for this model are automation tools for continuous integration and continuous delivery (CI/CD): Continuous integration frequently merging developer code to a shared mainline repository Continuous delivery ensuring mainline code is always in a state that can be deployed to users A common challenge for enterprises is scaling out CI/CD platforms and ensuring enough capacity to build the code for testing prior to release. In many instances, different development teams have their own CI/CD cluster because these platforms are often difficult to scale out to other teams, or teams use different versions of toolchain components. One team may be running out of capacity to build code while other teams clusters sit idle. Under a DC/OS model, CI/CD platforms can be easily scaled with simple datacenter-scale commands, and DC/OS s elastic scheduling capability enable dev teams to share resources through build-bursting. Enterprises recognize using open source technologies is key to developing new services quickly. A developer may hear of a new open source technology at a meetup and decide to try it. She might spend several weeks trying to understand the technology, find the right folks to set it up, research best practice implementations, and configure it given she can find an environment taking several weeks before she uses the technology with her app. In a DC/OS model, popular open source services are part of the DC/OS Universe, or ecosystem. Developers can use a service by installing it with a simple command against the datacenter, while isolation, security and access controls ensure production systems are not impacted. Data Agility For enterprises, the difference between success and failure in the mobile cloud era is the ability to capture value from actionable insights all enterprises are already collecting vast amounts of data. Using DC/OS, big data becomes significantly easier to use and integrate with applications, the infrastructure is more performant in processing big data, and developers have the flexibility to adapt the next generation of big data services. Modern enterprise apps need to ingest, analyze, and store data, and present insights to users or trigger actions. Data scientists may also use some of the same services in analyzing data. In the traditional approach, data engineers or developers might research a set of open source technologies and pull together relevant experts, and arrive at a non-production configuration useful for R&D several months later leaving production readiness for the next phase. DC/OS enables data engineers and developers to install and run these services with simple commands with no engineering work, as DC/OS services are built with best practices. When it s time to build modern enterprise apps with these services, and later pass them to operations all can run on the same DC/OS platform, which runs both stateless and stateful services. DC/OS infrastructure is more performant running big data due to elastic and fine-grained resource sharing. Successful enterprises have been able to run their datacenters at over 95% utilization, prioritizing latencysensitive production workloads, and running batch analytics with remaining capacity. Lastly, the DC/OS services model enables enterprises to easily deploy and use new distributed stateful services. Apache Spark began as a project built on Mesos to demonstrate Mesos power. Other big data services like Apache Flink and Apache Storm can also be DC/OS services and benefit from resource pooling and applying best practices implementations. Copyright Mesosphere, Inc WHITE PAPER 14

15 Transitioning Towards the DC/OS Operating Model Enterprises implementing the DC/OS model have different approaches based on their organization and operational readiness, as well as infrastructure needs. Even as modern enterprise apps play an ever increasing role in IT organizations, most existing applications in enterprises today are traditional, and will continue to play a role. The dual need to provide traditional services while also tackling value-driven customer-centric services has led to the proposed bifurcation of IT operating models. Gartner calls this Bimodal IT 3 two modes of operations, each with implications for technology, talent, and operating models. McKinsey & Company shares a similar point of view proposing a Two-speed IT architecture 4 to help enterprises balance two concurrent objectives. Bimodal IT as defined by Gartner: Mode 1 Goal: Reliability Best price for performance, with plan-based governance, waterfall delivery model, built using enterprise suppliers, resourced with talent good for conventional processes and projects, with a culture that is IT-centric and removed from the customer Mode 2 Goal: Agility Focused on revenue, brand, and customer experience, governance that is empirical and continuous, agile delivery model, built using small (innovative) new vendors, resources with talent good for new and uncertain projects, with a culture that is business-centric and close to the customer While the modern enterprise app delivers agility and facilitates capturing business value, it is very likely that it will also become the model for Mode 1 IT applications over time. Enterprises rolling out DC/OS today fall into a range of adoption patterns. The first is a greenfield model where the enterprise is rolling out customer-facing services based on the modern enterprise app, and recognizes the need for a next generation infrastructure and operating model. Here, modern enterprise apps are being developed and operated entirely on DC/OS environments. In a second model, the enterprise is already running silos of big data and microservices environments, and rolls out DC/OS in phases. First to transition to DC/OS are often the stateless microservices-based apps, followed by analytics, followed by more complex stateful services. This enables engineering champions to demonstrate the impact of DC/OS as they syndicate with additional business units or application teams. The third and most conservative approach is one where workloads are transitioned to DC/OS, but running as statically partitioned to start. The rationale here is to give comfort to stakeholders who want to know where their workloads are running. The immediate benefit is a more scalable infrastructure, with the long term goal of enabling elastic scaling when the organization is ready. 3 Gartner McKinsey Business Technology. December Copyright Mesosphere, Inc WHITE PAPER 15

16 Conclusions The modern enterprise application, composed of microservices, containers, and stateful big data services, is key for enterprises to capture new value chains in the mobile-cloud era. The Datacenter Operating System (DC/OS) model is unique from IaaS, PaaS, or CaaS in that only DC/OS is fully capable of running all the components of the modern enterprise app. DC/OS is based on technologies that have been proven in production at scale, and engineered based on established distributed systems production best practices. Mainstream enterprises using DC/OS gain from these built-in best practices, and have the flexibility of using an open-source platform that gives their modern enterprise app complete flexibility on where they run - on premises or in the cloud. For enterprises moving towards microservices, containers, stateful services and open source software, DC/OS reduces the skills and effort required to be successful. The result is broader adoption of these technologies and faster capture of the impact these technologies deliver. About the Authors Benjamin Hindman is a Founder and Chief Architect at Mesosphere where he leads a team building out core services for the Mesosphere Datacenter Operating System (DC/OS). Ben co-created Apache Mesos as a PhD student at UC Berkeley before bringing it to Twitter where it now runs on tens of thousands of machines powering Twitter's datacenters. An academic at heart, his research in programming languages and distributed systems has been published in leading academic conferences. Edward Hsu is the Vice President of Product Marketing at Mesosphere, leading a team responsible for product go-to-market and helping enterprises to realize business outcomes with DC/OS. Ed was previously Sr. Director of Product Marketing at VMware, responsible for EVO hyper-converged infrastructure, vcloud Suite private cloud software, and pricing and packaging for vsphere and the majority of VMware products by sales. Ed spent five years at McKinsey & Company serving senior executives in Fortune 500 companies in the high-tech, banking, and pharmaceutical industries, mostly in IT and service operations functions. Copyright Mesosphere, Inc WHITE PAPER 16

The Virtualization Practice

The Virtualization Practice The Virtualization Practice White Paper: Managing Applications in Docker Containers Bernd Harzog Analyst Virtualization and Cloud Performance Management October 2014 Abstract Docker has captured the attention

More information

EXECUTIVE GUIDE WHY THE MODERN DATA CENTER NEEDS AN OPERATING SYSTEM

EXECUTIVE GUIDE WHY THE MODERN DATA CENTER NEEDS AN OPERATING SYSTEM EXECUTIVE GUIDE WHY THE MODERN DATA CENTER NEEDS AN OPERATING SYSTEM TABLE OF CONTENTS 2 6 8 12 21 30 Why your modern data center needs an operating system What is a data center operating system and how

More information

Modern App Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS)

Modern App Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS) Modern App Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS) Executive Summary Developers don t adopt locked down platforms. In a tale

More information

STRATEGIC WHITE PAPER. The next step in server virtualization: How containers are changing the cloud and application landscape

STRATEGIC WHITE PAPER. The next step in server virtualization: How containers are changing the cloud and application landscape STRATEGIC WHITE PAPER The next step in server virtualization: How containers are changing the cloud and application landscape Abstract Container-based server virtualization is gaining in popularity, due

More information

Changing the Equation on Big Data Spending

Changing the Equation on Big Data Spending White Paper Changing the Equation on Big Data Spending Big Data analytics can deliver new customer insights, provide competitive advantage, and drive business innovation. But complexity is holding back

More information

Container Clusters on OpenStack

Container Clusters on OpenStack Container Clusters on OpenStack 和 信 雲 端 首 席 技 術 顧 問 孔 祥 嵐 / Brian Kung brian.kung@gigacloud.com.tw Outlines VMs vs. Containers N-tier Architecture & Microservices Two Trends Emerging Ecosystem VMs vs.

More information

Modern Application Architecture for the Enterprise

Modern Application Architecture for the Enterprise Modern Application Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS) Executive Summary Developers don t adopt locked down platforms.

More information

Virtualizing Apache Hadoop. June, 2012

Virtualizing Apache Hadoop. June, 2012 June, 2012 Table of Contents EXECUTIVE SUMMARY... 3 INTRODUCTION... 3 VIRTUALIZING APACHE HADOOP... 4 INTRODUCTION TO VSPHERE TM... 4 USE CASES AND ADVANTAGES OF VIRTUALIZING HADOOP... 4 MYTHS ABOUT RUNNING

More information

Hadoop in the Hybrid Cloud

Hadoop in the Hybrid Cloud Presented by Hortonworks and Microsoft Introduction An increasing number of enterprises are either currently using or are planning to use cloud deployment models to expand their IT infrastructure. Big

More information

Converged, Real-time Analytics Enabling Faster Decision Making and New Business Opportunities

Converged, Real-time Analytics Enabling Faster Decision Making and New Business Opportunities Technology Insight Paper Converged, Real-time Analytics Enabling Faster Decision Making and New Business Opportunities By John Webster February 2015 Enabling you to make the best technology decisions Enabling

More information

Bimodal IT. PaaS and Containers, what are they all about? By Rhys Sharp Chief Technology Officer. August 2015

Bimodal IT. PaaS and Containers, what are they all about? By Rhys Sharp Chief Technology Officer. August 2015 Bimodal IT PaaS and Containers, what are they all about? By Rhys Sharp Chief Technology Officer August 2015 Bimodal IT - Paas and Containers, what are they all about? www.fedr8.com 1 Introduction The IT

More information

The Definitive Guide To Docker Containers

The Definitive Guide To Docker Containers The Definitive Guide To Docker Containers EXECUTIVE SUMMARY THE DEFINITIVE GUIDE TO DOCKER CONTAINERS Executive Summary We are in a new technology age software is dramatically changing. The era of off

More information

Unisys ClearPath Forward Fabric Based Platform to Power the Weather Enterprise

Unisys ClearPath Forward Fabric Based Platform to Power the Weather Enterprise Unisys ClearPath Forward Fabric Based Platform to Power the Weather Enterprise Introducing Unisys All in One software based weather platform designed to reduce server space, streamline operations, consolidate

More information

An Architecture Vision

An Architecture Vision An Architecture Vision Universal Cloud Communications Stack Cloud Telecom. Software that turns communications into a service. 1 Software Architecture That Matters Universal Cloud Communications Stack (UCCS),

More information

RED HAT CONTAINER STRATEGY

RED HAT CONTAINER STRATEGY RED HAT CONTAINER STRATEGY An introduction to Atomic Enterprise Platform and OpenShift 3 Gavin McDougall Senior Solution Architect AGENDA Software disrupts business What are Containers? Misconceptions

More information

80% 50x. 30x. CASE STUDY: How WaveMaker Got Faster, Better, More Agile with Docker. Lower Costs. Better Performance. Greater App Density

80% 50x. 30x. CASE STUDY: How WaveMaker Got Faster, Better, More Agile with Docker. Lower Costs. Better Performance. Greater App Density CASE STUDY: How WaveMaker Got Faster, Better, More Agile with Docker Just a few years back Docker was the awkward adolescent in the world of app development. Cut to 2015, Docker is pulling up alongside

More information

Table of Contents. Abstract. Cloud computing basics. The app economy. The API platform for the app economy

Table of Contents. Abstract. Cloud computing basics. The app economy. The API platform for the app economy Table of Contents Abstract Cloud computing basics The app economy The API platform for the app economy Your API platform: in the cloud or on premises? The cloud deployment model Cloud characteristics The

More information

Industry Brief. The Epic Migration. to Software Defined Storage. SUSE Enterprise Storage. Featuring

Industry Brief. The Epic Migration. to Software Defined Storage. SUSE Enterprise Storage. Featuring Industry Brief The Epic Migration to Software Defined Storage Featuring SUSE Enterprise Storage Document # INDUSTRY2015001 v5, January 2015 Copyright 2015 IT Brand Pulse. All rights reserved. Executive

More information

Considerations for Adopting PaaS (Platform as a Service)

Considerations for Adopting PaaS (Platform as a Service) Considerations for Adopting PaaS (Platform as a Service) Michael Dolan (mdolan@pivotal.io) Senior Field Engineer April 2015 1 Becoming The Agile Enterprise To effectively achieve its missions, the Department

More information

Taking the cloud to your datacenter

Taking the cloud to your datacenter Taking the cloud to your datacenter Microsoft Azure Stack Version 1.0 1/29/2016 CONTENTS Cloud is a paradigm, not a place... 2 Cloud computing on your terms... 3 Microsoft Azure Stack vision... 4 Reinventing

More information

BIG DATA-AS-A-SERVICE

BIG DATA-AS-A-SERVICE White Paper BIG DATA-AS-A-SERVICE What Big Data is about What service providers can do with Big Data What EMC can do to help EMC Solutions Group Abstract This white paper looks at what service providers

More information

How To Handle Big Data With A Data Scientist

How To Handle Big Data With A Data Scientist III Big Data Technologies Today, new technologies make it possible to realize value from Big Data. Big data technologies can replace highly customized, expensive legacy systems with a standard solution

More information

CONVERGE APPLICATIONS, ANALYTICS, AND DATA WITH VCE AND PIVOTAL

CONVERGE APPLICATIONS, ANALYTICS, AND DATA WITH VCE AND PIVOTAL CONVERGE APPLICATIONS, ANALYTICS, AND DATA WITH VCE AND PIVOTAL Vision In today s volatile economy, an organization s ability to exploit IT to speed time-to-results, control cost and risk, and drive differentiation

More information

Trends and Research Opportunities in Spatial Big Data Analytics and Cloud Computing NCSU GeoSpatial Forum

Trends and Research Opportunities in Spatial Big Data Analytics and Cloud Computing NCSU GeoSpatial Forum Trends and Research Opportunities in Spatial Big Data Analytics and Cloud Computing NCSU GeoSpatial Forum Siva Ravada Senior Director of Development Oracle Spatial and MapViewer 2 Evolving Technology Platforms

More information

Private Cloud Management

Private Cloud Management Private Cloud Management Speaker Systems Engineer Unified Data Center & Cloud Team Germany Juni 2016 Agenda Cisco Enterprise Cloud Suite Two Speeds of Applications DevOps Starting Point into PaaS Cloud

More information

Evolution of the Modern Software Supply Chain The Docker Survey, 2016

Evolution of the Modern Software Supply Chain The Docker Survey, 2016 Evolution of the Modern Software Supply Chain The Docker Survey, 2016 Overview Containers are the base unit of the modern software supply chain. The results of the Evolution of the Modern Software Supply

More information

Platform as a Service: The IBM point of view

Platform as a Service: The IBM point of view Platform as a Service: The IBM point of view Don Boulia Vice President Strategy, IBM and Private Cloud Contents 1 Defining Platform as a Service 2 The IBM view of PaaS 6 IBM offerings 7 Summary 7 For more

More information

Simple. Extensible. Open.

Simple. Extensible. Open. White Paper Simple. Extensible. Open. Unleash the Value of Data with EMC ViPR Global Data Services Abstract The following paper opens with the evolution of enterprise storage infrastructure in the era

More information

Trends driving software-defined storage

Trends driving software-defined storage Software-defined storage. Redefined. Introduction to Hedvig Hedvig Executive Team February, 2015 Trends driving software-defined storage Data volumes grow. App requirements change. Users demand new services.

More information

VMworld 2015 Track Names and Descriptions

VMworld 2015 Track Names and Descriptions Software- Defined Data Center Software- Defined Data Center General VMworld 2015 Track Names and Descriptions Pioneered by VMware and recognized as groundbreaking by the industry and analysts, the VMware

More information

Delivering Customer Value Faster With Big Data Analytics

Delivering Customer Value Faster With Big Data Analytics Delivering Customer Value Faster With Big Data Analytics Tackle the challenges of Big Data and real-time analytics with a cloud-based Decision Management Ecosystem James Taylor CEO Customer data is more

More information

Developing Scalable Smart Grid Infrastructure to Enable Secure Transmission System Control

Developing Scalable Smart Grid Infrastructure to Enable Secure Transmission System Control Developing Scalable Smart Grid Infrastructure to Enable Secure Transmission System Control EP/K006487/1 UK PI: Prof Gareth Taylor (BU) China PI: Prof Yong-Hua Song (THU) Consortium UK Members: Brunel University

More information

TRANSFORMING I.T. WITH AN OPEN HYBRID CLOUD

TRANSFORMING I.T. WITH AN OPEN HYBRID CLOUD Whitepaper TRANSFORMING I.T. WITH AN OPEN HYBRID CLOUD Gordon Haff EXECUTIVE SUMMARY Information technology is increasingly at the core of how organizations service their customers and differentiate themselves

More information

WHITE PAPER Redefining Monitoring for Today s Modern IT Infrastructures

WHITE PAPER Redefining Monitoring for Today s Modern IT Infrastructures WHITE PAPER Redefining Monitoring for Today s Modern IT Infrastructures Modern technologies in Zenoss Service Dynamics v5 enable IT organizations to scale out monitoring and scale back costs, avoid service

More information

PISTON CLOUDOS WITH OPENSTACK: TURN-KEY WEB-SCALE INFRASTRUCTURE SOFTWARE. Easy. CloudOS Compendium TECHNICAL WHITEPAPER

PISTON CLOUDOS WITH OPENSTACK: TURN-KEY WEB-SCALE INFRASTRUCTURE SOFTWARE. Easy. CloudOS Compendium TECHNICAL WHITEPAPER PISTON CLOUDOS WITH OPENSTACK: TURN-KEY WEB-SCALE INFRASTRUCTURE SOFTWARE applications use Piston CloudOS with OpenStack to automate their IT operations and bring new products to market faster. Piston

More information

Modern IT Operations Management. Why a New Approach is Required, and How Boundary Delivers

Modern IT Operations Management. Why a New Approach is Required, and How Boundary Delivers Modern IT Operations Management Why a New Approach is Required, and How Boundary Delivers TABLE OF CONTENTS EXECUTIVE SUMMARY 3 INTRODUCTION: CHANGING NATURE OF IT 3 WHY TRADITIONAL APPROACHES ARE FAILING

More information

HPC ON WALL ST OPENSTACK AND BIG DATA. Brent Holden Chief Field Architect, Eastern US April 2014

HPC ON WALL ST OPENSTACK AND BIG DATA. Brent Holden Chief Field Architect, Eastern US April 2014 HPC ON WALL ST OPENSTACK AND BIG DATA Brent Holden Chief Field Architect, Eastern US April 2014 OPENSTACK FOR HIGH PUT-THROUGH DATA WORKLOADS ARE EVOLVING CLOUD WORKLOADS TRADITIONAL WORKLOADS Typically

More information

The Future of Data Management

The Future of Data Management The Future of Data Management with Hadoop and the Enterprise Data Hub Amr Awadallah (@awadallah) Cofounder and CTO Cloudera Snapshot Founded 2008, by former employees of Employees Today ~ 800 World Class

More information

VALUE PROPOSITION FOR SERVICE PROVIDERS. Helping Service Providers accelerate adoption of the cloud

VALUE PROPOSITION FOR SERVICE PROVIDERS. Helping Service Providers accelerate adoption of the cloud VALUE PROPOSITION FOR SERVICE PROVIDERS Helping Service Providers accelerate adoption of the cloud Partnership with Service Providers Enabling Your Cloud Services in Complex Environments Today s challenge

More information

A Sumo Logic White Paper. Harnessing Continuous Intelligence to Enable the Modern DevOps Team

A Sumo Logic White Paper. Harnessing Continuous Intelligence to Enable the Modern DevOps Team A Sumo Logic White Paper Harnessing Continuous Intelligence to Enable the Modern DevOps Team As organizations embrace the DevOps approach to application development they face new challenges that can t

More information

Pulsar Realtime Analytics At Scale. Tony Ng April 14, 2015

Pulsar Realtime Analytics At Scale. Tony Ng April 14, 2015 Pulsar Realtime Analytics At Scale Tony Ng April 14, 2015 Big Data Trends Bigger data volumes More data sources DBs, logs, behavioral & business event streams, sensors Faster analysis Next day to hours

More information

White paper: Delivering Business Value with Apache Mesos

White paper: Delivering Business Value with Apache Mesos Executive Summary In today s business environment, time to market is critical as we are more reliant on technology to meet customer needs. Traditional approaches to solving technology problems are failing

More information

An enterprise- grade cloud management platform that enables on- demand, self- service IT operating models for Global 2000 enterprises

An enterprise- grade cloud management platform that enables on- demand, self- service IT operating models for Global 2000 enterprises agility PLATFORM Product Whitepaper An enterprise- grade cloud management platform that enables on- demand, self- service IT operating models for Global 2000 enterprises ServiceMesh 233 Wilshire Blvd,

More information

THE MOBlLE APP. REVOLUTlON. 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD

THE MOBlLE APP. REVOLUTlON. 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD THE MOBlLE APP REVOLUTlON 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD People use hand-held devices for everything from communicating and playing games to shopping and surfing the Internet. In fact,

More information

Build & Manage Clouds with Red Hat Cloud Infrastructure Products. TONI WILLBERG Solution Architect Red Hat toni@redhat.com

Build & Manage Clouds with Red Hat Cloud Infrastructure Products. TONI WILLBERG Solution Architect Red Hat toni@redhat.com Build & Manage Clouds with Red Hat Cloud Infrastructure Products TONI WILLBERG Solution Architect Red Hat toni@redhat.com AGENDA Cloud Concepts Market Overview Evolution to Cloud Workloads Evolution to

More information

Sacha Dubois RED HAT TRENDS AND TECHNOLOGY PATH TO AN OPEN HYBRID CLOUD AND DEVELOPER AGILITY. Solution Architect Infrastructure

Sacha Dubois RED HAT TRENDS AND TECHNOLOGY PATH TO AN OPEN HYBRID CLOUD AND DEVELOPER AGILITY. Solution Architect Infrastructure RED HAT TRENDS AND TECHNOLOGY PATH TO AN OPEN HYBRID CLOUD AND DEVELOPER AGILITY Sacha Dubois Solution Architect Infrastructure sadubois@redhat.com 13. März 2015 - Seite 1 / 25 I.T. CHALLENGES 13. März

More information

YARN Apache Hadoop Next Generation Compute Platform

YARN Apache Hadoop Next Generation Compute Platform YARN Apache Hadoop Next Generation Compute Platform Bikas Saha @bikassaha Hortonworks Inc. 2013 Page 1 Apache Hadoop & YARN Apache Hadoop De facto Big Data open source platform Running for about 5 years

More information

IBM PureFlex System. The infrastructure system with integrated expertise

IBM PureFlex System. The infrastructure system with integrated expertise IBM PureFlex System The infrastructure system with integrated expertise 2 IBM PureFlex System IT is moving to the strategic center of business Over the last 100 years information technology has moved from

More information

Mesos: A Platform for Fine- Grained Resource Sharing in Data Centers (II)

Mesos: A Platform for Fine- Grained Resource Sharing in Data Centers (II) UC BERKELEY Mesos: A Platform for Fine- Grained Resource Sharing in Data Centers (II) Anthony D. Joseph LASER Summer School September 2013 My Talks at LASER 2013 1. AMP Lab introduction 2. The Datacenter

More information

Internet of Things. Opportunity Challenges Solutions

Internet of Things. Opportunity Challenges Solutions Internet of Things Opportunity Challenges Solutions Copyright 2014 Boeing. All rights reserved. GPDIS_2015.ppt 1 ANALYZING INTERNET OF THINGS USING BIG DATA ECOSYSTEM Internet of Things matter for... Industrial

More information

Introduction to Cloud Computing

Introduction to Cloud Computing Introduction to Cloud Computing Cloud Computing I (intro) 15 319, spring 2010 2 nd Lecture, Jan 14 th Majd F. Sakr Lecture Motivation General overview on cloud computing What is cloud computing Services

More information

Big Data. Fast Forward. Putting data to productive use

Big Data. Fast Forward. Putting data to productive use Big Data Putting data to productive use Fast Forward What is big data, and why should you care? Get familiar with big data terminology, technologies, and techniques. Getting started with big data to realize

More information

BANKING ON CUSTOMER BEHAVIOR

BANKING ON CUSTOMER BEHAVIOR BANKING ON CUSTOMER BEHAVIOR How customer data analytics are helping banks grow revenue, improve products, and reduce risk In the face of changing economies and regulatory pressures, retail banks are looking

More information

How To Write A Trusted Analytics Platform (Tap)

How To Write A Trusted Analytics Platform (Tap) Trusted Analytics Platform (TAP) TAP Technical Brief October 2015 TAP Technical Brief Overview Trusted Analytics Platform (TAP) is open source software, optimized for performance and security, that accelerates

More information

Managing Big Data with Hadoop & Vertica. A look at integration between the Cloudera distribution for Hadoop and the Vertica Analytic Database

Managing Big Data with Hadoop & Vertica. A look at integration between the Cloudera distribution for Hadoop and the Vertica Analytic Database Managing Big Data with Hadoop & Vertica A look at integration between the Cloudera distribution for Hadoop and the Vertica Analytic Database Copyright Vertica Systems, Inc. October 2009 Cloudera and Vertica

More information

Integrate Big Data into Business Processes and Enterprise Systems. solution white paper

Integrate Big Data into Business Processes and Enterprise Systems. solution white paper Integrate Big Data into Business Processes and Enterprise Systems solution white paper THOUGHT LEADERSHIP FROM BMC TO HELP YOU: Understand what Big Data means Effectively implement your company s Big Data

More information

Mike Maxey. Senior Director Product Marketing Greenplum A Division of EMC. Copyright 2011 EMC Corporation. All rights reserved.

Mike Maxey. Senior Director Product Marketing Greenplum A Division of EMC. Copyright 2011 EMC Corporation. All rights reserved. Mike Maxey Senior Director Product Marketing Greenplum A Division of EMC 1 Greenplum Becomes the Foundation of EMC s Big Data Analytics (July 2010) E M C A C Q U I R E S G R E E N P L U M For three years,

More information

A new era of PaaS. ericsson White paper Uen 284 23-3263 February 2015

A new era of PaaS. ericsson White paper Uen 284 23-3263 February 2015 ericsson White paper Uen 284 23-3263 February 2015 A new era of PaaS speed and safety for the hybrid cloud This white paper presents the benefits for operators and large enterprises of adopting a policydriven

More information

Big Data - Infrastructure Considerations

Big Data - Infrastructure Considerations April 2014, HAPPIEST MINDS TECHNOLOGIES Big Data - Infrastructure Considerations Author Anand Veeramani / Deepak Shivamurthy SHARING. MINDFUL. INTEGRITY. LEARNING. EXCELLENCE. SOCIAL RESPONSIBILITY. Copyright

More information

Take Charge of the Cloud Platform for NFV to Maximize Success

Take Charge of the Cloud Platform for NFV to Maximize Success White Paper Take Charge of the Cloud Platform for NFV to Maximize Success Prepared by Caroline Chappell Principal Analyst, Cloud & NFV, Heavy Reading www.heavyreading.com on behalf of www.vmware.com February

More information

Solving the Big Data Intention-Deployment Gap

Solving the Big Data Intention-Deployment Gap Solving the Big Data Intention-Deployment Gap Big Data is on virtually every enterprise s to-do list these days. Recognizing both its potential and competitive advantage, companies are aligning a vast

More information

Solving the Big Data Intention-Deployment Gap

Solving the Big Data Intention-Deployment Gap Whitepaper Solving the Big Data Intention-Deployment Gap Big Data is on virtually every enterprise s to-do list these days. Recognizing both its potential and competitive advantage, companies are aligning

More information

WHITEPAPER. Why Dependency Mapping is Critical for the Modern Data Center

WHITEPAPER. Why Dependency Mapping is Critical for the Modern Data Center WHITEPAPER Why Dependency Mapping is Critical for the Modern Data Center OVERVIEW The last decade has seen a profound shift in the way IT is delivered and consumed by organizations, triggered by new technologies

More information

BUILDING THE CASE FOR CLOUD: HOW BUSINESS FUNCTIONS IN UK MANUFACTURERS ARE DRIVING PUBLIC CLOUD ADOPTION

BUILDING THE CASE FOR CLOUD: HOW BUSINESS FUNCTIONS IN UK MANUFACTURERS ARE DRIVING PUBLIC CLOUD ADOPTION BUILDING THE CASE FOR CLOUD: HOW BUSINESS FUNCTIONS IN UK MANUFACTURERS ARE DRIVING PUBLIC CLOUD ADOPTION Industry Report Contents 2 4 6 Executive Summary Context for the Sector Key Findings 3 5 9 About

More information

Cloud Computing: Elastic, Scalable, On-Demand IT Services for Everyone. Table of Contents. Cloud.com White Paper April 2010. 1 Executive Summary...

Cloud Computing: Elastic, Scalable, On-Demand IT Services for Everyone. Table of Contents. Cloud.com White Paper April 2010. 1 Executive Summary... Cloud Computing: Elastic, Scalable, On-Demand IT Services for Everyone Cloud.com White Paper April 2010 Table of Contents 1 Executive Summary... 2 2 Motivation Around Cloud Computing... 2 3 Comparing Cloud

More information

Big Data and Apache Hadoop Adoption:

Big Data and Apache Hadoop Adoption: Expert Reference Series of White Papers Big Data and Apache Hadoop Adoption: Key Challenges and Rewards 1-800-COURSES www.globalknowledge.com Big Data and Apache Hadoop Adoption: Key Challenges and Rewards

More information

Data Management Emerging Trends. Sourabh Mukherjee Data Management Practice Head, India Accenture

Data Management Emerging Trends. Sourabh Mukherjee Data Management Practice Head, India Accenture Data Management Emerging Trends Sourabh Mukherjee Data Management Practice Head, India Accenture Data has always been an important asset for companies as it is the basis for making business decisions.

More information

Application Containers

Application Containers Application Containers Transcending the private-public cloud frontier Digital Ecosystem platform provides manufacturers new channels for customer engagement and monetization of product ideas Today s digital

More information

Optimizing Service Levels in Public Cloud Deployments

Optimizing Service Levels in Public Cloud Deployments WHITE PAPER OCTOBER 2014 Optimizing Service Levels in Public Cloud Deployments Keys to Effective Service Management 2 WHITE PAPER: OPTIMIZING SERVICE LEVELS IN PUBLIC CLOUD DEPLOYMENTS ca.com Table of

More information

Is Hyperconverged Cost-Competitive with the Cloud?

Is Hyperconverged Cost-Competitive with the Cloud? Economic Insight Paper Is Hyperconverged Cost-Competitive with the Cloud? An Evaluator Group TCO Analysis Comparing AWS and SimpliVity By Eric Slack, Sr. Analyst January 2016 Enabling you to make the best

More information

Reference Model for Cloud Applications CONSIDERATIONS FOR SW VENDORS BUILDING A SAAS SOLUTION

Reference Model for Cloud Applications CONSIDERATIONS FOR SW VENDORS BUILDING A SAAS SOLUTION October 2013 Daitan White Paper Reference Model for Cloud Applications CONSIDERATIONS FOR SW VENDORS BUILDING A SAAS SOLUTION Highly Reliable Software Development Services http://www.daitangroup.com Cloud

More information

Ironfan Your Foundation for Flexible Big Data Infrastructure

Ironfan Your Foundation for Flexible Big Data Infrastructure Ironfan Your Foundation for Flexible Big Data Infrastructure Benefits With Ironfan, you can expect: Reduced cycle time. Provision servers in minutes not days. Improved visibility. Increased transparency

More information

can you improve service quality and availability while optimizing operations on VCE Vblock Systems?

can you improve service quality and availability while optimizing operations on VCE Vblock Systems? SOLUTION BRIEF Service Assurance Solutions from CA Technologies for VCE Vblock Systems can you improve service quality and availability while optimizing operations on VCE Vblock Systems? agility made possible

More information

Management for the Mobile-Cloud Era

Management for the Mobile-Cloud Era Management for the Mobile-Cloud Era Sajai Krishnan VP Product Marketing Cloud Management Business Unit September 10, 2014 2014 VMware Inc. All rights reserved. Mobile-cloud Era - The CIO paradox New expectations

More information

Accenture Cloud Platform Unlocks Agility and Control

Accenture Cloud Platform Unlocks Agility and Control Accenture Cloud Platform Unlocks Agility and Control 2 Accenture Cloud Platform Unlocks Agility and Control The Accenture Cloud Platform is at the heart of today s leading-edge, enterprise cloud solutions.

More information

White Paper: Enhancing Functionality and Security of Enterprise Data Holdings

White Paper: Enhancing Functionality and Security of Enterprise Data Holdings White Paper: Enhancing Functionality and Security of Enterprise Data Holdings Examining New Mission- Enabling Design Patterns Made Possible by the Cloudera- Intel Partnership Inside: Improving Return on

More information

A Comprehensive Cloud Management Platform with Vblock Systems and Cisco Intelligent Automation for Cloud

A Comprehensive Cloud Management Platform with Vblock Systems and Cisco Intelligent Automation for Cloud WHITE PAPER A Comprehensive Cloud Management Platform with Vblock Systems and Cisco Intelligent Automation for Cloud Abstract Data center consolidation and virtualization have set the stage for cloud computing.

More information

Bringing Much Needed Automation to OpenStack Infrastructure

Bringing Much Needed Automation to OpenStack Infrastructure white paper Bringing Much Needed Automation to OpenStack Infrastructure Contents Abstract 1 The Move to the Cloud 2 The Inherent Complexity of OpenStack Cloud Solutions 4 Solving OpenStack Complexity with

More information

Enterprise PaaS Evaluation Guide

Enterprise PaaS Evaluation Guide Enterprise PaaS Evaluation Guide 1 Defining the Enterprise PaaS There are several competing definitions of Platform-as-a-Service (PaaS) and a broad range of service offerings bearing that label. For the

More information

The Rise of Industrial Big Data

The Rise of Industrial Big Data GE Intelligent Platforms The Rise of Industrial Big Data Leveraging large time-series data sets to drive innovation, competitiveness and growth capitalizing on the big data opportunity The Rise of Industrial

More information

Integrating Big Data into Business Processes and Enterprise Systems

Integrating Big Data into Business Processes and Enterprise Systems Integrating Big Data into Business Processes and Enterprise Systems THOUGHT LEADERSHIP FROM BMC TO HELP YOU: Understand what Big Data means Effectively implement your company s Big Data strategy Get business

More information

Databricks. A Primer

Databricks. A Primer Databricks A Primer Who is Databricks? Databricks was founded by the team behind Apache Spark, the most active open source project in the big data ecosystem today. Our mission at Databricks is to dramatically

More information

Capitalize on Big Data for Competitive Advantage with Bedrock TM, an integrated Management Platform for Hadoop Data Lakes

Capitalize on Big Data for Competitive Advantage with Bedrock TM, an integrated Management Platform for Hadoop Data Lakes Capitalize on Big Data for Competitive Advantage with Bedrock TM, an integrated Management Platform for Hadoop Data Lakes Highly competitive enterprises are increasingly finding ways to maximize and accelerate

More information

How To Compare The Two Cloud Computing Models

How To Compare The Two Cloud Computing Models WHITE PAPER Elastic Cloud Infrastructure: Agile, Efficient and Under Your Control - 1 - INTRODUCTION Most businesses want to spend less time and money building and managing infrastructure to focus resources

More information

Why the Datacenter needs an Operating System. Dr. Bernd Mathiske Senior Software Architect Mesosphere

Why the Datacenter needs an Operating System. Dr. Bernd Mathiske Senior Software Architect Mesosphere Why the Datacenter needs an Operating System 1 Dr. Bernd Mathiske Senior Software Architect Mesosphere Bringing Google-Scale Computing to Everybody A Slice of Google Tech Transfer History 2005: MapReduce

More information

Blazent IT Data Intelligence Technology:

Blazent IT Data Intelligence Technology: Blazent IT Data Intelligence Technology: From Disparate Data Sources to Tangible Business Value White Paper The phrase garbage in, garbage out (GIGO) has been used by computer scientists since the earliest

More information

Real-Time Big Data Analytics + Internet of Things (IoT) = Value Creation

Real-Time Big Data Analytics + Internet of Things (IoT) = Value Creation Real-Time Big Data Analytics + Internet of Things (IoT) = Value Creation January 2015 Market Insights Report Executive Summary According to a recent customer survey by Vitria, executives across the consumer,

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

Databricks. A Primer

Databricks. A Primer Databricks A Primer Who is Databricks? Databricks vision is to empower anyone to easily build and deploy advanced analytics solutions. The company was founded by the team who created Apache Spark, a powerful

More information

Building Hyper-Scale Platform-as-a-Service Microservices with Microsoft Azure. Patriek van Dorp and Alex Thissen

Building Hyper-Scale Platform-as-a-Service Microservices with Microsoft Azure. Patriek van Dorp and Alex Thissen Building Hyper-Scale Platform-as-a-Service Microservices with Microsoft Azure Patriek van Dorp and Alex Thissen About me: Patriek van Dorp pvandorp@xpirit.com @pvandorp Xpirit http://onwindowsazure.com

More information

vision realize your software-defined with the Digital Data Center from Atos Whitepaper

vision realize your software-defined with the Digital Data Center from Atos Whitepaper realize your software-defined vision with the Digital Data Center from Atos Whitepaper Revolutionize agility and flexibility. Accelerate time to market. Mitigate risk without inhibiting innovation. Reduce

More information

Elastic Private Clouds

Elastic Private Clouds White Paper Elastic Private Clouds Agile, Efficient and Under Your Control 1 Introduction Most businesses want to spend less time and money building and managing IT infrastructure to focus resources on

More information

Apache Ignite TM (Incubating) - In- Memory Data Fabric Fast Data Meets Open Source

Apache Ignite TM (Incubating) - In- Memory Data Fabric Fast Data Meets Open Source Apache Ignite TM (Incubating) - In- Memory Data Fabric Fast Data Meets Open Source DMITRIY SETRAKYAN Founder, PPMC http://www.ignite.incubator.apache.org @apacheignite @dsetrakyan Agenda About In- Memory

More information

At the Heart of Digital-Ready Business

At the Heart of Digital-Ready Business At the Heart of Digital-Ready Business Leading the Digital Change: A CIO Perspective A Mega Trend at the Helm of Innovation and Superior Customer Experience Abstract As growing digitization and evolving

More information

Virtualization Essentials

Virtualization Essentials Virtualization Essentials Table of Contents Introduction What is Virtualization?.... 3 How Does Virtualization Work?... 4 Chapter 1 Delivering Real Business Benefits.... 5 Reduced Complexity....5 Dramatically

More information

Achieve Economic Synergies by Managing Your Human Capital In The Cloud

Achieve Economic Synergies by Managing Your Human Capital In The Cloud Achieve Economic Synergies by Managing Your Human Capital In The Cloud By Orblogic, March 12, 2014 KEY POINTS TO CONSIDER C LOUD S OLUTIONS A RE P RACTICAL AND E ASY TO I MPLEMENT Time to market and rapid

More information

Cisco Data Preparation

Cisco Data Preparation Data Sheet Cisco Data Preparation Unleash your business analysts to develop the insights that drive better business outcomes, sooner, from all your data. As self-service business intelligence (BI) and

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

HDP Enabling the Modern Data Architecture

HDP Enabling the Modern Data Architecture HDP Enabling the Modern Data Architecture Herb Cunitz President, Hortonworks Page 1 Hortonworks enables adoption of Apache Hadoop through HDP (Hortonworks Data Platform) Founded in 2011 Original 24 architects,

More information