Choosing a Cloud DBMS: Architectures and Tradeoffs

Total Page:16

File Type:pdf, Size:1020Kb

Choosing a Cloud DBMS: Architectures and Tradeoffs Choosing A Cloud DBMS: Architectures and Tradeoffs Junjay Tan1, Thanaa Ghanem2,∗ , Matthew Perron3, Xiangyao Yu3, Michael Stonebraker3,6, David DeWitt3, Marco Serafini4, Ashraf Aboulnaga5, Tim Kraska3 1Brown University; 2Metropolitan State University (Minnesota), CSC; 3MIT CSAIL; 4University of Massachusetts Amherst, CICS; 5Qatar Computing Research Institute, HBKU; 6Tamr, Inc. [email protected], [email protected], fmperron,yxy,[email protected], [email protected], [email protected], [email protected], [email protected] ABSTRACT Query Executor Nodes As analytic (OLAP) applications move to the cloud, DBMSs have shifted from employing a pure shared-nothing design Local instance Local instance Local instance Local instance with locally attached storage to a hybrid design that com- storage storage storage storage bines the use of shared-storage (e.g., AWS S3) with the use of shared-nothing query execution mechanisms. This paper sheds light on the resulting tradeoffs, which have not been properly identified in previous work. To this end, it evaluates Remote object / block store the TPC-H benchmark across a variety of DBMS offerings running in a cloud environment (AWS) on fast 10Gb+ net- Database works, specifically database-as-a-service offerings (Redshift, Figure 1: Shared Disk Architecture Athena), query engines (Presto, Hive), and a traditional cloud agnostic OLAP database (Vertica). While these com- parisons cannot be apples-to-apples in all cases due to cloud are deploying servers by the millions; not by the thousands) configuration restrictions, we nonetheless identify patterns and specialization (cloud vendors' business priority is infras- and design choices that are advantageous. These include tructure management, whereas other organizations perform prioritizing low-cost object stores like S3 for data storage, this to support main lines of business). using system agnostic yet still performant columnar formats For analytic applications running on the cloud, data re- like ORC that allow easy switching to other systems for sides on external shared storage systems such as S3 or EBS different workloads, and making features that benefit sub- offerings on Amazon Web Services (AWS). Query executors sequent runs like query precompilation and caching remote are spun on-demand in compute nodes such as EC2 nodes data to faster storage optional rather than required because in AWS. Compute nodes should be kept running only when they disadvantage ad hoc queries. strictly necessary because the running cost of moderately PVLDB Reference Format: sized instances is orders of magnitude greater than the cost of Junjay Tan, Thanaa Ghanem, Matthew Perron, Xiangyao Yu, storage services. This has resulted in a fundamental architec- Michael Stonebraker, David DeWitt, Marco Serafini, Ashraf Aboul- tural shift for database management systems (DBMSs). In naga, Tim Kraska. Choosing A Cloud DBMS: Architectures and Tradeoffs. PVLDB, 12(12): 2170-2182, 2019. traditional DBMSs, queries are executed in the same nodes DOI: https://doi.org/10.14778/3352063.3352133 that store the database. If the DBMS is distributed, the dom- inating paradigm has been the shared-nothing architecture, 1. INTRODUCTION whereby the database is partitioned among query execution servers. Cloud architectures fit more naturally in the al- Organizations are moving their applications to the cloud. ternative \shared-disk" architecture, where the database is Despite objections to such a move (security, data location stored by separate storage servers that are distinct from constraints, etc.), sooner or later cost and flexibility consid- query execution servers (see Figure 1). erations will prevail, as evidenced by even national security For the cloud provider selling a DBMS-as-a-service, an agencies committing to vendor hosted cloud deployments architecture that \decouple[s] the storage tier from the com- [17]. The reasons deal with economies of scale (cloud vendors pute tier" provides many advantages, including simplifying ∗Work done while at the Qatar Computing Research Institute node failure tolerance, hot disk management, and software upgrades. Additionally, it allows the reduction of network traffic by moving certain DBMS functions like the log appli- This work is licensed under the Creative Commons Attribution- cator to the storage tier, as in the case of Aurora [27]. NonCommercial-NoDerivatives 4.0 International License. To view a copy Shared-disk DBMSs for cloud analytics face non-obvious of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. For design choices relevant to users. This paper sheds light on any use beyond those covered by this license, obtain permission by emailing resulting tradeoffs that have not been clearly identified in [email protected]. Copyright is held by the owner/author(s). Publication rights previous work. To this end, we evaluate six popular produc- licensed to the VLDB Endowment. tion OLAP DBMSs (Athena, Hive [23], Presto, Redshift [10], Proceedings of the VLDB Endowment, Vol. 12, No. 12 ISSN 2150-8097. Redshift Spectrum, and Vertica [14]) with different AWS DOI: https://doi.org/10.14778/3352063.3352133 resource and storage configurations using the TPC-H bench- 2170 mark. Despite being limited to these specific DBMSs and a for a scale-up DBMS running on instances that are twice single cloud provider, our work highlights general tradeoffs as powerful. How do existing DBMSs scale vertically and that arise in other settings. This study aims to provide users horizontally in cloud settings? insights into how different DBMSs and cloud configurations perform for a business analytics workload, which can help Dealing with DBMS-as-a-service offerings: Many clo- them choose the right configurations. It also provides devel- ud providers have DBMS-as-a-service offerings, such as Athe- opers an overview of the design space for future cloud DBMS na or Redshift on AWS. These come with different pricing implementations. structures compared to other services such as EC2 or S3. For We group the DBMS design choices and tradeoffs into example, Athena bills queries based only on the amount of three broad categories, which result from the need for deal- data scanned. These services also offer less flexibility to users ing with (A) external storage; (B) query executors that are in terms of the resources they use and hide key low-level spun on demand; and (C) DBMS-as-a-service offerings. details entirely. How do these different classes of systems compare? Dealing with external storage: Cloud providers offer multiple storage services with different semantics, perfor- Summary of findings: This paper provides a detailed mance, and cost. The first DBMS design choice involves account of these tradeoffs and sheds light into these questions. selecting one of these services. Object stores, like AWS S3, The main findings include the following: allow storing arbitrary binary blobs that can be associated with application-specific metadata and are assigned unique • Cheap remote shared object storage like S3 provides or- global identifiers. These data are accessible via a web-based der of magnitude cost savings over remote block stores REST API. Alternatively, one can use remote block-level like EBS that are commonly used for DBMS storage in storage services like AWS EBS, which can be attached to shared-nothing-architectures, without significant per- compute nodes and accessed by their local file system. Google formance disadvantages in mixed workloads. (Shared Cloud Platform (GCP) and Microsoft Azure offer similar nothing architectures adapted for the cloud often do storage choices. Which abstraction performs best and is not use true local storage because local data is not most cost effective? persisted upon node shutdown.) Compute node instances (EC2) are increasingly being • Physically attached local instance storage provides offered with larger local instance storage volumes. These faster performance than EBS. Additionally, its cost nodes have faster I/O than those with EBS storage and may is coupled into compute costs and this provides slight be cheaper per unit storage but are ephemeral, limited to cost advantages over EBS due to AWS's contractual certain instance types and sizes, and do not persist data compute resource pricing schemes. after system restarts. How to use them in the DBMS design? By initially pre-loading the database onto local instance • Caching from cheap remote object storage like S3 to storage, a DBMS can keep the traditional shared-nothing node block storage is disadvantageous in cold start model. Alternatively, the local storage can be used as a cases and should not always be done by default. cache to avoid accessing remote storage. Is local caching • A carefully chosen general use columnar format like advantageous in a time of ever-increasing network speeds? ORC provides flexibility for future system optimiza- The DBMS design also has to deal with different data for- tion over proprietary storage formats used by shared- mats. Keeping data on external shared storage means that nothing DBMSs and appears performant on TPC-H data can be shared across multiple applications. In fact, many even without optimized partitioning. Shared-nothing DBMSs are able to access data stored in DBMS-agnostic systems try to bridge the gap with hybrid features formats, such as Parquet or ORC. Which compatibility issues (Vertica Eon and Redshift Spectrum), but their cost- arise in this context? performance characteristics are very different than sys- tems focused on utilizing these general data formats Dealing with on-demand query executors: Query ex- like Presto. ecutors should be kept running as little as possible to min- imize costs, so they may be often started and stopped. A • Redshift is unique among the systems tested in that it consequence is that query executors have different startup compiles queries to machine code. Because it is very times and often run queries with a cold cache. Which DBMSs efficient in the single-user use case on warm and cold start quickly? Which DBMSs are designed for optimal per- cache, query compilation time is not disadvantageous on formance with a cold vs warm cache? This relates to how TPC-H.
Recommended publications
  • Finding Fraud in Large and Diverse Data Sets
    Business white paper Finding fraud in large and diverse data sets Applying real-time, next-generation analytics to fraud detection and prevention using the HP Vertica Analytics Platform Developments in data mining In the effort to identify and deter fraud, conventional wisdom still applies: Follow the money. That simple adage notwithstanding, the task of tracking fraud and its perpetrators continues to vex both private and public organizations. Clearly, advancements in information technology have made it possible to capture transaction data at the most granular level. For instance, in the retail trade alone, transmissions of up to 500 megabytes daily between individual point-of-sale sites and their data centers are typical.2 Logically, such detail should result in greater transparency and greater capacity to fight fraud. Yet, the sheer volume of data that organizations now maintain, pulled from so many sources and stored across a range of locations has made the same organizations more vulnerable.3 More points of entry amount to more opportunities for fraud. In its annual Global Fraud Report, The Economist found that 50% of all businesses surveyed acknowledged they were vulnerable to fraud; 35% of North American companies specifically cited IT complexity for increasing their exposure to risk. Accordingly, the application of data mining as a security measure A solution for real-time fraud detection has become increasingly germane to modern fraud detection. Historically, data mining as a means of identifying trends from raw Fraud saps hundreds of billions of dollars each year from the statistics can be traced back to the 1700s with the introduction of bottom line of industries such as banking, insurance, retail, Bayes’ theorem.
    [Show full text]
  • The Vertica Analytic Database: C-Store 7 Years Later
    The Vertica Analytic Database: C-Store 7 Years Later Andrew Lamb, Matt Fuller, Ramakrishna Varadarajan Nga Tran, Ben Vandiver, Lyric Doshi, Chuck Bear Vertica Systems, An HP Company Cambridge, MA {alamb, mfuller, rvaradarajan, ntran, bvandiver, ldoshi, cbear} @vertica.com ABSTRACT that they were designed for transactional workloads on late- This paper describes the system architecture of the Ver- model computer hardware 40 years ago. Vertica is designed tica Analytic Database (Vertica), a commercialization of the for analytic workloads on modern hardware and its success design of the C-Store research prototype. Vertica demon- proves the commercial and technical viability of large scale strates a modern commercial RDBMS system that presents distributed databases which offer fully ACID transactions a classical relational interface while at the same time achiev- yet efficiently process petabytes of structured data. ing the high performance expected from modern “web scale” This main contributions of this paper are: analytic systems by making appropriate architectural choices. 1. An overview of the architecture of the Vertica Analytic Vertica is also an instructive lesson in how academic systems Database, focusing on deviations from C-Store. research can be directly commercialized into a successful product. 2. Implementation and deployment lessons that led to those differences. 1. INTRODUCTION 3. Observations on real-world experiences that can in- The Vertica Analytic Database (Vertica) is a distributed1, form future research directions for large scale analytic massively parallel RDBMS system that commercializes the systems. ideas of the C-Store[21] project. It is one of the few new commercial relational database systems that is widely used We hope that this paper contributes a perspective on com- in business critical systems.
    [Show full text]
  • Database Software Market: Billy Fitzsimmons +1 312 364 5112
    Equity Research Technology, Media, & Communications | Enterprise and Cloud Infrastructure March 22, 2019 Industry Report Jason Ader +1 617 235 7519 [email protected] Database Software Market: Billy Fitzsimmons +1 312 364 5112 The Long-Awaited Shake-up [email protected] Naji +1 212 245 6508 [email protected] Please refer to important disclosures on pages 70 and 71. Analyst certification is on page 70. William Blair or an affiliate does and seeks to do business with companies covered in its research reports. As a result, investors should be aware that the firm may have a conflict of interest that could affect the objectivity of this report. This report is not intended to provide personal investment advice. The opinions and recommendations here- in do not take into account individual client circumstances, objectives, or needs and are not intended as recommen- dations of particular securities, financial instruments, or strategies to particular clients. The recipient of this report must make its own independent decisions regarding any securities or financial instruments mentioned herein. William Blair Contents Key Findings ......................................................................................................................3 Introduction .......................................................................................................................5 Database Market History ...................................................................................................7 Market Definitions
    [Show full text]
  • Vertica Advanced Analytics Platform
    Data Sheet Vertica Advanced Analytics Platform Vertica Advanced Analytics Platform The Vertica Advanced Analytics Platform is consciously designed with speed, scalability, simplicity, and openness at its core and architected to handle analytical workloads via a distributed compressed columnar architecture. Vertica Advanced Analytics Platform provides blazingly fast speed (queries run 10–50X faster), exabyte scale (store 10–30X more data per server), openness, and simplicity (use any business intelligence [BI]/ETL tools, Hadoop, etc.)—at a much lower cost than traditional data warehouse solutions and a better time to market than unproven open source solutions. Handling Today’s Massive What Are the Key Technology Quick View Requirements of a Big Data Data Volumes At the core of the Vertica Advanced Analytics In modern data infrastructures, data comes Analytics Platform? Platform is a column-oriented, relational database from everywhere: business systems like CRM So, just what should you look for in a data ana- built specifically to handle today’s analytic workloads. and ERP, IoT sensors, tweets and other social lytics solution to address today and tomorrow’s Unlike commercial and open-source row stores, media data, Web logs and data streams, gas data challenges? Consider the following: which were designed long ago to support small data, the Vertica Advanced Analytics Platform provides and electrical grids, and mobile networks to Analyze huge data volumes in a unified customers with: name a few. With all this data generated from so manner: You are likely looking to analyze many places, companies are turning to dispa- data at unlimited scale combined with the • Complete and advanced SQL-based analytical functions to provide powerful SQL analytics rate, lower-cost storage locations to store and need to store your data in the right place manage these volumes, adding complexity and at the right time.
    [Show full text]
  • Gartner Magic Quadrant for Data Management Solutions for Analytics
    16/09/2019 Gartner Reprint Licensed for Distribution Magic Quadrant for Data Management Solutions for Analytics Published 21 January 2019 - ID G00353775 - 74 min read By Analysts Adam Ronthal, Roxane Edjlali, Rick Greenwald Disruption slows as cloud and nonrelational technology take their place beside traditional approaches, the leaders extend their lead, and distributed data approaches solidify their place as a best practice for DMSA. We help data and analytics leaders evaluate DMSAs in an increasingly split market. Market Definition/Description Gartner defines a data management solution for analytics (DMSA) as a complete software system that supports and manages data in one or many file management systems, most commonly a database or multiple databases. These management systems include specific optimization strategies designed for supporting analytical processing — including, but not limited to, relational processing, nonrelational processing (such as graph processing), and machine learning or programming languages such as Python or R. Data is not necessarily stored in a relational structure, and can use multiple data models — relational, XML, JavaScript Object Notation (JSON), key-value, graph, geospatial and others. Our definition also states that: ■ A DMSA is a system for storing, accessing, processing and delivering data intended for one or more of the four primary use cases Gartner identifies that support analytics (see Note 1). ■ A DMSA is not a specific class or type of technology; it is a use case. ■ A DMSA may consist of many different technologies in combination. However, any offering or combination of offerings must, at its core, exhibit the capability of providing access to the data under management by open-access tools.
    [Show full text]
  • Presto: the Definitive Guide
    Presto The Definitive Guide SQL at Any Scale, on Any Storage, in Any Environment Compliments of Matt Fuller, Manfred Moser & Martin Traverso Virtual Book Tour Starburst presents Presto: The Definitive Guide Register Now! Starburst is hosting a virtual book tour series where attendees will: Meet the authors: • Meet the authors from the comfort of your own home Matt Fuller • Meet the Presto creators and participate in an Ask Me Anything (AMA) session with the book Manfred Moser authors + Presto creators • Meet special guest speakers from Martin your favorite podcasts who will Traverso moderate the AMA Register here to save your spot. Praise for Presto: The Definitive Guide This book provides a great introduction to Presto and teaches you everything you need to know to start your successful usage of Presto. —Dain Sundstrom and David Phillips, Creators of the Presto Projects and Founders of the Presto Software Foundation Presto plays a key role in enabling analysis at Pinterest. This book covers the Presto essentials, from use cases through how to run Presto at massive scale. —Ashish Kumar Singh, Tech Lead, Bigdata Query Processing Platform, Pinterest Presto has set the bar in both community-building and technical excellence for lightning- fast analytical processing on stored data in modern cloud architectures. This book is a must-read for companies looking to modernize their analytics stack. —Jay Kreps, Cocreator of Apache Kafka, Cofounder and CEO of Confluent Presto has saved us all—both in academia and industry—countless hours of work, allowing us all to avoid having to write code to manage distributed query processing.
    [Show full text]
  • Vertica in the Clouds
    Data Sheet Vertica Advanced Analytics Platform Vertica in the Clouds Vertica maximizes cloud economics for mission-critical big data analytical initiatives, delivering blazing performance and elastic scalability for just-in time deployments on major public clouds–AWS, Azure, and Google Cloud Platform. Packed with the most comprehensive set of features and functionality, Vertica manages massive amounts of data quickly and reliably to provide fast analytical insight. With Vertica, queries run much faster than other analytical databases and without breaking your budget. Product Highlight Vertica Eon Mode Beta Maximizes Cloud Quick View Economics Vertica performs queries 5 to 10 times Vertica is a blazingly fast, elastically scalable, faster than traditional databases, at a With Vertica 9, you can run Vertica in Eon advanced SQL analytics database based on a fraction of the cost and using a fraction of Mode (currently in Beta) on Amazon Web massively parallel processing architecture with the cloud compute and storage resources. Services to capitalize on cloud economics, in-database machine learning that supports the Unlike traditional RDBMS databases, while still enjoying the fast query processing entire predictive analytics process, allowing data which are not designed for analytics and of Vertica. Running Vertica in Eon mode Beta scientists and analysts to embrace the power today’s complex analytics workloads, the separates the computational processes of Big Data and accelerate business outcomes Vertica Analytics Platform is built from from the storage layer of your database. This with no limits and no compromises. the ground up for the cloud to elastically new architecture enables Vertica to scale and independently scale compute and elastically, adapting to varying dynamic • Choice of Cloud Deployment—Get storage resources to deliver breakneck workloads and linearly scaling throughput.
    [Show full text]
  • A Modern Optimizer for Real-Time Analytics in a Distributed Database
    The MemSQL Query Optimizer: A modern optimizer for real-time analytics in a distributed database Jack Chen, Samir Jindel, Robert Walzer, Rajkumar Sen, Nika Jimsheleishvilli, Michael Andrews MemSQL Inc. 534 4th Street San Francisco, CA, 94107, USA {jack, samir, rob, raj, nika, mandrews}@memsql.com ABSTRACT clusters with many nodes enables dramatic performance Real-time analytics on massive datasets has become a very improvements in execution times for analytical data workloads. common need in many enterprises. These applications require not Several other industrial database systems such as SAP HANA [3], only rapid data ingest, but also quick answers to analytical queries Teradata/Aster, Netezza [15], SQL Server PDW [14], Oracle operating on the latest data. MemSQL is a distributed SQL Exadata [20], Pivotal GreenPlum [17], Vertica [7], and database designed to exploit memory-optimized, scale-out VectorWise [21] have gained popularity and are designed to run architecture to enable real-time transactional and analytical analytical queries very fast. workloads which are fast, highly concurrent, and extremely scalable. Many analytical queries in MemSQL’s customer 1.1 Overview of MemSQL workloads are complex queries involving joins, aggregations, sub- MemSQL is a distributed memory-optimized SQL database which queries, etc. over star and snowflake schemas, often ad-hoc or excels at mixed real-time analytical and transactional processing produced interactively by business intelligence tools. These at scale. MemSQL can store data in two formats: an in-memory queries often require latencies of seconds or less, and therefore row-oriented store and a disk-backed column-oriented store. require the optimizer to not only produce a high quality Tables can be created in either rowstore or columnstore format, distributed execution plan, but also produce it fast enough so that and queries can involve any combination of both types of tables.
    [Show full text]
  • Vertica Overview Data Sheet
    Data Sheet Analytics and Big Data Vertica Overview The Vertica Analytics Platform delivers speed, scalability, and built-in machine learning that today’s most analytically intensive workloads demand, whether in the public clouds, on-premises, on Hadoop, or any hybrid combination. Key Benefits Key Features ■ Flexibility and scalability to easily ramp up when workloads increase. Step Up to the Fastest, Most Flexible At the core of the Vertica Advanced Analytics Platform is a column-oriented, relational data- Big Data Analytics Platform ■ Better load throughput and concurrency base built specifically to handle today’s analytic What should you look for in a data analyt- with querying. workloads. This powerful analytics platform ics warehouse to address today and tomor- ■ In-database machine learning addressing pro vides you with: row’s data challenges? Consider the following every step in the ML process—algorithms, Vertica capabilities: ■ Complete and advanced SQL-based R support, Python extensibility, and more. analytical functions to provide powerful ■ Unify your analytics, not the data: Vertica’s ■ Analyze data in place and in any format, SQL analytics. Unified Analytics Warehouse allows you including complex data types like Maps to combine data siloes that are growing ■ A clustered approach to storing big data, and Arrays, Structs in Parquet on S3, exponentially—without moving the data. offering superior query and analytic HDFS, open SQL-based analytics, and new performance. use cases. ■ Save on both storage and computational charges: While cloud-based data storage ■ Better compression, requiring less ■ Vertica in Eon Mode provisions dynamic is low cost, analyzing that data can lead to hardware and storage than comparable workloads as needed, separates storage prohibitively expensive compute charges.
    [Show full text]
  • Vertica Enterprise Edition
    Data Sheet Vertica Advanced Analytics Platform Vertica Enterprise Edition Micro Focus® Vertica is designed for use in data warehouses and other big data workloads where speed, scalability, simplicity, and openness are crucial to the success of analytics. With Vertica Enterprise Edition software, you get high-performance data analytics for all of your data to make better business decisions in real time. Packed with powerful features for harnessing the value from all your data, Vertica Enterprise Edition manages massive amounts of data quickly and reliably, giving you real-time insight for advanced, Big Data analytics. Product Highlights Extensible In-Database Quick View As part of the Vertica Analytics Platform, you Analytics Framework • Real-time big data analytics. Gain insights into can perform queries 50 to 1,000 times faster Achieve open access to in-database processing your data in real time. Consume, analyze, and make than with traditional databases, at a fraction of through a robust development framework for informed decisions at the speed of business. the cost and using a fraction of the hardware. procedural, user-defined analytics. In addition to using built-in SQL analytic and aggregate func- • Fast time to value. Monetize your data in a matter Unlike traditional RDBMS databases, which of minutes, not weeks or months. Prevent data blind are not designed for analytics and today’s com- tions, you can define your own custom functions spots from increasing your risk and uncertainty plex analytics workloads, the Vertica Analytics by using a software developers’ kit (SDK). The around regulatory compliance. Platform is built from the ground up to deliver SDK features secure sandboxing, and resulting • Agile deployment.
    [Show full text]
  • Vertica Advanced Analytics Platform
    Data Sheet Analytics and Big Data Vertica Advanced Analytics Platform The Vertica Advanced Analytics Platform is consciously designed with speed, scalability, simplic- ity, and openness at its core and architected to handle analytical workloads via a distributed com- pressed columnar architecture. Product Overview traffic optimization, enterprises that embrace Key Features Vertica Advanced Analytics Platform provides Big Data analytics platforms are changing the At the core of the Vertica Advanced Analytics blazingly fast speed (queries run 10–50X dynamics of industries from retail to health care Platform is a column-oriented, relational database faster), exabyte scale (store 10–30X more data to telecommunications to energy and beyond. built specifically to handle today’s analytic per server), openness, and simplicity (use any workloads. Unlike commercial and open-source business intelligence [BI]/ETL tools, Hadoop, row stores, which were designed long ago to Key Benefits support small data, the Vertica Advanced Analytics etc.)—at a much lower cost than traditional What Are the Key Technology Platform provides customers with: data warehouse solutions and a better time to market than unproven open source solutions. Requirements of a Big Data • Complete and advanced SQL-based analytical Analytics Platform? functions to provide powerful SQL analytics Handling Today’s Massive Data Volumes So, just what should you look for in a data ana- • A clustered approach to storing Big Data, In modern data infrastructures, data comes lytics solution
    [Show full text]
  • In-Database Machine Learning with Vertica Analytics Platform
    Business white paper Unlock machine learning for the new speed and scale of business In-database machine learning with HPE Vertica Analytics Platform Business white paper Table of contents 3 Machine learning: A competitive advantage 3 What is machine learning, and why is it important? 4 Purpose of this white paper 5 Types of machine learning 6 Barriers to applying machine learning at scale 6 HPE Vertica Analytics Platform delivers predictive analytics at speed and scale 7 Implementing machine learning with the HPE Vertica Analytics Platform 7 In-database machine learning 7 User-defined extensions (UDxs) 7 HPE Vertica Analytics Platform in-database machine learning functions 8 K-means clustering 8 Logistic regression 9 Linear regression 9 Naïve Bayes 10 Data preparation and normalization 10 Real-world implementation of Vertica’s in-database machine learning features 12 Use cases for machine learning across different industries 12 Summary Business white paper Page 3 Machine learning: A competitive advantage In today’s data-driven world, creating a competitive advantage depends on your ability to transform massive volumes of data into meaningful insights. Companies that use advanced analytics and machine learning are twice as likely to be top quartile financial performers, and three times more likely to execute effective decisions.1 However, nearly 50% of business leaders admit to not knowing how to get value from their data, and only 30%2 are able to act upon their information in real time. Leveraging Big Data to the full can help provide an in-depth understanding of customer behavior, enabling you to personalize the consumer experience, prevent churn, detect fraud, and increase your bottom line.
    [Show full text]