Deep Dive Dynamo DB

Total Page:16

File Type:pdf, Size:1020Kb

Deep Dive Dynamo DB Deep Dive: Amazon DynamoDB Richard Westby-Nunn – Technical Account Manager, Enterprise Support 28 June 2017 © 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Agenda DynamoDB 101 - Tables, Partitioning Indexes Scaling Data Modeling DynamoDB Streams Scenarios and Best Practices Recent Announcements Amazon DynamoDB Fully Managed NoSQL Document or Key-Value Scales to Any Workload Fast and Consistent Access Control Event Driven Programming Tables, Partitioning Table Table Items Attributes All items for a partition key Partition Sort ==, <, >, >=, <= Key Key “begins with” Mandatory “between” Key-value access pattern sorted results Determines data distribution Optional counts Model 1:N relationships Enables rich query capabilities top/bottom N values paged responses Partition table Partition key uniquely identifies an item Partition key is used for building an unordered hash index Table can be partitioned for scale Id = 1 Id = 2 Id = 3 Name = Jim Name = Andy Name = Kim Dept = Engg Dept = Ops Hash (1) = 7B Hash (2) = 48 Hash (3) = CD 0000 54 55 Key Space A9 AA FF Partition-sort key table Partition key and sort key together uniquely identify an Item Within unordered partition key-space, data is sorted by the sort key No limit on the number of items (∞) per partition key • Except if you have local secondary indexes Partition 1 Partition 2 Partition 3 00:0 54:∞ 55 A9:∞ AA FF:∞ Customer# = 2 Customer# = 1 Customer# = 3 Order# = 10 Order# = 10 Order# = 10 Item = Pen Item = Toy Item = Book Customer# = 2 Customer# = 1 Customer# = 3 Order# = 11 Order# = 11 Order# = 11 Item = Shoes Item = Boots Item = Paper Hash (2) = 48 Hash (1) = 7B Hash (3) = CD Partitions are three-way replicated Id = 2 Id = 1 Id = 3 Name = Andy Name = Jim Name = Kim Dept = Engg Dept = Ops Replica 1 Id = 2 Id = 1 Id = 3 Name = Andy Name = Jim Name = Kim Dept = Engg Dept = Ops Replica 2 Id = 2 Id = 1 Id = 3 Name = Andy Name = Jim Name = Kim Dept = Engg Dept = Ops Replica 3 Partition 1 Partition 2 Partition N Eventually Consistent Reads Rand(1,3) Replica 1 Replica 2 Replica 3 Partition A Partition A Partition A 1000 RCUs 1000 RCUs 1000 RCUs Strongly Consistent Reads Locate Primary Replica 1 Replica 2 Replica 3 Partition A Partition A Partition A 1000 RCUs 1000 RCUs 1000 RCUs Primary Indexes Local secondary index (LSI) Alternate sort key attribute Index is local to a partition key 10 GB max per partition Table A1 A2 A3 A4 A5 (partition) (sort) key, i.e. LSIs limit the # of sort keys! A1 A3 A2 KEYS_ONLY (partition) (sort) (table key) A1 A4 A2 A3 LSIs (partition) (sort) (table key) (projected) INCLUDE A3 A1 A5 A2 A3 A4 ALL (partition) (sort) (table key) (projected) (projected) Global secondary index (GSI) Online Indexing Alternate partition (+sort) key Index is across all table partition keys A1 A2 A3 A4 A5 RCUs/WCUs Table (partition) provisioned separately for GSIs A2 A1 KEYS_ONLY (part.) (table key) A5 A4 A1 A3 INCLUDE A3 GSIs (part.) (sort) (table key) (projected) A4 A5 A1 A2 A3 (part.) (sort) (table key) (projected) (projected) ALL LSI or GSI? LSI can be modeled as a GSI If data size in an item collection > 10 GB, use GSI If eventual consistency is okay for your scenario, use GSI! Scaling Scaling Throughput § Provision any amount of throughput to a table Size § Add any number of items to a table - Max item size is 400 KB - LSIs limit the number of range keys due to 10 GB limit Scaling is achieved through partitioning Throughput Provisioned at the table level • Write capacity units (WCUs) are measured in 1 KB per second • Read capacity units (RCUs) are measured in 4 KB per second • RCUs measure strictly consistent reads • Eventually consistent reads cost 1/2 of consistent reads Read and write throughput limits are independent RCU WCU Partitioning Math Number of Partitions By Capacity (Total RCU / 3000) + (Total WCU / 1000) By Size Total Size / 10 GB Total Partitions CEILING(MAX (Capacity, Size)) Partitioning Example Table size = 8 GB, RCUs = 5000, WCUs = 500 Number of Partitions By Capacity (5000 / 3000) + (500 / 1000) = 2.17 By Size 8 / 10 = 0.8 Total Partitions CEILING(MAX (2.17, 0.8)) = 3 RCUs per partition = 5000/3 = 1666.67 RCUs and WCUs are uniformly WCUs per partition = 500/3 = 166.67 spread across partitions Data/partition = 10/3 = 3.33 GB Burst capacity is built-in Consume saved up capacity 1600 1200 Burst: 300 seconds (1200 × 300 = 360k CU) 800 Capacity Units 400 “Save up” unused capacity 0 Time Provisioned Consumed Burst capacity may not be sufficient 1600 1200 Burst: 300 seconds (1200 × 300 = 360k CU) 800 Capacity Units Throttled requests 400 0 Time Provisioned Consumed Attempted Don’t completely depend on burst capacity… provision sufficient throughput What causes throttling? Non-uniform workloads • Hot keys/hot partitions • Very large bursts Dilution of throughput across partitions caused by mixing hot data with cold data • Use a table per time period for storing time series data so WCUs and RCUs are applied to the hot data set Example: Key Choice or Uniform Access Heat Partition Time Getting the most out of DynamoDB throughput “To get the most out of DynamoDB 1. Key Choice: High key throughput, create tables where cardinality (“uniqueness”) the partition key has a large number of distinct values, and 2. Uniform Access: access is evenly spread over the key- values are requested fairly space uniformly, as randomly as possible.” 3. Time: requests arrive evenly spaced in time —DynamoDB Developer Guide Example: Time-based Access Example: Uniform access Data Modeling Store data based on how you will access it! 1:1 relationships or key-values Use a table or GSI with a partition key Use GetItem or BatchGetItem API Example: Given a user or email, get attributes Users Table Partition key Attributes UserId = bob Email = [email protected], JoinDate = 2011-11-15 UserId = fred Email = [email protected], JoinDate = 2011-12-01 Users-Email-GSI Partition key Attributes Email = [email protected] UserId = bob, JoinDate = 2011-11-15 Email = [email protected] UserId = fred, JoinDate = 2011-12-01 1:N relationships or parent-children Use a table or GSI with partition and sort key Use Query API Example: Given a device, find all readings between epoch X, Y Device-measurements Part. Key Sort key Attributes DeviceId = 1 epoch = 5513A97C Temperature = 30, pressure = 90 DeviceId = 1 epoch = 5513A9DB Temperature = 30, pressure = 90 N:M relationships Use a table and GSI with partition and sort key elements switched Use Query API Example: Given a user, find all games. Or given a game, find all users. User-Games-Table Game-Users-GSI Part. Key Sort key Part. Key Sort key UserId = bob GameId = Game1 GameId = Game1 UserId = bob UserId = fred GameId = Game2 GameId = Game2 UserId = fred UserId = bob GameId = Game3 GameId = Game3 UserId = bob Documents (JSON) Javascript DynamoDB string S Data types (M, L, BOOL, NULL) number N introduced to support JSON boolean BOOL Document SDKs • Simple programming model null NULL • Conversion to/from JSON array L • Java, JavaScript, Ruby, .NET Cannot create an Index on object M elements of a JSON object stored in Map • They need to be modeled as top- level table attributes to be used in LSIs and GSIs Set, Map, and List have no element limit but depth is 32 levels Rich expressions Projection expression • Query/Get/Scan: ProductReviews.FiveStar[0] Filter expression • Query/Scan: #V > :num (#V is a place holder for keyword VIEWS) Conditional expression • Put/Update/DeleteItem: attribute_not_exists (#pr.FiveStar) Update expression • UpdateItem: set Replies = Replies + :num DynamoDB Streams DynamoDB Streams Stream of updates to a table Highly durable Asynchronous • Scale with table Exactly once 24-hour lifetime Strictly ordered Sub-second latency • Per item DynamoDB Streams and AWS Lambda Scenarios and Best Practices Event Logging Storing time series data Time series tables Events_table_2016_April Event_id Timestamp Attribute1 …. Attribute N RCUs = 10000 Current table (Partition key) (sort key) WCUs = 10000 Hot data Hot Events_table_2016_March RCUs = 1000 Event_id Timestamp Attribute1 …. Attribute N (Partition key) (sort key) WCUs = 100 Events_table_2016_Feburary Older tables RCUs = 100 Event_id Timestamp Attribute1 …. Attribute N (Partition key) (sort key) WCUs = 1 Cold data Cold Events_table_2016_January RCUs = 10 Event_id Timestamp Attribute1 …. Attribute N (Partition key) (sort key) WCUs = 1 Don’t mix hot and cold data; archive cold data to Amazon S3 DynamoDB TTL Events_table_2016_April Event_id Timestamp myTTL …. Attribute N RCUs = 10000 Current table (Partition key) (sort key) 1489188093 WCUs = 10000 Hot data Hot Events_Archive Event_id Timestamp Attribute1 …. Attribute N RCUs = 100 (Partition key) (sort key) WCUs = 1 Cold data Cold Use DynamoDB TTL and Streams to archive Isolate cold data from hot data Pre-create daily, weekly, monthly tables Provision required throughput for current table Writes go to the current table Turn off (or reduce) throughput for older tables OR move items to separate table with TTL Dealing with time series data Real-Time Voting Write-heavy items Scaling bottlenecks Voters Provision 200,000 WCUs Partition 1 Partition K Partition M Partition N 1000 WCUs 1000 WCUs 1000 WCUs 1000 WCUs Candidate A Candidate B Votes Table Write sharding Voter UpdateItem: “CandidateA_” + rand(0, 10) ADD 1 to Votes Candidate A_7 Candidate B_4 Candidate B_8 Candidate A_1 Candidate A_4 Candidate B_5 Candidate B_1 Candidate A_5 Candidate B_3 Candidate B_7 Candidate A_3 Candidate A_2 Candidate A_6 Candidate A_8 Votes Table Candidate B_2 Candidate B_6 Shard aggregation 2. Store Voter Periodic Process 1. Sum Candidate A_7 Candidate B_8 Candidate A Candidate B_4 Candidate A_1 Candidate A_4 Total: 2.5M Candidate B_5 Candidate B_1 Candidate A_5 Candidate B_3 Candidate B_7 Candidate A_3 Candidate A_2 Candidate A_6 Candidate A_8 Votes Table Candidate B_2 Candidate B_6 Shard write-heavy partition keys Trade off read cost for write scalability Consider throughput per partition key and per partition Your write workload is not horizontally scalable Product Catalog Popular items (read) Scaling bottlenecks SELECT Id, Description, ..
Recommended publications
  • Reliability and Security of Large Scale Data Storage in Cloud Computing C.W
    This article is part of the Reliability Society 2010 Annual Technical Report Reliability and Security of Large Scale Data Storage in Cloud Computing C.W. Hsu ¹¹¹ C.W. Wang ²²² Shiuhpyng Shieh ³³³ Department of Computer Science Taiwan Information Security Center at National Chiao Tung University NCTU (TWISC@NCTU) Email: ¹[email protected] ³[email protected] ²[email protected] Abstract In this article, we will present new challenges to the large scale cloud computing, namely reliability and security. Recent progress in the research area will be briefly reviewed. It has been proved that it is impossible to satisfy consistency, availability, and partitioned-tolerance simultaneously. Tradeoff becomes crucial among these factors to choose a suitable data access model for a distributed storage system. In this article, new security issues will be addressed and potential solutions will be discussed. Introduction “Cloud Computing ”, a novel computing model for large-scale application, has attracted much attention from both academic and industry. Since 2006, Google Inc. Chief Executive Eric Schmidt introduced the term into industry, and related research had been carried out in recent years. Cloud computing provides scalable deployment and fine-grained management of services through efficient resource sharing mechanism (most of them are for hardware resources, such as VM). Convinced by the manner called “ pay-as-you-go ” [1][2], companies can lower the cost of equipment management including machine purchasing, human maintenance, data backup, etc. Many cloud services rapidly appear on the Internet, such as Amazon’s EC2, Microsoft’s Azure, Google’s Gmail, Facebook, and so on. However, the well-known definition of the term “Cloud Computing ” was first given by Prof.
    [Show full text]
  • Amazon Dynamodb
    Dynamo Amazon DynamoDB Nicolas Travers Inspiré de Advait Deo Vertigo N. Travers ESILV : Dynamo Amazon DynamoDB – What is it ? • Fully managed nosql database service on AWS • Data model in the form of tables • Data stored in the form of items (name – value attributes) • Automatic scaling ▫ Provisioned throughput ▫ Storage scaling ▫ Distributed architecture • Easy Administration • Monitoring of tables using CloudWatch • Integration with EMR (Elastic MapReduce) ▫ Analyze data and store in S3 Vertigo N. Travers ESILV : Dynamo Amazon DynamoDB – What is it ? key=value key=value key=value key=value Table Item (64KB max) Attributes • Primary key (mandatory for every table) ▫ Hash or Hash + Range • Data model in the form of tables • Data stored in the form of items (name – value attributes) • Secondary Indexes for improved performance ▫ Local secondary index ▫ Global secondary index • Scalar data type (number, string etc) or multi-valued data type (sets) Vertigo N. Travers ESILV : Dynamo DynamoDB Architecture • True distributed architecture • Data is spread across hundreds of servers called storage nodes • Hundreds of servers form a cluster in the form of a “ring” • Client application can connect using one of the two approaches ▫ Routing using a load balancer ▫ Client-library that reflects Dynamo’s partitioning scheme and can determine the storage host to connect • Advantage of load balancer – no need for dynamo specific code in client application • Advantage of client-library – saves 1 network hop to load balancer • Synchronous replication is not achievable for high availability and scalability requirement at amazon • DynamoDB is designed to be “always writable” storage solution • Allows multiple versions of data on multiple storage nodes • Conflict resolution happens while reads and NOT during writes ▫ Syntactic conflict resolution ▫ Symantec conflict resolution Vertigo N.
    [Show full text]
  • The Complete Guide to Social Media from the Social Media Guys
    The Complete Guide to Social Media From The Social Media Guys PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Mon, 08 Nov 2010 19:01:07 UTC Contents Articles Social media 1 Social web 6 Social media measurement 8 Social media marketing 9 Social media optimization 11 Social network service 12 Digg 24 Facebook 33 LinkedIn 48 MySpace 52 Newsvine 70 Reddit 74 StumbleUpon 80 Twitter 84 YouTube 98 XING 112 References Article Sources and Contributors 115 Image Sources, Licenses and Contributors 123 Article Licenses License 125 Social media 1 Social media Social media are media for social interaction, using highly accessible and scalable publishing techniques. Social media uses web-based technologies to turn communication into interactive dialogues. Andreas Kaplan and Michael Haenlein define social media as "a group of Internet-based applications that build on the ideological and technological foundations of Web 2.0, which allows the creation and exchange of user-generated content."[1] Businesses also refer to social media as consumer-generated media (CGM). Social media utilization is believed to be a driving force in defining the current time period as the Attention Age. A common thread running through all definitions of social media is a blending of technology and social interaction for the co-creation of value. Distinction from industrial media People gain information, education, news, etc., by electronic media and print media. Social media are distinct from industrial or traditional media, such as newspapers, television, and film. They are relatively inexpensive and accessible to enable anyone (even private individuals) to publish or access information, compared to industrial media, which generally require significant resources to publish information.
    [Show full text]
  • Distributed Hash Tables Chord and Dynamo (Lecture 19, Cs262a)
    Distributed Hash Tables Chord and Dynamo (Lecture 19, cs262a) Ion Stoica, UC Berkeley October 31, 2016 Today’s Papers Chord: A Scalable Peer-to-peer Lookup Service for Internet Applications, Ion Stoica, Robert Morris, David Karger, M. Frans Kaashoek, Hari Balakrishnan, SIGCOMM’02 (https://pdos.csail.mit.edu/papers/chord:sigcomm01/chord_sigcomm.pdf) Dynamo: Amazon's Highly Available Key-value Store, Giuseppe DeCandia, Deniz Hastorun, Madan Jampani, Gunavardhan Kakulapati, Avinash Lakshman, Alex Pilchin, Swaminathan, Sivasubramanian, Peter Vosshall, and Werner Vogels, SOSP’07 (www.allthingsdistributed.com/files/amazon-dynamo-sosp2007.pdf) Key Value Storage Interface – put(key, value); // insert/write “value” associated with “key” – value = get(key); // get/read data associated with “key” Abstraction used to implement – File systems: value content à block – Sometimes as a simpler but more scalable “database” Can handle large volumes of data, e.g., PBs – Need to distribute data over hundreds, even thousands of machines Key Values: Examples Amazon: – Key: customerID – Value: customer profile (e.g., buying history, credit card, ..) Facebook, Twitter: – Key: UserID – Value: user profile (e.g., posting history, photos, friends, …) iCloud/iTunes: – Key: Movie/song name – Value: Movie, Song Distributed file systems – Key: Block ID – Value: Block System Examples Google File System, Hadoop Dist. File Systems (HDFS) Amazon – Dynamo: internal key value store used to power Amazon.com (shopping cart) – Simple Storage System (S3) BigTable/Hbase: distributed,
    [Show full text]
  • 'Skip the Straw'
    Today’s weather: High 88 Low 78 A shower & CHARLOTTE SUN thunderstorm GUNMAN IN TRADER JOE’S STANDOFF LOOKING AT MURDER CHARGE Pulitzer Prize winner A gunman who took dozens of people hostage at a Trader Joe’s store in Los Angeles was booked Sunday on suspicion of murder, after an employee 2016 was killed during the man’s shootout with police. See The News Wire Monday, July 23, 2018 VOL. 126 | NO. 204 www.yoursun.com AMERICA’S BEST COMMUNITY DAILY $1.50 AN EDITION OF THE SUN Program Report: Residents feeling aims to help inmates good, getting heavier By BETSY CALVERT them the Healthy Community based on an annual telephone period, the rate declined from STAFF WRITER Champion Recognition survey by the U.S. Centers for 82.9 to 80.5 percent. post-jail Award. Disease Control. Pepe credited county Charlotte County residents “I’m pleased to inform you According to that survey programs at the commission By ANNE EASKER are feeling better these days, we are moving the needle,” he for this county, 85 percent of meeting. STAFF WRITER even as they exercise less and said. adults said they were in good “The built-in environment weigh more. Pepe drew his conclusions to excellent health in 2016 — that you put in place is start- A new program at the Charlotte Those are some of the from the state Department of the most recent results avail- ing to pay off,” he said. County Jail aims to reduce recid- indicators that the county’s Health database that able. That’s an improvement That environment includes ivism by helping inmates learn interim health director, compares counties from 2013 when the rate was newly constructed sidewalks, to better navigate the world after Joseph Pepe, shared with and shows trends 80.9 percent, and 2010 when improved parks, plans for incarceration.
    [Show full text]
  • Amazon Dynamodb Deep Dive: Advanced Design Patterns
    Amazon DynamoDB deep dive: Advanced design patterns © 2020, Amazon Web Services, Inc. or its Affiliates. 自己紹介 成田 俊 id:oranie 経歴 • 前職のWeb系会社でインフラエンジニアを担当、主にMySQLや Cassandra運用などに携わる AWSJでの担当 • NoSQLサービス、DynamoDBをメインに技術支援を担当 © 2020, Amazon Web Services, Inc. or its Affiliates. Agenda • Overview of Amazon DynamoDB • Scaling NoSQL • NoSQL data modeling • 正規化と非正規化 • デザインパターン • 複合key, 階層的構造のデータ, リレーショナルなデータの表現 • 実際のアプリケーションにおけるモデリング © 2020, Amazon Web Services, Inc. or its Affiliates. Amazon DynamoDB あらゆる規模に対応する高速で柔軟なkey-value データベースサービス Performance Serverless architecture Enterprise Global replication at scale security あらゆる規模で一貫した1桁 ハードウェアのプロビジョニン すべてのデータを暗号化 複数の AWS リージョン間で ミリ秒の応答時間。事実上無 グ、ソフトウェアのパッチ適用、 AWS IAMとの完全統合によ 簡単にテーブルをレプリ 制限のスループットでアプリ アップグレードなし、自動ス り、堅牢なセキュリティを ケートすることで、ローカ ケーションを構築 ケールアップまたはスケールダ 実現 ルデータにすばやくアクセ ウン、データの継続的なバック スできるグローバルアプリ アップ ケーションを構築可能 © 2020, Amazon Web Services, Inc. or its Affiliates. © 2020, Amazon Web Services, Inc. or its Affiliates. メンテナンスフリー もしこれらを管理するコストが無ければ他に何が出来るか? セキュリティ 可用性 OSパッチ適用 高可用性を実現する設計 DBパッチ適用 モニタリング アクセスコントロール クロスリージョンレプリケーション 監査 性能 暗号化 パフォーマンスチューニング コンプライアンス対応 インデックス設計、作成 耐久性 In-memory上でキャッシュ維持 サーバ, ラック, データセンタ維持 拡張性 HW障害に伴うデータコピー キャパシティプランニング バックアップ・リストア ホスト構築、投入作業 障害ホストの修復、撤去作業 © 2020, Amazon Web Services, Inc. or its Affiliates. Table Table GSI1PK GSI2PK GSI3PK Items GSI1PK Attributes GSI1PK GSI2PK Partition Sort All items for key ==, <, >, >=, <= key key “begins with” “between” “contains” “in” 必須 オプション sorted results Key-value アクセスパターン 1:Nの関係性を表現 counts を実現 データの分布を決定 豊富なクエリでの条件指定が可能
    [Show full text]
  • AFS Year 7 Slate MASTER
    AFS YEAR 7 FILM SLATE "1 AFS 2018-2019 FILM THEMES *Please note that this thematic breakdown includes documentary features, documentary shorts, animated shorts and episodic documentaries American Arts & Culture Entrepreneurism Chasing Trane! Blood, Sweat & Beer! Gentlemen of Vision! Chef Flynn! Honky Tonk Heaven: Legend of the Dealt! Broken Spoke! Ella Brennan: Commanding the Table! Jake Shimabukuro: Life on Four Strings Good Fortune! More Art Upstairs! Knife Skills! Moving Stories! New Chefs on the Block! Obit! One Hundred Thousand Beating Hearts! Restless Creature: Wendy Whelan! Human Rights Score: A Film Music Documentary! STEP! A Shot in the Dark! All-American Family! Disability Rights Bending the Arc! A Shot in the Dark! Cradle! All-American Family! Edith + Eddie! Cradle! I Am Jane Doe! Dealt! The Prosecutors! I’ll Push You! Unrest! Pick of the Litter! LGBTQI Reengineering Sam! Served Like a Girl! In A Heartbeat! Unrest! The S Word: Opening the Conversation Stumped# About Suicide! Stumped! "2 Mental Health Awareness Sports Cradle! A Shot in the Dark! Served Like a Girl! All-American Family! The S Word: Opening the Conversation Baltimore Boys! About Suicide! Born to Lead: The Sal Aunese Story! The Work! Boston: The Documentary! Unrest! Down The Fence! We Breathe Again! Run Mama Run! Skid Row Marathon! The Natural World and Space Take Every Wave: The Life of Laird A Plastic Ocean! Hamilton Above and Beyond: NASA’s Journey to STEM Tomorrow! Frans Lanting: The Evolution of Life! Bombshell: The Hedy Lamarr Story! Mosquito! Dream Big:
    [Show full text]
  • Mobiquity / AWS
    Mobiquity / AWS Confidential information. Do not distribute. Internal use only. Mobiquity is about engagement. We are where the story begins. Ideas are born into the cloud by our team. ©2016 Mobiquity Inc. Proprietary and Confidential 2 Mobiquity at a Glance OFFICES Boston, MA (HQ) New York, NY 400+ Philadelphia, PA San Francisco, CA Employees Atlanta, GA Gainesville, FL Dallas, TX San Jose, Costa Rica Amsterdam, The Netherlands 5 London, England Ahmedabad, India Years in Business 200+ Design Capabilities Customers 100+ in F1K/G2K Enterprise Integration Capabilities ©2016 Mobiquity Inc. Proprietary and Confidential 3 The Continuous Innovation Loop We start wherever you are, plug into the loop wherever, we’ll innovate from there. More loops, more engagement, better outcomes. Design & Test & Support & Go To Strategy Blueprint Build Pilot DevOps Market Customer Success Program Data Drives Knowledge, Knowledge Leads Innovation, Innovation Creates Engagement, Engagement Makes Data... ©2016 Mobiquity Inc. Proprietary and Confidential 4 Healthcare Financial Services Retail Publishing / education Travel / Entertainment industrial / consumer Technology ©2016 Mobiquity Inc. Proprietary and Confidential 5 Mobiquity and AWS ● Premier status granted at re:Invent 2015 ● AWS Customer 5 years and Partner 2+ Partner ● Amazon Echo and Alexa Experience Network PREMIER CONSULTING PARTNER More Information: http://aws.amazon. com/partners/success/mobiquity/ Mobile Competency Healthcare Competency Life Sciences Competency Managed Service Partner ©2016 Mobiquity
    [Show full text]
  • AWS Certified Solution Architect - Associate
    AWS Certified Solution Architect - Associate Duration 3 Days Course Description: This is a customized & comprehensive program which begins with a day's introductory session about AWS Products, Services and Common Solutions. This will help learn the fundamentals of identifying AWS Services so that you can make informed decisions about IT Solutions based on business requirements. From Day-2, we will deep-dive into the advance architecture and design patterns used on the AWS infrastructure by performing labs. This is a complete hands-on program, Another aim of the program is to empower for taking the AWS Certified Solutions Architect exam – SAA-C00 and clear it. It is intended for learners who perform a solutions architect role and have one or more years of hands-on experience designing available, cost-efficient, fault-tolerant, and scalable distributed systems on AWS. Objective: To attain skills to clear AWS Solution Architect- Associate Certification Contents Day I (AWS Cloud Practitioner) Module 1: Introduction to Cloud Computing Introduction to Virtualization Overview of Cloud Computing Cloud Computing Benefits Cloud Computing Service & Deployment Models Module 2: Introduction & History to AWS Introduction to Amazon Web Services AWS Global Infrastructure Signing up for AWS Overview of AWS Services Introduction AWS Management Console Demo: Running through AWS Management Console Module 3: AWS Networking & Compute Service Identify different options Overview of VPC & VPN Overview of EC2 Creating EC2 Demo: Running through Creating EC2 Instance
    [Show full text]
  • Architecting for the Cloud AWS Best Practices
    Architecting for the Cloud AWS Best Practices February 2016 Amazon Web Services – Architecting for the Cloud: AWS Best Practices February 2016 © 2016, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational purposes only. It represents AWS’s current product offerings and practices as of the date of issue of this document, which are subject to change without notice. Customers are responsible for making their own independent assessment of the information in this document and any use of AWS’s products or services, each of which is provided “as is” without warranty of any kind, whether express or implied. This document does not create any warranties, representations, contractual commitments, conditions or assurances from AWS, its affiliates, suppliers or licensors. The responsibilities and liabilities of AWS to its customers are controlled by AWS agreements, and this document is not part of, nor does it modify, any agreement between AWS and its customers. Page 2 of 42 Amazon Web Services – Architecting for the Cloud: AWS Best Practices February 2016 Contents Abstract 4 Introduction 4 The Cloud Computing Difference 5 IT Assets Become Programmable Resources 5 Global, Available, and Unlimited Capacity 5 Higher Level Managed Services 5 Security Built In 6 Design Principles 6 Scalability 6 Disposable Resources Instead of Fixed Servers 10 Automation 14 Loose Coupling 15 Services, Not Servers 18 Databases 20 Removing Single Points of Failure 25 Optimize for Cost 30 Caching 33 Security 34 Conclusion 37 Contributors 38 Further Reading 38 Notes 39 Page 3 of 42 Amazon Web Services – Architecting for the Cloud: AWS Best Practices February 2016 Abstract This whitepaper is intended for solutions architects and developers who are building solutions that will be deployed on Amazon Web Services (AWS).
    [Show full text]
  • Comparing the Use of Amazon Dynamodb and Apache Hbase for Nosql
    Comparing the Use of Amazon DynamoDB and Apache HBase for NoSQL January 2020 Notices Customers are responsible for making their own independent assessment of the information in this document. This document: (a) is for informational purposes only, (b) represents current AWS product offerings and practices, which are subject to change without notice, and (c) does not create any commitments or assurances from AWS and its affiliates, suppliers or licensors. AWS products or services are provided “as is” without warranties, representations, or conditions of any kind, whether express or implied. The responsibilities and liabilities of AWS to its customers are controlled by AWS agreements, and this document is not part of, nor does it modify, any agreement between AWS and its customers. © 2020 Amazon Web Services, Inc. or its affiliates. All rights reserved. Contents Introduction .......................................................................................................................... 1 Amazon DynamoDB Overview............................................................................................ 2 Apache HBase Overview .................................................................................................... 3 Apache HBase Deployment Options .................................................................................. 3 Managed Apache HBase on Amazon EMR (Amazon S3 Storage Mode) ..................... 4 Managed Apache HBase on Amazon EMR (HDFS Storage Mode) .............................. 4 Self-Managed Apache
    [Show full text]
  • Bass Ackwards
    Selling Your Film Without Selling Your Soul presented by Prescreen: Case Studies in Hybrid, DIY and P2P Independent Distribution By The Film Collaborative (Orly Ravid & Jeffrey Winter), Jon Reiss, Sheri Candler Published by The Film Collaborative, 3405 Cazador Street, Los Angeles, CA 90065, www.thefilmcollaborative.org All Rights Reserved. Production Manager: David Averbach Video Editor: Samuael Topiary Trailer Editor: Gene Merker Cover and Interior Design by: David Averbach Copyeditor: Susan Lynn Camera: Jon Reiss, Jon Kendall Winter Copyright © 2011 by The Film Collaborative, Jon Reiss and Sheri Candler ISBN 978-0-9838229-8-1 [PDF Edition] www.sellingyourfilm.com Table of Contents Acknowledgments Foreword Introduction Bass Ackwards A New Path to Engage Film Audiences and Create Careers: An Introduction Ride the Divide Note by Note The Best and the Brightest Adventures of Power American: The Bill Hicks Story How do Niche Films find their Audiences? Using Peer to Peer (P2P) Methods to Distribute Film? List of Questions Given to Participating Filmmakers About the Authors Acknowledgments The Film Collaborative (TFC) is grateful to Sheri and Jon for their delightful collaboration. Many thanks to all our sponsors for their support and to all our case study subjects for their diligent and transparent participation: Ari Gold, Anne Bernstein, Paul Thomas, Matt Harlock, Tom Gustafson, Casper Andreas, Javier Fuentes, Daniel Karslake, and Thomas Woodrow. Thanks to New Video for offering numbers for Bass Ackwards. Gravitas for their help with Casper Andreas’ films and American: The Bill Hicks Story. Wolfe for their help with Undertow and Were the World Mine. Ted Hope for everything. David Averbach for over-delivering as usual.
    [Show full text]