Nosql Data Stores the Reference Big Data Stack

Total Page:16

File Type:pdf, Size:1020Kb

Nosql Data Stores the Reference Big Data Stack Macroarea di Ingegneria Dipar/mento di Ingegneria Civile e Ingegneria Informa/ca NoSQL Data Stores Corso di Sistemi e Architetture per Big Data A.A. 2018/19 Valeria Cardellini Laurea Magistrale in Ingegneria Informatica The reference Big Data stack High-level Interfaces / Integration Support Data Processing Data Storage Resource Management Valeria Cardellini - SABD 2018/19 1 Traditional RDBMSs • Relational DBMSs (RDBMSs) – Traditional technology for storing structured data in web and business applications • SQL is good – Rich language and toolset – Easy to use and integrate – Many vendors • RDBMSs promise ACID guarantees Valeria Cardellini - SABD 2018/19 2 ACID properties • Atomicity – All included statements in a transaction are either executed or the whole transaction is aborted without affecting the database (“all or nothing” principle) • Consistency – A database is in a consistent state before and after a transaction • Isolation – Transactions cannot see uncommitted changes in the database (i.e., the results of incomplete transactions are not visible to other transactions) • Durability – Changes are written to a disk before a database commits a transaction so that committed data cannot be lost through a power failure Valeria Cardellini - SABD 2018/19 3 RDBMS constraints • Domain constraints – Restricts the domain of each attribute or the set of possible values for the attribute • Entity integrity constraint – No primary key value can be null • Referential integrity constraint – To maintain consistency among the tuples in two relations: every value of one attribute of a relation should exist as a value of another attribute in another relation • Foreign key – To cross-reference between multiple relations: it is a key in a relation that matches the primary key of another relation Valeria Cardellini - SABD 2018/19 4 Pros and cons of RDBMS Pros Cons • Well-defined consistency • Performance as major model constraint, scaling is difficult • ACID guarantees • Limited support for complex data structures • Relational integrity maintained through entity • Complete knowledge of DB structure required to create and referential integrity ad hoc queries constraints • Commercial DBMSs are • Well suited for OLTP apps expensive OLTP: OnLine Transaction • Some DBMSs have limits on Processing fields size • Sound theoretical foundation • Data integration from • Stable and standardized multiple RDBMSs can be DBMSs available cumbersome • Well understood Valeria Cardellini - SABD 2018/19 5 RDBMS challenges • Web-based applications caused spikes – Internet-scale data size – High read-write rates – Frequent schema changes • Let’s scale RDBMSs – RDBMS were not designed to be distributed • How to scale RDBMSs? – Replication – Sharding Valeria Cardellini - SABD 2018/19 6 Replication • Primary backup with master/worker architecture • Replication improves read scalability • Write operations? Valeria Cardellini - SABD 2018/19 7 Sharding • Horizontal partitioning of data across many separate servers • Scales read and write operations • Cannot execute transactions across shards (partitions) • Consistent hashing is one form of sharding - Hash both data and nodes using the same hash function in the same ID space Valeria Cardellini - SABD 2018/19 8 Scaling RDBMSs is expensive and inefficient Source: Couchbase technical report Valeria Cardellini - SABD 2018/19 9 NoSQL data stores • NoSQL = Not Only SQL – SQL-style querying is not the crucial objective Valeria Cardellini - SABD 2018/19 10 NoSQL data stores: main features • Support flexible schema – No requirement for fixed rows in a table schema – Well suited for Agile development process • Scale horizontally – Partitioning of data and processing over multiple nodes • Provide high availability – By replicating data in multiple nodes, often geo-distributed • Mainly utilize shared-nothing architecture – With exception of graph-based databases • Avoid unneeded complexity – E.g., elimination of join operations • Multiprocessor support • Support weaker consistency models – BASE rather than ACID: compromising reliability for better performance Valeria Cardellini - SABD 2018/19 11 ACID vs BASE • Two design philosophies at opposite ends of the consistency-availability spectrum - Keep in mind CAP theorem Pick two of Consistency, Availability and Partition tolerance! • ACID: traditional approach for RDBMSs – Pessimistic approach: prevent conflicts from occurring • Usually implemented with write locks managed by the system • Leads to performance degradation and deadlocks (hard to prevent and debug) – Does not scale well when handling petabytes of data (remember of latency!) Valeria Cardellini - SABD 2018/19 12 ACID vs BASE (2) • BASE: Basically Available, Soft state, Eventual consistency – Basically Available: the system is available most of the time and there could exist a subsystem temporarily unavailable – Soft state: data is not durable in the sense that its persistence is in the hand of the user that must take care of refresh it – Eventually consistent: the system eventually converge to a consistent state • Optimistic approach - Lets conflicts occur, but detects them and takes action to sort them out - How? • Conditional updates: test the value just before updating • Save both updates: record that they are in conflict and then merge them Valeria Cardellini - SABD 2018/19 13 NoSQL and consistency • Biggest change from RDBMS – RDBMS: strong consistency – Traditional RDBMS are CA systems (or CP systems, depending on the configuration) • Most NoSQL systems are eventual consistent – i.e., AP systems • But some NoSQL systems provide strong consistency or tunable consistency Valeria Cardellini - SABD 2018/19 14 NoSQL cost and performance Source: Couchbase technical report Valeria Cardellini - SABD 2018/19 15 Pros and cons of NoSQL Pros Cons • Easy to scale-out • No ACID guarantees, less • Higher performance for suitable for OLTP apps massive data scale • No fixed schema, no common data storage model • Allows sharing of data across multiple servers • Lack of standardization (e.g., querying is unique for • Most solutions are either each NoSQL data store) open-source or cheaper • Limited support for • HA and fault tolerance aggregation (sum, avg, provided by data replication count, group by) • Supports complex data • Poor performance for structures and objetcs complex joins • No fixed schema, supportrs • No well defined approach for DB design (different data unstructured data models) • Very fast retrieval of data, • Lack of model can lead to Valeria Cardellini- SABD2018/19 Valeria suitable for real-time apps solution lock-in 16 NoSQL data models • A number of largely diverse data stores not based on the relational data model Valeria Cardellini - SABD 2018/19 17 NoSQL data models • A data model is a set of constructs for representing the information – Relational model: tables, columns and rows • Storage model: how the DBMS stores and manipulates the data internally • A data model is usually independent of the storage model • Data models for NoSQL systems: – Aggregate-oriented models: key-value, document, and column-family – Graph-based models Valeria Cardellini - SABD 2018/19 18 Aggregates • Data as units having a complex structure – More structure than just a set of tuples – E.g., complex record with simple fields, arrays, records nested inside • Aggregate pattern in Domain-Driven Design – A collection of related objects that we treat as a unit – A unit for data manipulation and management of consistency • Advantages of aggregates – Easier for application programmers to work with – Easier for database systems to handle operating on a cluster Valeria Cardellini - SABD 2018/19 See http://thght.works/1XqYKB0 19 Transactions? • Relational databases do have ACID transactions! • Aggregate-oriented databases: – Support atomic transactions, but only within a single aggregate – Don’t have ACID transactions that span multiple aggregates • Update over multiple aggregates: possible inconsistent reads – Part of the consideration for deciding how to aggregate data • Graph databases tend to support ACID transactions Valeria Cardellini - SABD 2018/19 20 Key-value data model • Simple data model: data is represented as a schemaless collection of key-value pairs – Associative array (map or dictionary) as fundamental data model • Strongly aggregate-oriented – Lots of aggregates – Each aggregate has a key • Data model: – Set of <key, value> pairs – Value: aggregate instance • The aggregate is opaque to the data store – Just a big blob of mostly meaningless bit • Access to aggregate: – Lookup based on its key • Richer data models can be implemented on top Valeria Cardellini - SABD 2018/19 21 Key-value data model: example Valeria Cardellini - SABD 2018/19 22 Types of key-value stores • Some data stores support ordering of keys • Some maintain data in memory (RAM), while others employ HDDs or SSDs • Wide range of consistency models Valeria Cardellini - SABD 2018/19 23 Consistency of key-value stores • Consistency models range from eventual consistency to serializability – Serializability: guarantee about transactions, or groups of one or more operations over one or more objects • It guarantees that the execution of a set of transactions (with read and write operations) over multiple items is equivalent to some serial execution (total ordering) of the transactions • Gold standard in database community • Serializability is the traditional I (isolation) in ACID – Examples: • AP: Dynamo, Riak KV, Voldemort • CP: Redis, Berkeley DB, Scalaris Valeria
Recommended publications
  • Google-Cloud Documentation Release 0.20.0
    google-cloud Documentation Release 0.20.0 Google Cloud Platform October 06, 2016 google-cloud 1 Base Client 1 2 Credentials Helpers 5 3 Base Connections 9 4 Exceptions 13 5 Environment Variables 17 6 Configuration 19 6.1 Overview................................................. 19 6.2 Authentication.............................................. 19 7 Authentication 21 7.1 Overview................................................. 21 7.2 Client-Provided Authentication..................................... 21 7.3 Explicit Credentials........................................... 22 7.4 Troubleshooting............................................. 23 7.5 Advanced Customization......................................... 24 8 Long-Running Operations 27 9 Datastore Client 29 9.1 Connection................................................ 32 10 Entities 37 11 Keys 39 12 Queries 43 13 Transactions 47 14 Batches 51 15 Helpers 55 16 Storage Client 57 16.1 Connection................................................ 59 i 17 Blobs / Objects 61 18 Buckets 69 19 ACL 77 20 Batches 81 21 Using the API 83 21.1 Authentication / Configuration...................................... 83 21.2 Manage topics for a project....................................... 83 21.3 Publish messages to a topic....................................... 84 21.4 Manage subscriptions to topics..................................... 84 21.5 Pull messages from a subscription.................................... 86 22 Pub/Sub Client 87 22.1 Connection................................................ 88
    [Show full text]
  • Google Certified Professional - Cloud Architect.Exam.57Q
    Google Certified Professional - Cloud Architect.exam.57q Number : GoogleCloudArchitect Passing Score : 800 Time Limit : 120 min https://www.gratisexam.com/ Google Certified Professional – Cloud Architect (English) https://www.gratisexam.com/ Testlet 1 Company Overview Mountkirk Games makes online, session-based, multiplayer games for the most popular mobile platforms. Company Background Mountkirk Games builds all of their games with some server-side integration, and has historically used cloud providers to lease physical servers. A few of their games were more popular than expected, and they had problems scaling their application servers, MySQL databases, and analytics tools. Mountkirk’s current model is to write game statistics to files and send them through an ETL tool that loads them into a centralized MySQL database for reporting. Solution Concept Mountkirk Gamesis building a new game, which they expect to be very popular. They plan to deploy the game’s backend on Google Compute Engine so they can capture streaming metrics, run intensive analytics, and take advantage of its autoscaling server environment and integrate with a managed NoSQL database. Technical Requirements Requirements for Game Backend Platform 1. Dynamically scale up or down based on game activity 2. Connect to a managed NoSQL database service 3. Run customize Linux distro Requirements for Game Analytics Platform 1. Dynamically scale up or down based on game activity 2. Process incoming data on the fly directly from the game servers 3. Process data that arrives late because of slow mobile networks 4. Allow SQL queries to access at least 10 TB of historical data 5. Process files that are regularly uploaded by users’ mobile devices 6.
    [Show full text]
  • Studi Perbandingan Layanan Cloud Computing
    Jurnal Rekayasa Elektrika Vol. 10, No. 4, Oktober 2013 193 Studi Perbandingan Layanan Cloud Computing Afdhal Jurusan Teknik Elektro, Fakultas Teknik, Universitas Syiah Kuala Jl. Tgk. Syech Abdurrauf No. 7 Darussalam, Banda Aceh 23111 e-mail: [email protected] Abstrak—Selama beberapa tahun terakhir, cloud computing telah menjadi topik dominan dalam bidang teknologi informasi dan komunikasi (TIK). Saat ini, cloud computing menyediakan berbagai jenis layanan, antara lain layanan hardware, infrastruktur, platform, dan berbagai jenis aplikasi. Cloud computing telah menjadi solusi dan pelayanan, baik untuk meningkatkan kehandalan, mengurangi biaya komputasi, sampai dengan memberikan peluang yang cukup besar bagi dunia industri TIK untuk mendapatkan keuntungan lebih dari teknologi ini. Namun disisi lain, pengguna akhir (end user) dari layanan ini, tidak pernah mengetahui atau memiliki pengetahuan tentang lokasi fisik dan sistem konfigurasi dari penyedia layanan ini. Tujuan artikel ini adalah untuk menyajikan sebuah pemahaman yang lebih baik tentang klasifikasi-klasifikasi cloud computing, khususnya difokuskan pada delivery service (pengiriman layanan) sebagai model bisnis cloud computing. Artikel ini membahas model-model pengembangan, korelasi dan ketergantungan antara satu model layanan dengan model layanan yang lainnya. Artikel ini juga menyajikan perbandingan dan perbedaan tingkatan-tingkatan dari model delivery service yang dimulai dari mengidentifikasi permasalahan, model pengembangan, dan arah masa depan cloud computing. Pemahaman tentang klasifikasi delivery service dan isu-isu seputar cloud computing akan melengkapi pengetahuan penggunanya untuk menentukan keputusan dalam memilih model bisnis mana yang akan diadopsi dengan aman dan nyaman. Pada bagian akhir artikel ini dipaparkan beberapa rekomendasi yang ditujukan baik untuk penyedia layanan maupun untuk pengguna akhir cloud computing. Kata kunci: cloud computing, delivery service, IaaS, PaaS, SaaS Abstract—In the past few years, cloud computing has became a dominant topic in the IT area.
    [Show full text]
  • Every App in the Universe
    THE BIGGER BOOK OF APPS Resource Guide to (Almost) Every App in the Universe by Beth Ziesenis Your Nerdy Best Friend The Bigger Book of Apps Resource Guide Copyright @2020 Beth Ziesenis All rights reserved. No part of this publication may be reproduced, distributed, or trans- mitted in any form or by any means, including photocopying, recording or other elec- tronic or mechanical methods, without the prior written permission of the publisher, except in the case of brief quotations embodied in critical reviews and certain other non- commercial uses permitted by copyright law. For permission requests, write to the pub- lisher at the address below. Special discounts are available on quantity purchases by corporations, associations and others. For details, contact the publisher at the address below. Library of Congress Control Number: ISBN: Printed in the United States of America Avenue Z, Inc. 11205 Lebanon Road #212 Mt. Juliet, TN 37122 yournerdybestfriend.com Organization Manage Lists Manage Schedules Organize and Store Files Keep Track of Ideas: Solo Edition Create a Mind Map Organize and Store Photos and Video Scan Your Old Photos Get Your Affairs in Order Manage Lists BZ Reminder Pocket Lists Reminder Tool with Missed Call Alerts NerdHerd Favorite Simple To-Do List bzreminder.com pocketlists.com Microsoft To Do Todoist The App that Is Eating Award-Winning My Manager’s Favorite Productivity Tool Wunderlist todoist.com todo.microsoft.com Wunderlist Plan The Award-Winning Task Manager with a Task Manager and Planning Tool Rabid Fanbase
    [Show full text]
  • Choosing a Database- As-A-Service an Overview of Offerings by Major Public Cloud Service Providers
    CHOOSING A DATABASE- AS-A-SERVICE AN OVERVIEW OF OFFERINGS BY MAJOR PUBLIC CLOUD SERVICE PROVIDERS Warner Chaves Principal Consultant, Microsoft Certified Master, Microsoft MVP With Contributors Danil Zburivsky, Director of Big Data and Data Science Vladimir Stoyak, Principal Consultant for Big Data, Certified Google Cloud Platform Qualified Developer Derek Downey, Practice Advocate, OpenSource Databases Manoj Kukreja, Big Data and IT Security Specialist, CISSP, CCAH and OCP When it comes to running your data in the public cloud, there is a range of Database-as-a-Service (DBaaS) offerings from all three major public cloud providers. Knowing which is best for your use case can be challenging. This paper provides a high-level overview of the main DBaaS offerings from Amazon, Microsoft, and Google. After reading this white paper, you’ll have a high-level understanding of the most popular data repositories and data analytics service offerings from each vendor, you’ll know the key differences among the offers, and which ones are best for each use case. With this information, you can direct your more detailed research to a manageable number of options. www.pythian.com | White Paper 1 This white paper does not discuss private cloud providers or colocation environments, streaming, data orchestration, or Infrastructure-as-a-Service (IaaS) offerings. This paper is targeted to IT professionals with a good understanding of databases and also business people who want an overview of data platforms in the cloud. WHAT IS A DBAAS OFFERING? A DBaaS is a database running in the public cloud. Three things define a DBaaS: • The service provider installs and maintains the database software, including backups and other common database administration tasks.
    [Show full text]
  • Announcement
    Announcement 68 articles, 2016-03-23 18:03 1 Android Pay is coming to the UK, Google’s first market in Europe (2.00/3) Now signing up 1.5 million users each week in the U. S., Android Pay, Google's payment platform and mobile wallet for Android devices and apps, is coming to.. 2016-03-23 18:02 2KB feedproxy.google.com 2 Bill Gates calls for tighter safeguards on bulk data collection Gates discusses the iPhone case, AI and the Microsoft Surface Book in his latest Reddit chat,Business Software,Privacy ,Microsoft,Bill Gates,Windows 10,Artificial Intelligence 2016-03-23 18:02 2KB www.computing.co.uk 3 Opera to add native ad blocker to desktop web browser Need for speed? Opera's web browser will come with a built-in speedometer ,Software,Internet,Internet of Things,Cloud and Infrastructure ,Opera,Opera Software,Browsers 2016-03-23 18:02 2KB www.computing.co.uk 4 US Department of Defense to migrate millions of PCs to Windows 10 - in just one year DoD to migrate four million desktops in just one year - or, at least, that's the plan,Operating Systems,Software ,Windows,Windows 10,Microsoft,Department of Defense,operating system 2016-03-23 18:02 3KB www.computing.co.uk 5 AI is coming, so we'd better start preparing for it Francois Tung of law firm Pinsent Masons examines the legal implications of rapidly improving artificial intelligence,Cloud and Infrastructure,Software,Legislation and Regulation ,Artificial Intelligence,Machine Learning,Pinsent Masons 2016-03-23 18:02 1017Bytes www.computing.co.uk 6 Security flaw affecting thousands of Linux apps
    [Show full text]
  • GAE — Google App Engine
    GAE — Google App Engine Prof. Dr. Marcel Graf TSM-ClComp-EN Cloud Computing (C) 2017 HEIG-VD Google App Engine Introduction ■ Google App Engine is a PaaS for building scalable web applications and mobile backends. ■ Makes it easy to deploy a web application: ■ The client (developer) supplies the application’s program code. ■ Google’s platform is responsible for running it on its servers and scaling it automatically. ■ The platform offers built-in services and APIs such as NoSQL datastore, memcache and user authentication. ■ There are some restrictions regarding the supported application types. ■ The application cannot access everything on the server. ■ The application must limit its processing time. ■ Launched in April 2008 (preview) ■ In production since September 2011 ■ Supported programming languages and runtimes: ■ Go ■ Node.js ■ PHP ■ .NET ■ Java ■ Ruby ■ Python ■ … TSM-ClComp-EN Cloud Computing | Google App Engine | Academic year 2017/2018 2 Platform as a Service Reminder: Web applications in Java — Servlets ■ A servlet runs inside an application server ■ The server calls the servlet to handle an HTTP request ■ The task of the servlet is to create the response Application server HTTP request Servlet HTTP response Browser Servlet Database Servlet TSM-ClComp-EN Cloud Computing | Google App Engine | Academic year 2017/2018 3 Platform as a Service Reminder: Web applications in Java — Servlets ■ Complete picture of the processing of an HTTP request Application Servlet servier Browser Database HTTP request HTTPServlet Request object URL
    [Show full text]
  • An Analytic Real Life Case Study of Google Cloud Computing Architecture Platform’S for Big Data Analytics Products from AWS, Azure and GCP
    Vol-6 Issue-5 2020 IJARIIE-ISSN(O)-2395-4396 An Analytic Real Life Case Study of Google Cloud computing architecture Platform’s for Big Data Analytics Products from AWS, Azure and GCP Devendra Kumar Nagayach1, Dr. Pushpneel Verma2 1Research Scholar, Deptt. of Computer Science & Application, Bhagwant University, Rajasthan, India 2Associate Professor, Bhagwant University, Rajasthan, India ABSTRACT A large amount of data, structured or unstructured, is called "Big Data", which mainly consists of five properties such as volume, velocity and variation, validation and value of which value is the most important whose main purpose is to extract relevant information. The other four V’s to solve this problem of polite data and analysis; various technologies have emerged in the last decades. "Cloud computing" is a platform where thousands of servers work together to meet various computing needs and billing is done as per 'pay-as-you-go' increases. This study will present a novel dynamic scaling methodology to improve the performance of big data systems. A dynamic scaling methodology will be developed to scale the system from a big data perspective. Furthermore, these aspects will be used by the algorithm of the supporting project, which can be broken down into smaller tasks to be processed by the system. These small bangles will be run on multiple virtual machines to perform parallel work to increase the runtime performance of the system. Keyword: - SCC, GFRSCC, Properties, and EFNARC etc. 1. INTRODUCTION Currently, we live in an era where big data has emerged and is attracting attention in many fields such as science, healthcare, business, finance and society.
    [Show full text]
  • Approved by Gsa 29 May 19
    APPROVED BY GSA 29 MAY 19 End User License Agreement Your use of the Software is subject to the terms and conditions of the Google Cloud Platform License Agreement, but only to the extent that all terms and conditions in the Google Cloud Platform License Agreement are consistent with Federal Law (e.g., the Anti- Deficiency Act (31 U.S.C. § 1341 and 41 U.S.C. §6301), the Contracts Disputes Act of 1978 (41. U.S.C. § 601-613), the Prompt Payment Act, the Anti-Assignment statutes (41 § U.S.C.6405), 28 U.S.C. § 516 (Conduct of Litigation Reserved to Department of Justice (DOJ), and 28 U.S.C. § 1498 (Patent and copyright cases)). To the extent the terms and conditions in the Google Cloud Platform License Agreement or this End User License Agreement (EULA) are inconsistent with Federal Law (See FAR 12.212(a)), they shall be deemed deleted and unenforceable as applied to any Orders under this EULA. Under this Agreement, which is incorporated in Customer’s Quote and Order, Customer purchases the right to access and use the Google Services specified in an order form. 1. Products and Services. Customer hereby purchases the Google Cloud Platform services (including any associated APIs) listed at Appendix 1 and https://cloud.google.com/cloud/services (or such other URL as Google may provide) also known as the “Google for Work & Google for Education” Products and Services (the “Products and Services”) and in accordance with the terms and conditions of this EULA. Customer will find the terms specific to each Product and Service at Appendix 2 and _ (“Service Specific Terms”).
    [Show full text]
  • Breathe London Technical Report Pilot Phase (2018 – 2020)
    Breathe London Technical Report Pilot Phase (2018 – 2020) January 2021 BREATHE LONDON PARTNERS Acknowledgements The pilot phase of Breathe London was delivered by a consortium led by Environmental Defense Fund Europe and funded by the Children’s Investment Fund Foundation, with continued funding from Clean Air Fund and additional funding support provided by Valhalla Charitable Foundation. The project was convened by C40 Cities, the leading global alliance of cities committed to addressing climate change, and the Greater London Authority. The project consortium included ACOEM Air Monitors, Cambridge Environmental Research Consultants, Google Earth Outreach, the National Physical Laboratory and the University of Cambridge. The Wearables study was commissioned by the Environmental Research Group at Imperial College London (formerly at King’s College London). The pilot phase ran from July 2018 to November 2020. Breathe London partners would like to thank the many hosts of Breathe London air quality monitors including local councils, schools and residents, as well as the scientific and project advisors, technical partners and other non- governmental organisation partners for their contributions. The lessons and insights gained from Breathe London draw from these collective efforts. i Breathe London Technical Report | Pilot Phase Table of Contents Part 1 The Breathe London project ......................................................................................... 4 1.1 Overview ...........................................................................................................................
    [Show full text]
  • Check and Evernote Named to PC Magazine's Top 100 Android Apps
    http://www.pcmag.com/article2/0,2817,2393102,00.asp The 100 Best Android Apps of 2013 By Max Eddy ARTICLE DATE : October 28, 2013 pcmag.com It seems like only yesterday Google Play was a quiet hamlet populated by mere hundreds of thousands of apps. But as of this past summer, the official Android app store crossed the twin thresholds of a million apps and 50 billion downloads. Navigating this bustling metropolis of applications has always been difficult, which is why we've created this handy list to help guide you toward the best apps out there. We're constantly pruning and updating this list, trying to make sure it has a little something for everyone while also keeping it fresh and interesting. While our tastes and yours may be different, we think our list is a good starting point. Hopefully the next time you stop by, you'll see something new. Whoa, 10 pages? Uncool. We can all agree that paginated stories are annoying. But with 100 apps, we had to break it up just to make it readable. We've even divided the article into themed sections, so you can skip over the first 50 or so if you're only interested in, say, music apps. Also, if you're interested in more Android games (and be honest, you are) check out our list of the 10 Best Android Games. You're welcome! The 100 Best Android Apps of 2013 Hey, You Missed Something Though we are professionals, we have yet to physically and mentally merge with the Google Play store, becoming an omnipotent being of total app knowledge.
    [Show full text]
  • Getting Started with Google Cloud
    <CloudOnBoard> Getting Started With Google Cloud </CloudOnBoard> Cloud OnBoard Welcome to Cloud OnBoard #GoogleCloudOnBoard ©Google Inc. or its affiliates. All rights reserved. Do not distribute. ©Google Inc. or its affiliates. All rights reserved. Do not distribute. May only be taught by Google Cloud Platform Authorized Trainers. Cloud OnBoard ©Google Inc. or its affiliates. All rights reserved. Do not distribute. ©Google Inc. or its affiliates. All rights reserved. Do not distribute. May only be taught by Google Cloud Platform Authorized Trainers. Page 1 Agenda Why choose Google Cloud Platform? Google Cloud Platform enables developers to build, test and 1 Introduction to Google Cloud Platform deploy applications on Google’s highly-scalable, secure, and reliable infrastructure. 2 Quiz Choose from computing, storage, big data/machine learning, and application services for your web, mobile, analytics, and backend solutions. ©Google Inc. or its affiliates. All rights reserved. Do not distribute. 3 ©Google Inc. or its affiliates. All rights reserved. Do not distribute. 5 The Future of Cloud Computing GCP is organized into regions and zones Now Next ● Regions: collections of zones ○ Specific geographical locations where you can run resources ○ Regions are interconnected using Google’s global, meshed backbone network Storage Processing Memory Network Storage Processing Memory Network ● Zones: isolated deployment areas in a region Physical/Colo Virtualized Serverless/No-Ops ● Your resources can be regional, zonal, or in some cases multi-regional
    [Show full text]