Analyticdb: Real-Time OLAP Database System at Alibaba Cloud

Total Page:16

File Type:pdf, Size:1020Kb

Analyticdb: Real-Time OLAP Database System at Alibaba Cloud AnalyticDB: Real-time OLAP Database System at Alibaba Cloud Chaoqun Zhan, Maomeng Su, Chuangxian Wei, Xiaoqiang Peng, Liang Lin, Sheng Wang, Zhe Chen, Feifei Li, Yue Pan, Fang Zheng, Chengliang Chai Alibaba Group flizhe.zcq,maomeng.smm,chuangxian.wcx,xiaoqiang.pxq,yibo.ll,sh.wang,chenzhe.cz, lifeifei,itlanger.pany,f.zheng,[email protected] ABSTRACT Alibaba Cloud from a wide range of business sectors, in- With data explosion in scale and variety, OLAP databas- cluding e-commerce, finance, logistics, public transit, mete- es play an increasingly important role in serving real-time orological analysis, entertainment, etc., as well as internal analysis with low latency (e.g., hundreds of milliseconds), business operations within Alibaba Group. especially when incoming queries are complex and ad hoc Recent works [35, 28, 29, 36, 25] have summarized the in nature. Moreover, these systems are expected to provide main challenges of designing an OLAP system as achieving high query concurrency and write throughput, and support low query latency, data freshness, flexibility, low cost, high queries over structured and complex data types (e.g., JSON, scalability, and availability. Compared to these works, ana- vector and texts). lytical workloads from our clients elevate AnalyticDB to an In this paper, we introduce AnalyticDB, a real-time O- even larger scale: 10PB+ data, hundred thousands of tables LAP database system developed at Alibaba. AnalyticDB and trillions of rows, which presents significant challenges to maintains all-column indexes in an asynchronous manner the design and implementation of AnalyticDB. with acceptable overhead, which provides low latency for The first challenge is that today's users face more com- complex ad-hoc queries. Its storage engine extends hybrid plicated analytics scenarios than before, but still have high row-column layout for fast retrieval of both structured data expectation for low query latency. Users often do not tol- and data of complex types. To handle large-scale data with erate queries that spend a long time. However, as users of high query concurrency and write throughput, AnalyticDB AnalyticDB come from various domains, their analytical de- decouples read and write access paths. To further reduce mands differ significantly and may change frequently, which query latency, novel storage-aware SQL optimizer and exe- make their diverse and complex queries hard to optimize. cution engine are developed to fully utilize the advantages The queries range from full scan, point lookup to multi- of the underlying storage and indexes. AnalyticDB has been table join, and involve conditions on many combinations of successfully deployed on Alibaba Cloud to serve numerous columns. Although indexing is a straightforward way to im- customers (both large and small). It is capable of holding prove query performance, building indexes on pre-specified 100 trillion rows of records, i.e., 10PB+ in size. At the same columns is often no longer effective. time, it is able to serve 10m+ writes and 100k+ queries per The second challenge is that emerging complex analysis second, while completing complex queries within hundreds tends to involve different types of queries and data at the of milliseconds. same time, which requires the system to have a friendly and unified data layout at the storage layer. Traditional O- PVLDB Reference Format: LAP queries and point-lookup queries require different lay- Chaoqun Zhan, Maomeng Su, Chuangxian Wei, Xiaoqiang Peng, outs, i.e., column-stores and row-stores respectively [34, 12]. Liang Lin, Sheng Wang, Zhe Chen, Feifei Li, Yue Pan, Fang Furthermore, more than half of our users' data has a com- Zheng, Chengliang Chai. AnalyticDB: Real-time OLAP Database plex data type, such as text, JSON string, vector, and other System at Alibaba Cloud. PVLDB, 12(12): 2059-2070, 2019. DOI: https://doi.org/10.14778/3352063.3352124 multi-media resources. A practical storage layout should be able to provide fast retrieval for many data types, in order to efficiently support queries involving both structured data 1. INTRODUCTION and data of complex types. AnalyticDB is an OLAP database system designed for The third challenge is that while the system is processing high-concurrency, low-latency, and real-time analytical queries real-time queries with low latency, it also needs to handle on PB scale, and has been running on 2000+ physical ma- tens of millions of online write requests per second. Tradi- chines on Alibaba Cloud [1]. It serves external clients on tional designs [6, 8, 10, 29, 5] process reads and writes in the same process path, so that reads could see newly writ- This work is licensed under the Creative Commons Attribution- ten data once it is committed. However, such designs are no NonCommercial-NoDerivatives 4.0 International License. To view a copy longer well-suited for our case, as consuming a large portion of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. For of resources to guarantee query performance will hurt write any use beyond those covered by this license, obtain permission by emailing performance, and vice versa. Careful designs to balance a- [email protected]. Copyright is held by the owner/author(s). Publication rights mong query latency, write throughput and data visibility licensed to the VLDB Endowment. Proceedings of the VLDB Endowment, Vol. 12, No. 12 should be taken into consideration. ISSN 2150-8097. DOI: https://doi.org/10.14778/3352063.3352124 2059 To address above challenges, we propose and implemen- fit for analytical queries as these queries only require a sub- t several novel designs in AnalyticDB and have made the set of columns, where row-store significantly amplifies I/Os. following contributions: Moreover, OLTP databases usually actively update indexes Efficient Index Management. AnalyticDB embeds an in the write path, which is so expensive that affects both efficient and effective index engine, which leverages two key write throughput and query latency. approaches for achieving low latency with acceptable over- OLAP databases. To improve the efficiency of analyt- head. First, indexes are built on all columns in each table for ical queries, many OLAP databases like Vertica [29], Tera- significant performance gain on ad-hoc complex queries. We data DB [10] and Greenplum [5] have been developed. Ver- further propose a runtime filter-ratio-based index path selec- tica [29] uses projection to improve query performance. In- tion mechanism to avoid performance slow-down from index stead of building conventional indexes on columns, it only abuse. Second, since it is prohibitive to update large indexes keeps information about Min/Max values, leading to high in the critical path, indexes are asynchronously built during latency from less effective pruning. Teradata DB [10] and off-peak periods. We also maintain a lightweight sorted- Greenplum [5] adopt column-store and allow users to specify index to minimize the impact of asynchronous index build- indexed columns. However, they have two main limitations: ing on queries involving incremental (i.e., newly-written af- first, they modify column indexes in the write path, which ter index building has started) data. is prohibitive for all-column indexes; second, column-store Storage layout for structured data and data of requires many random I/Os for point-lookup queries. complex types. We design the underlying storage to sup- Big Data systems. With the emergence of Map-Reduce port hybrid row-column layout. In particular, we utilize fast model [18], batch processing engines, such as Hive [35] and sequential disk IOs so that its overhead is acceptable under Spark-SQL [37, 13], become popular to process large-scale either OLAP-style or point-lookup workloads. We further data on many machines. However, the executed queries are incorporate complex data types in the storage (including in- considered \offline”. The whole execution could last for dexes) to provide the capability of searching resources (i.e., minutes or hours, and thus is not well-suited for real-time JSON, vector, text) together with structured data. queries. Impala [28] converts “offline" queries to interactive Decoupling Read/write. In order to support both queries using pipeline processing model and column-store, high-throughput writes and low-latency queries, our system reducing latency of common queries to seconds. However, follows an architecture that decouples reads and writes, i.e., Impala does not have column indexes (with Min/Max statis- they are served by write nodes and read nodes respectively. tics only), so that it can not handle complex queries well. These two types of nodes are isolated from each other and Real-time OLAP systems. Recent real-time OLAP hence can scale independently. In particular, write nodes systems include Druid [36] and Pinot [25], both adopting persist write requests to a reliable distributed storage called column store. They all build bitmap-based inverted indexes, Pangu [7]. To ensure data freshness when serving queries, a i.e., Pinot on all columns and Druid on Dimension Column- version verification mechanism is applied on read nodes, so s. A query on Druid may suffer high latency, if it involves that previous writes processed on write nodes are visible. columns not in Dimension Columns. All their indexes are Enhanced optimizer and execution engine. To fur- updated in the write path, which affects the write perfor- ther improve query latency and concurrency, we enhance the mance. Besides, they lack support for some important query optimizer and execution engine in AnalyticDB to fully uti- types such as JOIN, UPDATE, and DELETE, and are inefficient lize the advantages of our storage and indexes. Specifically, for point-lookup queries as they are column-oriented. we propose a storage-aware SQL optimization mechanism Cloud Analytical Services. A number of cloud ana- that generates optimal execution plans according to the s- lytical services such as Amazon Redshift [21] and Google torage characteristics, and an efficient real-time sampling BigQuery [33] have recently emerged.
Recommended publications
  • A Modeling Language for Multi-Tenant Data Architecture Evolution in Cloud Applications
    School of Computing and Communications A Modeling Language for Multi-tenant Data Architecture Evolution in Cloud Applications Assylbek Sagitzhanuly Jumagaliyev M.Sc., International Information Technologies University, 2014 B.Sc., Suleyman Demirel University, 2011 Thesis submitted for the degree of Doctor of Philosophy 29 April 2019 Abstract Multi-tenancy enables efficient resource utilization by sharing application resources across multiple customers (i.e., tenants). Hence, applications built using this pat- tern can be o↵ered at a lower price and reduce maintenance e↵ort as less application instances and supporting cloud resources must be maintained. These properties en- courage cloud application providers to adopt multi-tenancy to their existing appli- cations, yet introducing this pattern requires significant changes in the application structure to address multi-tenancy requirements such as isolation of tenants, exten- sibility of the application, and scalability of the solution. In cloud applications, the data layer is often the prime candidate for multi-tenancy, and it usually comprises acombinationofdi↵erentcloudstoragesolutionssuchasblobstorage,relational and non-relational databases. These storage types are conceptually and tangibly di- vergent, each requiring its own partitioning schemes to meet multi-tenancy require- ments. Currently, multi-tenant data architectures are implemented using manual coding methods, at times following guidance and patterns o↵ered by cloud prov- iders. However, such manual implementation approach tends to be time consum- ing and error prone. Several modeling methods based on Model-Driven Engineer- ing (MDE) and Software Product Line Engineering (SPLE) have been proposed to capture multi-tenancy in cloud applications. These methods mainly generate cloud deployment configurations from an application model, though they do not automate implementation or evolution of applications.
    [Show full text]
  • First Half 2021 Letter to Co-Investors in Business Owner
    First Half 2021 Letter to Co-Investors in Business Owner Dear Co-Investors, The NAV of the Business Owner Fund was €994.14 as of 30 June 2021. The NAV increased 14.0% since the start of the year and 901.9% since inception on 30 September 2008. The compound annual growth rate since inception is 19.8%. Part 1: Humility It continually takes my breath away how differently things can turn out compared to what might reasonably be expected at the time. It is what makes investing endlessly fascinating but also incredibly hard. I was reminded of this recently by Credit Acceptance’s second quarter results. Collections for its 2019 cohort of consumer loans – the last one before the Covid-19 crisis – are not only tracking ahead of its initial expectations but are showing a large, positive variance. If I teleport myself back to March 2020 when the global economy was at an almost complete standstill, the only question on my mind was how bad unemployment could get. Did the Great Financial Crisis constitute a worst- case scenario? Or the Great Depression? Or neither? The idea that the 2019 cohort would not only do better than expected but by a large margin would have been laughable. With hindsight, it is easy to rationalize it, now that we know about stimulus cheques and the impact of the semiconductor shortage on used car prices. However, neither of these developments were known nor knowable at the time. It is a reminder, as if one were needed, of the importance of humility. Part 2: Increasing our Investment in China The most consequential capital allocation decision in the first half-year was to increase our investment China by purchasing a new position in Alibaba and increasing our holding in Prosus, the major shareholder of Tencent, China’s largest internet company.
    [Show full text]
  • Data Center Industry Overview Colby Synesael.Pdf
    INDUSTRY OVERVIEW MARCH 2019 Colby Synesael Senior Equity Research Analyst Cowen and Company 646 562 1355 [email protected] DATA CENTERS ARE PART OF COMMUNICATIONS INFRASTRUCTURE What Is Communications Infrastructure? • What Is Communications Infrastructure? – The idea that macro towers, data centers, optical fiber, and small cells/DAS represent one asset class whose singular purpose is the enablement of communications, and in so doing have developed business models very similar to one another, and in many cases more similar to the real estate industry than the telecom services industry. • Key attributes – Unit pricing increases over time (typically with an escalator) – Long-term contracts – High contribution margin • Think like a real estate company – Dark fiber, colocation, towers, land rights all qualify as REIT assets by the IRS – Return-oriented decision making – Value of AFFO as a metric • Scale matters – Supply chain mgmt. (i.e. cost to build) – Geographic diversity – Relatively low cost of capital Source: Cowen and Company “The Edge” Is The Next Frontier • Creating new opportunities • Fiber routes • Small cells • Data centers (more locations/smaller footprint per location) • Where the end-users of digital services reside • Compute/storage needs to occur closer to them • Tier II/III markets • Where wireless infrastructure meets wireline infrastructure Source: Cowen and Company SECTOR PERFORMANCE Strong Sector Performance Communications Infrastructure Index: 5-Year Performance (Indexed to 100 on 01/31/2014) 280 260 240 139% 220 200 180 160 140 120 100 80 Comm. Infra. Index Stocks: AMT, COR, CCI, CONE, DLR, EQIX, INXN, UNIT, QTS, SBAC, SWCH, ZAYO Data Center Index Stocks: COR, CONE, DLR, EQIX, INXN, QTS, SWCH Source: Thomson Reuters Strong Sector Performance Communications Infrastructure Index vs.
    [Show full text]
  • Launch Innovative Products Faster with Red Hat and Alibaba Cloud
    LAUNCH INNOVATIVE PRODUCTS FASTER WITH RED HAT AND ALIBABA CLOUD PARTNER BRIEF FAST INNOVATION AND AGILE DEPLOYMENT ARE CRITICAL FOR SUCCESS Worldwide, organizations face increasing competition as digital technologies continue to disrupt industries. To remain successful, they must differentiate themselves with compelling products while also controlling costs. However, if it takes too long to develop and launch new products, the business is likely to miss market opportunities and become less competitive. By 2020, In addition, many companies are adopting multicloud strategies to reduce risk. Yet choosing the 83% right set of cloud providers and services from the large number available — and then connecting of enterprise workloads will them into existing on-premise and cloud-based infrastructure — can be overwhelming. run on cloud infrastructure, Red Hat and Alibaba Cloud deliver the modern cloud foundation and innovative application develop- with 41% running on public ment technologies you need to quickly create high-value products, monitor and manage expenses, 1 cloud infrastructure. and mitigate technological risk. Red Hat and Alibaba Cloud BUILD A FLEXIBLE APPLICATION ENVIRONMENT provide a modern cloud foun- Red Hat and Alibaba Cloud combine production-grade open source software, global cloud infra- dation and innovative applica- structure, and advanced machine learning and big data capabilities into a high-performance, adapt- tion development technologies able platform for application development and deployment. A leading public cloud service provider, to help you build and launch Alibaba Cloud operates 18 datacenters globally. These datacenters are connected by fast networks compelling products quickly to provide a unified experience — no matter where you are or which datacenter you connect to.
    [Show full text]
  • Deploying Fortiweb-VM on Alibaba Cloud
    FORTINET DOCUMENT LIBRARY https://docs.fortinet.com FORTINET VIDEO GUIDE https://video.fortinet.com FORTINET BLOG https://blog.fortinet.com CUSTOMER SERVICE & SUPPORT https://support.fortinet.com FORTINET TRAINING & CERTIFICATION PROGRAM https://www.fortinet.com/support-and-training/training.html NSE INSTITUTE https://training.fortinet.com FORTIGUARD CENTER https://fortiguard.com/ END USER LICENSE AGREEMENT https://www.fortinet.com/doc/legal/EULA.pdf FEEDBACK Email: [email protected] Administration Guide TABLE OF CONTENTS Creating a virtual private cloud 4 Obtaining the deployment image 7 Uploading image file to Object Storage Service 9 Creating custom image 14 Creating FortiWeb-VM instance 16 Connecting to FortiWeb 19 Changing the default administrative ports 19 Changing the password 20 Administration Guide 3 Creating a virtual private cloud Creating a virtual private cloud 1. Assuming this is a new environment, the first step is to create the virtual private cloud (VPC). In the Alibaba Cloud web console, select Virtual Private Cloud. 2. Click Create VPC. 3. Configure the following settings. VPC Name Enter a name for the VPC. IPv4 CIDR Block Specify the IPv4 CIDR Block for this VPC. Resource Group Select the resource group for the VPC. VSwitch Name Enter a name for the VSwitch. Zone Select the zone of the VSwitch. In later steps, you should deploy FortiWeb-VM in the same zone. IPv4 CIDR Block Specify the IPv4 CIDR Block for this VSwitch. It should be a subnet of the VPC. Administration Guide 4 Creating a virtual private cloud Administration Guide 5 Creating a virtual private cloud Administration Guide 6 Obtaining the deployment image Obtaining the deployment image 1.
    [Show full text]
  • Cloud Computing
    JYOTI NIVAS COLLEGE PG CENTER DEPARTMENT OF MCA III YEAR TECH-ON-TAP E-JOURNAL ON CLOUD COMPUTING Issue 1, August 2020 Sl.no Title Page.no 1 Alibaba Cloud 1 2 Workday and Softchoice 2 3 Citrix Cloud Services and Nippon Data 4 4 Softlayer and Bluelock 6 5 IBM Cloud 7 6 Oracle Cloud 9 7 BackBlaze and Jira Cloud 10 8 SnowFlake 11 9 AWS Kiinesis and Verizon Cloud 12 10 Amazon Elastic Compute Cloud (EC2) 13 11 Google Cloud and Navtech Platform 14 12 Tresorit 16 13 Massive Grid and Egnyte 17 14 Microsoft Azure and Cloud-myNav 19 15 Box and OpenStack 20 16 Kamatera and SAP-S/4 Hana Cloud 22 17 Cloud Ways and Adobe Service 24 18 Cloud Sigma and Prolifics 25 19 MessageOPS - Cloud Service Provider 27 20 pCloud Service Provider 28 21 CtrlS and Zendesk 29 22 Century link and Service Now 31 23 Milesweb 33 24 Zoom Cloud 35 25 Collibra 36 26 GoDaddy and Amazon Web Services 37 27 Ubiquity Hosting and Mage Cloud 39 CLOUD SERVICE PROVIDERS Kushmetha k. A(18MCA08) Brunda S(18MCA05) Cloud Service Providers are the companies that offer network services, infrastructure or the business applications in the cloud. These cloud services are hosted in a data center using network connectivity that can be accessed by companies or individuals. Few different forms of services that can be used in the cloud by the CSPs include Software as a Service(SaaS), Platform as a Service(PaaS) and Infrastructure as a Service(IaaS). Alibaba Cloud: It is a chinese cloud computing company founded in 2009 by Jack Ma and Simon Hu.
    [Show full text]
  • AWS to Alibaba Cloud Web Hosting Migration Guide
    Alibaba Cloud Migration Guide AWS to Alibaba Cloud Web Hosting Migration Guide Issue: 20190424 Migration Guide AWS to Alibaba Cloud Web Hosting Migration Guide / Legal disclaimer Legal disclaimer Alibaba Cloud reminds you to carefully read and fully understand the terms and conditions of this legal disclaimer before you read or use this document. If you have read or used this document, it shall be deemed as your total acceptance of this legal disclaimer. 1. You shall download and obtain this document from the Alibaba Cloud website or other Alibaba Cloud-authorized channels, and use this document for your own legal business activities only. The content of this document is considered confidential information of Alibaba Cloud. You shall strictly abide by the confidentiality obligations. No part of this document shall be disclosed or provided to any third party for use without the prior written consent of Alibaba Cloud. 2. No part of this document shall be excerpted, translated, reproduced, transmitted, or disseminated by any organization, company, or individual in any form or by any means without the prior written consent of Alibaba Cloud. 3. The content of this document may be changed due to product version upgrades , adjustments, or other reasons. Alibaba Cloud reserves the right to modify the content of this document without notice and the updated versions of this document will be occasionally released through Alibaba Cloud-authorized channels. You shall pay attention to the version changes of this document as they occur and download and obtain the most up-to-date version of this document from Alibaba Cloud-authorized channels.
    [Show full text]
  • Alibaba Cloud
    AAlliibbaabbaa CClloouudd Alibaba Cloud DDaattaa O Onlninlein Mei gMraitgiornation MMigigrraatte ddaatat afr ofmro Gmoo Ggloeogle Cloud Storage to OSS Cloud Storage to OSS Document Version: 20210729 Document Version: 20210729 Migrat e dat a from Google Cloud St Dat a Online Migrat ion orage t o OSS·Legal disclaimer Legal disclaimer Alibaba Cloud reminds you t o carefully read and fully underst and t he t erms and condit ions of t his legal disclaimer before you read or use t his document . If you have read or used t his document , it shall be deemed as your t ot al accept ance of t his legal disclaimer. 1. You shall download and obt ain t his document from t he Alibaba Cloud websit e or ot her Alibaba Cloud- aut horized channels, and use t his document for your own legal business act ivit ies only. The cont ent of t his document is considered confident ial informat ion of Alibaba Cloud. You shall st rict ly abide by t he confident ialit y obligat ions. No part of t his document shall be disclosed or provided t o any t hird part y for use wit hout t he prior writ t en consent of Alibaba Cloud. 2. No part of t his document shall be excerpt ed, t ranslat ed, reproduced, t ransmit t ed, or disseminat ed by any organizat ion, company or individual in any form or by any means wit hout t he prior writ t en consent of Alibaba Cloud. 3. The cont ent of t his document may be changed because of product version upgrade, adjust ment , or ot her reasons.
    [Show full text]
  • Alibaba Cloud for Intelligent Business
    Alibaba Cloud for Intelligent Business Yeming Wang General Manager EMEA, Alibaba Cloud International Exponential Networking Web Designer Online Shopping Guide Web Developer ¸ ¸ Aliwangwang Photographer Online Video Freelancing model Seller Buyer Age of Intelligent Business Age of Intelligent Business: The Big Data Bang+Exponential Networking Age of Information: PC in Company Age of Electricity: Ford Production Line in Factory Dual Cores of Intelligent Business All Business All Systems Digitized Online On Cloud Intelligent Dual-core Innovation in Intelligent Business Cloud-based Internet-enabled Datamation to The Infrastructure Core Business Intelligentization Starbucks The ground-breaking digital collaboration with Alibaba unlocks new levels of engagement: virtual store, Star Kitchens, Starbuck Delivers, and technology innovation. Unilever Partnership with Alibaba’s e-commerce ecosystem includes online retail marketplaces Tmall and Taobao, Cainiao logistics and online payment Ant Financial, cloud computing, and marketing technology platform, Alimama. Macau City Brain Transform Macau into a “smart city” via cloud-computing to foster development of tourism, transportation, healthcare, city governance and talent-nurturing. Rentokil Initial Business innovation on Cloud: developing AI dispatch engine that automatically schedules in real time, without human intervention, by leveraging AI to improve service quality and increase business efficiency. Siemens Creating a strong partner ecosystem with open platform as a service, by leveraging Siemens' MindSphere platform to facilitate manufacturing upgrade and anabling closed-loop innovation with digital twins. When West Meet East Go-China/Asia Multi-cloud Digital Transformation (Business Partner) (Best Choice) (AI Ready) The No.1 Public Cloud in China Recognition Market Share Coverage • 8 Regions • Alibaba Cloud is the No.1 in product offerings and • In 2018H1, Alibaba Cloud took 43.0% of the • 30 Availability Zones market performance.
    [Show full text]
  • HGC Collaborates with Megaport to Deliver Multi-Cloud Connect Service
    [For immediate release] HGC collaborates with Megaport to deliver Multi-cloud Connect Service Megaport Software Defined Network enables corporate customers to connect to leading global Cloud Service Providers via HGC’s dedicated network Hong Kong, 31 January 2019 – HGC Global Communications Limited (HGC), a fully-fledged fixed- line operator and ICT service provider with extensive local and international network coverage and infrastructure, today (31 Jan) announced collaboration with Megaport, a global leading Network as a Service (NaaS) provider servicing more than 1,200 customers in over 380 enabled data centres worldwide, to launch Multi-cloud Connect Service (MCCS), a Megaport Connected connectivity solution. This new connectivity solution enables seamless, flexible, on-demand and secure connections to a multi-cloud platform in over 380 enabled data centres, allowing corporate customers to connect to leading global cloud service providers (CSPs). Connect to global leading CSPs through a single HGC interconnection point The newly-launched Multi-cloud Connect Service (MCCS) provides a direct connection to Megaport’s ecosystem of more than 300 cloud service providers including top global CSPs such as Alibaba Cloud AWS, Azure, Google Cloud Platform, IBM Cloud, Oracle Cloud, Salesforce, and SAP via HGC’s network. Existing HGC MetroNET customers can activate MCCS service and connect to the MCCS platform by utilising the current local connectivity with a VLAN. From now on, through HGC’s collaboration with Megaport, HGC customers can connect to multiple cloud regions through a single HGC interconnection point without the need of having their own hardware, thus saving cost. HGC MCCS service provides flexibility in configuring bandwidth for sporadic burstable traffic to optimise the performance of mission critical cloud-based applications, taking advantage of Megaport’s SDN technology.
    [Show full text]
  • Cloud Computing Industry Primer Market Research Research and Education
    August 17, 2020 UW Finance Association Cloud Computing Industry Primer Market Research Research and Education Cloud Computing Industry Primer All amounts in $US unless otherwise stated. Author(s): What is Cloud Computing? Rohit Dabke, Kevin Hsieh and Ethan McTavish According to the National Institution of Standards and Research Analysts Technology (NIST), Cloud Computing is defined as a model for Editor(s): enabling network access to a shared pool of configurable John Derraugh and Brent Huang computing resources that can be rapidly provisioned. In more Co-VPs of Research and Education layman terms, Cloud Computing is the delivery of different computing resources on demand via the Internet. These computing resources include network, servers, storage, applications, and other services which users can ‘rent’ from the service provider at a cost, without having to worry about maintaining the infrastructure. As long as an electronic device has access to the web, it has access to the service provided. In the long run, people and businesses can save on cost and increase productivity, efficiency, and security. • Exhibit 1: See below the advantages and features of cloud computing. In general, cloud computing can be broken down into three major categories of service models: Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS). Infrastructure as a Service (IaaS) IaaS involves the cloud service provider supplying on-demand infrastructure components such as networking, servers, and storage. The customer will be responsible for establishing its own platform and applications but can rely on the provider to maintain the background infrastructure. August 17, 2020 1 UW Finance Association Cloud Computing Industry Primer Major IaaS providers include Microsoft (Microsoft Azure), Amazon (Amazon Web Service), IBM (IBM Cloud), Alibaba Cloud, and Alphabet (Google Cloud).
    [Show full text]
  • New Trends of Technology Enabling To-B Services Whitepaper
    www.pwc.com New Trends of Technology Enabling To-B Services Whitepaper July 2018 Table of Content Preface .......................................................................................................... 2 The focus of technological innovations is changing from C-side to B-side, the new T2B2C market is developing.. ................................................................. 3 3 Trends of T2B2C • T2B2C trend of “Popularisation”: Emerying technologies are becoming economically affordable and can be offered to an increasing number of SMEs. .............................................................................................14 • T2B2C trend of “Deepening”: Technologies service are penetrating more and more industries, and refine the product and service experiences of those industries. .............................................................................................18 • T2B2C trend of “Ecologization”: The technology companies are constructing the new ecology. In this ecological system, the leading technology companies are building a cooperation platform with ISV to offer product and service in more dimension. .............................................................................................27 From “Made in China” to “Smart manufacturing in China” - the future of T2B2C innovation in Chinese technology enterprises .................................. 33 1 PwC Preface With the continuous development of At present, the platform ecology brought information technology, the space for by the development
    [Show full text]