Amazon Web Services. Amazon Web Services

Size: px
Start display at page:

Download "Amazon Web Services. Amazon Web Services"

Transcription

1 Università degli Studi di Roma Tor Vergata Dipartimento di Ingegneria Civile e Ingegneria Informatica Amazon Web Services Corso di Sistemi Distribuiti e Cloud Computing A.A. 2016/17 Valeria Cardellini Amazon Web Services A broad set of services that provides developers with global compute, storage, database, and more advanced services, such as analytics, application and deployment services, messaging Mostly popular for IaaS services and primarily for its elastic compute service EC2 A market leader See 2016 Magic Quadrant for Cloud Infrastructure as a Service by Gartner See AWS analyst reports 1

2 Which services (partial list) Compute Networking & Content Delivery Elastic Compute Cloud (EC2) + - Virtual Private Cloud (VPC) Auto Scaling, Elastic Load Balancing - Route 53 EC2 Container Service - CloudFront Elastic Beanstalk Lambda Lightsail Storage Simple Storage Service (S3) Glacier Elastic File System (EFS) Database DynamoDB Messaging Relational Database Service (RDS) ElastiCache Management Tools CloudWatch Analytics - Elastic MapReduce (EMR) - Kinesis - Data Pipeline - Elasticsearch Service Artificial Intelligence - Machine Learning In red the services we ll see Simple Queue Service (SQS) Simple Notification Service (SNS) Application Services Elastic Transcoder Security, Identity & Compliance Identity and Access Management (IAM) 2 Full list of services from the dashboard 3

3 AWS global infrastructure AWS Regions aws.amazon.com/about-aws/globalinfrastructure/ Geographically dispersed (16 geographic regions) Current regions: US East (Northern Virginia, Ohio), US West (Oregon, Northern California), EU (Ireland, Frankfurt, London), Canada (Central), Asia Pacific (Singapore, Sydney, Tokyo, Seoul, Mumbai), South America (Sao Paulo), China (Beijing) Special AWS GovCloud region for US government agencies and customers (security issues!) Some services are global, i.e., do not require AWS region selection E.g., S3 is a global service Some services are not supported in all the regions See aws.amazon.com/about-aws/global-infrastructure/regional-productservices/ 4 Elastic Compute Cloud (EC2) Provides resizable compute capacity in the cloud Allows to increase/decrease capacity (start/stop instances) within seconds Multiple server instances can be launched simultaneously Instances can be configured for memory, number of vcpus, and storage by choosing T-shirt sizes Pricing: pay-per-use on hourly basis Guarantees complete control over instances Root SSH access, GUI, command line tools, APIs Offers advanced services Elastic Block Store (EBS) Elastic Load Balancer (ELB) CloudWatch + AutoScaling Elastic IP 5

4 EC2 instances: types Computing power of EC2 instances expressed as number of core and EC2 Compute Units (ECU) - 1 ECU = equivalent CPU capacity of a GHz 2007 Opteron or 2007 Xeon processor - See aws.amazon.com/ec2/pricing/ for pricing EC2 instance types aws.amazon.com/ec2/instance-types/ General-purpose (t2, m4, m3) Various T-shirt sizes : nano, micro, small, medium, large, xlarge, 2xlarge Micro instances: very low-cost instance option (included at no charge in AWS Free tier), providing a small amount of CPU resources (good choice for SDCC project development!) Compute optimized (c4, c3) medium, large, xlarge, 2xlarge, 4xlarge, 8xlarge (up to 36 vcpus) Memory optimized (x1, r4, r3) xlarge, 2xlarge, 4xlarge, 8xlarge (up to 1,952 GiB) Storage optimized (i3) xlarge, 2xlarge, 4xlarge, 8xlarge, 16xlarge (up to 8 x 1.9 TB SSD) GPU instances (NVIDIA GPUs) (p2, g2) xlarge, 8xlarge, 16xlarge (up to 16 GPUs) 6 EC2 instances: pricing On-demand instances Billing per-hour with no long-term commitments Read carefully the pricing: Pricing is per instance-hour consumed for each instance, from the time an instance is launched until it is terminated or stopped. Each partial instance-hour consumed will be billed as a full hour Reserved instances One-time payment to reserve an instance for 1 or 3 years Significant discount on hourly usage charge (up to 75%) Spot instances Enable users to bid for unused EC2 capacity Spot price fluctuates in real-time according to supply and demand Run whenever the user bid exceeds the current spot price Can be interrupted by Amazon Allow to lower computing costs for time-flexible, interruptiontolerant tasks 7

5 EC2 instances: pricing Spot instances (continue) Pricing history can be examined before bidding New opportunities for business: companies such as CloudCheckr and Flux7 (VyScale) offer new services for the spot instance market to optimize costs paid by AWS EC2 users 8 Amazon Machine Images Amazon Machine Images (AMIs) are templates from which it is possible to create a virtual machine Contain a software configuration, including an operating system Specified when launching an instance (first step) Created from scratch or bundled from existing EC2 instances Once created, stored in S3 and identified by a unique identifier Personal use Available to other users 9

6 EC2 locations Amazon EC2 is hosted in multiple locations world-wide (AWS Regions) Each region is completely independent Each region consists of one or more availability zones Availability Zones (AZ) Distinct locations in the same region engineered to be insulated from failures in other availability zones AZs in a region are connected through low-latency links Used to protect applications from failure of a single location 10 EC2 interface AWS management console Command Line Interface (CLI) API tools Third-party libraries E.g., boto: AWS SDK for Python (not only EC2) ec2.create_instances(imageid='<ami-image-id>', MinCount=1, MaxCount=5)! Third-party management frameworks 11

7 Elastic Block Store (EBS) Provides persistent block-level storage volumes for EC2 instances Off-instance storage that persists independently from the life of an EC2 instance EBS volumes from 1 GB to 1 TB EBS volume is automatically replicated within its AZ to avoid data loss EBS volume can be adapted as the needs of the applications change (capacity, performance, size) EBS volume can be used at instance s boot partition or attached to running instance EBS volumes attached only to instances in the same AZ 1 EBS volume attached to 1 instance at time (1-to-1), but N EBS volumes attached to a single instance (N-to-1) Can create point-in-time snapshots of volumes stored to S3 12 CloudWatch Provides monitoring for AWS resources (e.g., EC2 instances, DynamoDB tables) and applications running on AWS Used to collect and track metrics CloudWatch alarms send notifications or automatically make changes to monitored resources based on userdefined rules Useful also for cost monitoring E.g., to stop underused instances 13

8 CloudWatch concepts Metric Time-ordered set of data points PutMetricData API allows users to create custom metrics Statistics Metric data aggregated over specified periods of time Available statistics: min, max, sum, average, sample count Retrieved by GetMetricStatistics API Period Length of time associated with a specific CloudWatch statistic Measured in seconds, ranges from 60 (one minute) to (two weeks) Alarm Watches a single metric over a specified time period Performs one or more actions based on the value of the metric relative to a given threshold over a number of time periods 14 CloudWatch metrics EC2 metrics CPU utilization: CPUUTilization! Disk usage: DiskReadOps/DiskWriteOps, DiskReadBytes/DiskWriteBytes Data transfer: NetworkIn/NetworkOut! Elastic Load Balancing metrics Latency! RequestCount: number of completed requests! HealthyHostCount/UnHealthyHostCount: number of healthy/unhealthy instances in each Availability Zone! Count of HTTP response codes (2xx, 3xx, 4xx, 5xx) generated by Load Balancer or back-end instances 15

9 Command line interface Libraries CloudWatch interface Java,.NET, Python, Ruby, Node.js, CloudWatch API Amazon CloudWatch console (also for Android and IoS) 16 CloudWatch Alarms & Auto Scaling An alarm watches a single metric over a time period and performs one or more actions based on the value of the metric relative to a given threshold over a number of time periods Possible states: OK, ALARM, INSUFFICIENT_DATA! When an alarm changes its state, an action is invoked Auto Scaling policy Example Threshold = 3 minimum breach = 3 periods 17

10 Auto Scaling Auto Scaling allows to automatically scale EC2 capacity up or down based on user-defined policies, health status checks, and schedules, e.g., Dynamically based on conditions specified by user (e.g., increasing CPU utilization of the Amazon EC2 instance) Predictably according to a schedule defined by user (e.g., every Friday at 13:00:00). Enabled by Amazon CloudWatch Uses CloudWatch alarms Included with EC2 No additional fee 18 Auto Scaling policies Auto Scaling policy defines actions to take when an alarm state changes For every monitored event, 2 policies to be defined: Scale-in policy Scale-out policy Example: Scale-out: to add new Amazon EC2 instances in increments of 3 instances to the Auto Scaling Group when the average CPU utilization of the Amazon EC2 fleet goes above 70% Scale-in: to remove Amazon EC2 instances in the same increments when CPU Utilization falls below 10% 19

11 Auto Scaling policies (2) A policy can be created or updated using PutScalingPolicy API with parameters (some):! AdjustmentType: possible values are ChangeInCapacity, ExactCapacity, PercentChangeInCapacity! Cooldown: amount of time after a scaling activity completes and before the next scaling activity can start ScalingAdjustment: the amount of instances by which to scale (positive or negative) "ScaleUpPolicy" : {! "Type" : "AWS::AutoScaling::ScalingPolicy",! "Properties" : {! "AdjustmentType" : "ChangeInCapacity",! "AutoScalingGroupName" : { "Ref" : "asgroup" },! "Cooldown" : "1",! "ScalingAdjustment" : "1"! }! }! 20 Elastic Load Balancing (ELB) Automatically distributes incoming traffic across multiple EC2 instances 21

12 ELB features Detects unhealthy instances within a pool and automatically reroutes traffic to healthy instances Enabled across multiple availability zones within a region Not between availability zones in different regions! Uses a least loaded balancing policy Supports sticky sessions Load balancer generated HTTP cookies Application-generated HTTP cookies Supports HTTPS Enables the client to define an application health check for the instances through the following parameters: Threshold, Interval, Target, Timeout, UnhealthyThreshold! Provides APIs to add/remove instances RegisterInstancesWithLoadBalancer! DeregisterInstancesWithLoadBalancer! 22 EC2 and related services problems General problems No real-time billing Performance level of a single VM may be variable and there is very little guarantees regarding the performance of seemingly identical virtual machine instance; e.g., see Resource Provisioning of Web Applications in Heterogeneous Clouds Load balancing policy cannot be customized CloudWatch problems Metric variation over a time interval is missing Request count considers only the requests processed by the load balancer (system throughput behind the ELB) 23

13 EC2 Container service Provides container management service for Docker containers Allows the user to run applications (containerized microservices) on a managed cluster of EC2 instances API to launch and stop Docker-enabled applications, query the cluster state, and access many features (security groups, ELB, EBS volumes, and IAM roles) Integrated with Application Load Balancer Application-layer load balancing option ELB Allows you to define routing rules based on content across multiple services or containers running on EC2 instances No additional charge: the user pays for AWS resources (e.g. EC2 instances or EBS volumes) that creates to store and run the application 24 AWS Lambda Provides compute service that automatically runs the code without requiring the user to provision or manage servers Code for virtually any type of application or backend service Automatically scales the application by running code in response to each trigger Used to build serverless applications composed of functions that are triggered by events and to automatically deploy them using AWS CodePipeline and AWS CodeBuild Fine-grained billing: charged for every 100ms the code executes and the number of times the code is triggered 25

14 Elastic IP & Virtual Private Cloud Elastic IP IP address is not associated with a particular instance but with a user account The user controls an elastic IP address until she/he explicitly releases it Allows to mask instance or availability zone failures by quickly remapping the elastic IP address to another instance/ load balancer Virtual Private Cloud Enables enterprises to connect their existing infrastructure to a set of isolated AWS compute resources via a Virtual Private Network (VPN) connection 26 DNS service: Route 53 Highly available and scalable DNS service Routing queries to infrastructure running in AWS and outside AWS Authoritative DNS server that answers DNS queries with low latency by using a global network of DNS servers Queries are routed to the nearest DNS server through IP anycast Designed to automatically scale to handle very large query volumes without any human intervention Routing to AWS resources Latency-based routing: to the lowest-latency AWS endpoint available Weighted Round Robin: probabilistic selection based on statically assigned weight 27

15 Storage: Simple Storage Service (S3) Distributed, eventually consistent, key value data store Main features Insert, write, read, delete operations on objects up to 5 TB each Objects cannot be manipulated (renamed, modified, relocated) Objects are stored into buckets and retrieved via a unique key Flat structure, with no hierarchy as in a file system (e.g., buckets cannot be nested) The bucket region can be selected and related objects will not leave the region Accessible through REST interface Access control policies, as well as encryption for both secure transit and secure storage on disk Objects are redundantly stored across multiple facilities in an Amazon S3 Region PUT and COPY operations synchronously store data across multiple facilities before returning SUCCESS Data integrity regularly verified using checksum Reduced Redundancy Storage (RRS): storage option to reduce costs by storing data at lower levels of redundancy 28 Databases: DynamoDB Fully managed NoSQL database service that provides fast and predictable performance with seamless scalability Consistency model Eventually consistent reads (default) Strongly consistent reads Automatically spreads the table data and traffic over a sufficient number of servers to handle the request capacity specified by the customer and the amount of data stored, while maintaining consistent, fast performance Data items stored on SSDs and automatically replicated across multiple availability zones in a region Integration with Elastic MapReduce 29

16 Databases: RDS Relational DB (MySQL, Aurora, ) Automatic configuration, management (software patching, backup) and monitoring For MySQL, possible to associate one or more read replicas Read carefully the AWS pricing! Data transfer cost between AWS regions and out from RDS to Internet Remember that you always pay on per-hour basis even if you use the service only for 10 seconds! 30 ElastiCache Provides in-memory cache in the cloud to accelerate applications that rely on slower disk-based storage and databases Supports two open-source in-memory caching engines: Memcached: widely adopted memory object caching system Redis: popular open-source in-memory key-value store that supports data structures such as sorted sets and lists; ElastiCache supports master/ slave replication and Multi-AZ Cautions: consider trade-offs when caching query results (read/write ratio) 31

17 Content delivery: CloudFront Content delivery network on top of the Amazon distributed storage infrastructure Delivers static, dynamic and streaming content using a global network of edge replica servers Requests are routed to the closest edge replica through DNS redirection Objects organized in distributions A distribution identifies the origin server A distribution has a unique CloudFront.net domain name (e.g. mydistribution.cloudfront.net) An origin server is the location of the definitive version of an object This could be another ASW (S3 bucket, Amazon EC2 instance) or an external origin server With respect to other CDNs, pay-per-use pricing 32 Simple Queue Service (SQS) Provides message queuing service that enables asynchronous message based communication between distributed components of an application When a message is received, it becomes locked while being processed If the message processing fails, the lock will expire and the message will be available again 33

18 Big Data: Elastic MapReduce (EMR) Hadoop implementation of MapReduce running on Amazon EC2 Input and output: Amazon S3, DynamoDB Allows to implement data processing applications in many languages including Java, Python, and R Also open-source frameworks in the Hadoop ecosystem can be run on EMR Hive, Pig, HBase, Ganglia (monitoring), Impala (SQL query engine) and Hue (Hadoop UI) Also Spark and Flink Read carefully EMR pricing! You have to pay for: EMR + EC2 (at least medium size) + input/output (S3, DynamoDB) Enable auto-terminate to create a transient cluster 34 Big Data: Kinesis Cloud-based service for real-time data processing over large, distributed data streams Manages the infrastructure, storage, networking, and configuration needed for data stream processing, including data replication across three facilities in an AWS Region Input: events and log data from sources such as servers, desktops, mobile devices, sensors Output: emits aggregated data to other AWS services: S3, EMR and Lambda 35

19 Data Pipeline A web service to reliably process and move data between different AWS compute and storage services, as well as on-premise data sources, at specified intervals 36 Elastic Beanstalk Allows to deploy and manage applications leveraging AWS services (EC2, S3, ELB, Auto Scaling, ElastiCache, SQS) but without the need to manage the corresponding services Supports multiple application environments: Docker, Python, PHP, Node.js,.NET, Ruby, and Java Features Allows to simply and quickly create and manage applications through the console When the developer creates the application environment, Elastic Beanstalk provisions the resources required to run it Allows the developer to customize and configure the environment Environment monitoring Pricing: no additional charge for Elastic Beanstalk, the user pays only for the underlying AWS resources that the application consumes 37

20 Example: Web application on AWS 38 How to obtain your AWS grant Apply to the AWS Educate program See instructions in the specific and follow them! Two main portals: Learning and training material console.aws.amazon.com/console/home Console for AWS cloud services Redeem the credit code before using AWS! Be careful: when your credit expires, your credit card will be charged Check the list of AWS services that are included in the grant How to increase your grant GitHub Student Developer Pack 39

21 AWS Free Tier In addition to your grant AWS Free Tier includes: Services with a free tier available for 12 months following your AWS sign-up date Additional service offers that do not automatically expire at the end of your 12 month AWS Free Tier term See aws.amazon.com/free/ 40 Monitoring AWS usage and costs Various methods, including: Check the pricing of each service (also AWS Price List API) Use CloudWatch to monitor charges with alerts and notifications Create a BillingAlarm Use Cost Explorer from the AWS dashboard See Monitoring AWS usage and costs 41

22 Avoiding unexpected charges Check the pricing of each service before using it! - aws.amazon.com/pricing/services/ - E.g., db.r3.8xlarge for RDS: $4.64 per hour (or fraction of hour) - Some services have linked costs, because services can be launched by other services (e.g., EMR and EC2) - Consider also data transfer pricing (e.g., S3) Stop or terminate unused EC2 instances Stop: you can start the instance again later, but you might be charged for storage Terminate: you permanently delete the instance Deregister unused AMIs Release unused elastic IP addresses See Avoiding Unexpected Charges 42 Avoiding unexpected charges (2) Do not put your secret access keys on GitHub! Protect your access keys Do not have an access key for your root account See Best Practices for Managing AWS Access Keys 43

23 Some useful links AWS Documentation aws.amazon.com/documentation/ AWS Articles & Tutorials aws.amazon.com/articles AWS Instructional Videos and Labs aws.amazon.com/training/intro_series/ AWS Educate site 44

Amazon Web Services. Amazon Web Services

Amazon Web Services. Amazon Web Services Università degli Studi di Roma Tor Vergata Dipartimento di Ingegneria Civile e Ingegneria Informatica Amazon Web Services Corso di Sistemi Distribuiti e Cloud Computing A.A. 2013/14 Valeria Cardellini

More information

BERLIN. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved

BERLIN. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved BERLIN 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Building Multi-Region Applications Jan Metzner, Solutions Architect Brian Wagner, Solutions Architect 2015, Amazon Web Services,

More information

CIT 668: System Architecture. Amazon Web Services

CIT 668: System Architecture. Amazon Web Services CIT 668: System Architecture Amazon Web Services Topics 1. AWS Global Infrastructure 2. Foundation Services 1. Compute 2. Storage 3. Database 4. Network 3. AWS Economics Amazon Services Architecture Regions

More information

ARCHITECTING WEB APPLICATIONS FOR THE CLOUD: DESIGN PRINCIPLES AND PRACTICAL GUIDANCE FOR AWS

ARCHITECTING WEB APPLICATIONS FOR THE CLOUD: DESIGN PRINCIPLES AND PRACTICAL GUIDANCE FOR AWS ARCHITECTING WEB APPLICATIONS FOR THE CLOUD: DESIGN PRINCIPLES AND PRACTICAL GUIDANCE FOR AWS Dr Adnene Guabtni, Senior Research Scientist, NICTA/Data61, CSIRO Adnene.Guabtni@csiro.au EC2 S3 ELB RDS AMI

More information

Security Aspekts on Services for Serverless Architectures. Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance

Security Aspekts on Services for Serverless Architectures. Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance Security Aspekts on Services for Serverless Architectures Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance Agenda: Security in General Services in Scope Aspects of Services for

More information

Expected Learning Outcomes Introduction To AWS

Expected Learning Outcomes Introduction To AWS Introduction To AWS Expected Learning Outcomes Introduction To AWS Understand What Cloud Computing Is Discover Why Companies Are Adopting AWS Understand How AWS Can Help Your Explore AWS Services Apply

More information

Amazon Web Services (AWS) Solutions Architect Intermediate Level Course Content

Amazon Web Services (AWS) Solutions Architect Intermediate Level Course Content Amazon Web Services (AWS) Solutions Architect Intermediate Level Course Content Introduction to Cloud Computing A Short history Client Server Computing Concepts Challenges with Distributed Computing Introduction

More information

WHITEPAPER AMAZON ELB: Your Master Key to a Secure, Cost-Efficient and Scalable Cloud.

WHITEPAPER AMAZON ELB: Your Master Key to a Secure, Cost-Efficient and Scalable Cloud. WHITEPAPER AMAZON ELB: Your Master Key to a Secure, Cost-Efficient and Scalable Cloud www.cloudcheckr.com TABLE OF CONTENTS Overview 3 What Is ELB? 3 How ELB Works 4 Classic Load Balancer 5 Application

More information

How can you implement this through a script that a scheduling daemon runs daily on the application servers?

How can you implement this through a script that a scheduling daemon runs daily on the application servers? You ve been tasked with implementing an automated data backup solution for your application servers that run on Amazon EC2 with Amazon EBS volumes. You want to use a distributed data store for your backups

More information

Amazon Web Services Training. Training Topics:

Amazon Web Services Training. Training Topics: Amazon Web Services Training Training Topics: SECTION1: INTRODUCTION TO CLOUD COMPUTING A Short history Client Server Computing Concepts Challenges with Distributed Computing Introduction to Cloud Computing

More information

AWS 101. Patrick Pierson, IonChannel

AWS 101. Patrick Pierson, IonChannel AWS 101 Patrick Pierson, IonChannel What is AWS? Amazon Web Services (AWS) is a secure cloud services platform, offering compute power, database storage, content delivery and other functionality to help

More information

CS15-319: Cloud Computing. Lecture 3 Course Project and Amazon AWS Majd Sakr and Mohammad Hammoud

CS15-319: Cloud Computing. Lecture 3 Course Project and Amazon AWS Majd Sakr and Mohammad Hammoud CS15-319: Cloud Computing Lecture 3 Course Project and Amazon AWS Majd Sakr and Mohammad Hammoud Lecture Outline Discussion On Course Project Amazon Web Services 2 Course Project Course Project Phase I-A

More information

Scaling on AWS. From 1 to 10 Million Users. Matthias Jung, Solutions Architect

Scaling on AWS. From 1 to 10 Million Users. Matthias Jung, Solutions Architect Berlin 2015 Scaling on AWS From 1 to 10 Million Users Matthias Jung, Solutions Architect AWS @jungmats How to Scale? lot of results not the right starting point What is the right starting point? First

More information

AWS Administration. Suggested Pre-requisites Basic IT Knowledge

AWS Administration. Suggested Pre-requisites Basic IT Knowledge Course Description Amazon Web Services Administration (AWS Administration) course starts your Cloud Journey. If you are planning to learn Cloud Computing and Amazon Web Services in particular, then this

More information

Designing Fault-Tolerant Applications

Designing Fault-Tolerant Applications Designing Fault-Tolerant Applications Miles Ward Enterprise Solutions Architect Building Fault-Tolerant Applications on AWS White paper published last year Sharing best practices We d like to hear your

More information

Better, Faster, Stronger web apps with Amazon Web Services. Senior Technology Evangelist, Amazon Web Services

Better, Faster, Stronger web apps with Amazon Web Services. Senior Technology Evangelist, Amazon Web Services Better, Faster, Stronger web apps with Amazon Web Services Simone Brunozzi ( @simon ) Senior Technology Evangelist, Amazon Web Services (from the previous presentation) Knowledge starts from great questions.

More information

Amazon Web Services. Foundational Services for Research Computing. April Mike Kuentz, WWPS Solutions Architect

Amazon Web Services. Foundational Services for Research Computing. April Mike Kuentz, WWPS Solutions Architect Amazon Web Services Foundational Services for Research Computing Mike Kuentz, WWPS Solutions Architect April 2017 2015, Amazon Web Services, Inc. or its Affiliates. All rights reserved. AWS Global Infrastructure

More information

Amazon Web Services 101 April 17 th, 2014 Joel Williams Solutions Architect. Amazon.com, Inc. and its affiliates. All rights reserved.

Amazon Web Services 101 April 17 th, 2014 Joel Williams Solutions Architect. Amazon.com, Inc. and its affiliates. All rights reserved. Amazon Web Services 101 April 17 th, 2014 Joel Williams Solutions Architect Amazon.com, Inc. and its affiliates. All rights reserved. Learning about Cloud Computing with AWS What is Cloud Computing and

More information

Amazon Web Services. Block 402, 4 th Floor, Saptagiri Towers, Above Pantaloons, Begumpet Main Road, Hyderabad Telangana India

Amazon Web Services. Block 402, 4 th Floor, Saptagiri Towers, Above Pantaloons, Begumpet Main Road, Hyderabad Telangana India (AWS) Overview: AWS is a cloud service from Amazon, which provides services in the form of building blocks, these building blocks can be used to create and deploy various types of application in the cloud.

More information

AWS_SOA-C00 Exam. Volume: 758 Questions

AWS_SOA-C00 Exam. Volume: 758 Questions Volume: 758 Questions Question: 1 A user has created photo editing software and hosted it on EC2. The software accepts requests from the user about the photo format and resolution and sends a message to

More information

AWS Solutions Architect Associate (SAA-C01) Sample Exam Questions

AWS Solutions Architect Associate (SAA-C01) Sample Exam Questions 1) A company is storing an access key (access key ID and secret access key) in a text file on a custom AMI. The company uses the access key to access DynamoDB tables from instances created from the AMI.

More information

Training on Amazon AWS Cloud Computing. Course Content

Training on Amazon AWS Cloud Computing. Course Content Training on Amazon AWS Cloud Computing Course Content 15 Amazon Web Services (AWS) Cloud Computing 1) Introduction to cloud computing Introduction to Cloud Computing Why Cloud Computing? Benefits of Cloud

More information

Security & Compliance in the AWS Cloud. Amazon Web Services

Security & Compliance in the AWS Cloud. Amazon Web Services Security & Compliance in the AWS Cloud Amazon Web Services Our Culture Simple Security Controls Job Zero AWS Pace of Innovation AWS has been continually expanding its services to support virtually any

More information

PrepAwayExam. High-efficient Exam Materials are the best high pass-rate Exam Dumps

PrepAwayExam.   High-efficient Exam Materials are the best high pass-rate Exam Dumps PrepAwayExam http://www.prepawayexam.com/ High-efficient Exam Materials are the best high pass-rate Exam Dumps Exam : SAA-C01 Title : AWS Certified Solutions Architect - Associate (Released February 2018)

More information

Enroll Now to Take online Course Contact: Demo video By Chandra sir

Enroll Now to Take online Course   Contact: Demo video By Chandra sir Enroll Now to Take online Course www.vlrtraining.in/register-for-aws Contact:9059868766 9985269518 Demo video By Chandra sir www.youtube.com/watch?v=8pu1who2j_k Chandra sir Class 01 https://www.youtube.com/watch?v=fccgwstm-cc

More information

Security & Compliance in the AWS Cloud. Vijay Rangarajan Senior Cloud Architect, ASEAN Amazon Web

Security & Compliance in the AWS Cloud. Vijay Rangarajan Senior Cloud Architect, ASEAN Amazon Web Security & Compliance in the AWS Cloud Vijay Rangarajan Senior Cloud Architect, ASEAN Amazon Web Services @awscloud www.cloudsec.com #CLOUDSEC Security & Compliance in the AWS Cloud TECHNICAL & BUSINESS

More information

Amazon Web Services (AWS) Training Course Content

Amazon Web Services (AWS) Training Course Content Amazon Web Services (AWS) Training Course Content SECTION 1: CLOUD COMPUTING INTRODUCTION History of Cloud Computing Concept of Client Server Computing Distributed Computing and it s Challenges What is

More information

Introduction to Amazon Cloud & EC2 Overview

Introduction to Amazon Cloud & EC2 Overview Introduction to Amazon Cloud & EC2 Overview 2015 Amazon Web Services, Inc. and its affiliates. All rights served. May not be copied, modified, or distributed in whole or in part without the express consent

More information

At Course Completion Prepares you as per certification requirements for AWS Developer Associate.

At Course Completion Prepares you as per certification requirements for AWS Developer Associate. [AWS-DAW]: AWS Cloud Developer Associate Workshop Length Delivery Method : 4 days : Instructor-led (Classroom) At Course Completion Prepares you as per certification requirements for AWS Developer Associate.

More information

We are ready to serve Latest IT Trends, Are you ready to learn? New Batches Info

We are ready to serve Latest IT Trends, Are you ready to learn? New Batches Info We are ready to serve Latest IT Trends, Are you ready to learn? New Batches Info START DATE : TIMINGS : DURATION : TYPE OF BATCH : FEE : FACULTY NAME : LAB TIMINGS : Storage & Database Services : Introduction

More information

DISTRIBUTED SYSTEMS [COMP9243] Lecture 8a: Cloud Computing WHAT IS CLOUD COMPUTING? 2. Slide 3. Slide 1. Why is it called Cloud?

DISTRIBUTED SYSTEMS [COMP9243] Lecture 8a: Cloud Computing WHAT IS CLOUD COMPUTING? 2. Slide 3. Slide 1. Why is it called Cloud? DISTRIBUTED SYSTEMS [COMP9243] Lecture 8a: Cloud Computing Slide 1 Slide 3 ➀ What is Cloud Computing? ➁ X as a Service ➂ Key Challenges ➃ Developing for the Cloud Why is it called Cloud? services provided

More information

AWS Solution Architect Associate

AWS Solution Architect Associate AWS Solution Architect Associate 1. Introduction to Amazon Web Services Overview Introduction to Cloud Computing History of Amazon Web Services Why we should Care about Amazon Web Services Overview of

More information

Introduction to Cloud Computing

Introduction to Cloud Computing You will learn how to: Build and deploy cloud applications and develop an effective implementation strategy Leverage cloud vendors Amazon EC2 and Amazon S3 Exploit Software as a Service (SaaS) to optimize

More information

ActiveNET. #202, Manjeera Plaza, Opp: Aditya Park Inn, Ameerpetet HYD

ActiveNET. #202, Manjeera Plaza, Opp: Aditya Park Inn, Ameerpetet HYD ActiveNET #202, Manjeera Plaza, Opp: Aditya Park Inn, Ameerpetet HYD-500018 9848111288 activesurya@ @gmail.com wwww.activenetinformatics.com y Suryanaray yana By AWS Course Content 1. Introduction to Cloud

More information

2013 AWS Worldwide Public Sector Summit Washington, D.C.

2013 AWS Worldwide Public Sector Summit Washington, D.C. Washington, D.C. AWS Service Drill Downs Mark Ryland Chief Solutions Architect, Worldwide Public Sector Deployment & Administration Application Services Compute Storage Database Networking AWS Global Infrastructure

More information

About Intellipaat. About the Course. Why Take This Course?

About Intellipaat. About the Course. Why Take This Course? About Intellipaat Intellipaat is a fast growing professional training provider that is offering training in over 150 most sought-after tools and technologies. We have a learner base of 600,000 in over

More information

LINUX, WINDOWS(MCSE),

LINUX, WINDOWS(MCSE), Virtualization Foundation Evolution of Virtualization Virtualization Basics Virtualization Types (Type1 & Type2) Virtualization Demo (VMware ESXi, Citrix Xenserver, Hyper-V, KVM) Cloud Computing Foundation

More information

AWS: Basic Architecture Session SUNEY SHARMA Solutions Architect: AWS

AWS: Basic Architecture Session SUNEY SHARMA Solutions Architect: AWS AWS: Basic Architecture Session SUNEY SHARMA Solutions Architect: AWS suneys@amazon.com AWS Core Infrastructure and Services Traditional Infrastructure Amazon Web Services Security Security Firewalls ACLs

More information

SAA-C01. AWS Solutions Architect Associate. Exam Summary Syllabus Questions

SAA-C01. AWS Solutions Architect Associate. Exam Summary Syllabus Questions SAA-C01 AWS Solutions Architect Associate Exam Summary Syllabus Questions Table of Contents Introduction to SAA-C01 Exam on AWS Solutions Architect Associate... 2 AWS SAA-C01 Certification Details:...

More information

Cloud and Storage. Transforming IT with AWS and Zadara. Doug Cliche, Storage Solutions Architect June 5, 2018

Cloud and Storage. Transforming IT with AWS and Zadara. Doug Cliche, Storage Solutions Architect June 5, 2018 Cloud and Storage Transforming IT with AWS and Zadara Doug Cliche, Storage Solutions Architect June 5, 2018 What sets AWS apart? Security Fine-grained control Service Breadth & Depth; pace of innovation

More information

Amazon Web Services and Feb 28 outage. Overview presented by Divya

Amazon Web Services and Feb 28 outage. Overview presented by Divya Amazon Web Services and Feb 28 outage Overview presented by Divya Amazon S3 Amazon S3 : store and retrieve any amount of data, at any time, from anywhere on web. Amazon S3 service: Create Buckets Create

More information

HPE Digital Learner AWS Certified SysOps Administrator (Intermediate) Content Pack

HPE Digital Learner AWS Certified SysOps Administrator (Intermediate) Content Pack Content Pack data sheet HPE Digital Learner AWS Certified SysOps Administrator (Intermediate) Content Pack HPE Content Pack number Content Pack length Content Pack category Learn more CP017 20 Hours Category

More information

Managing IoT and Time Series Data with Amazon ElastiCache for Redis

Managing IoT and Time Series Data with Amazon ElastiCache for Redis Managing IoT and Time Series Data with ElastiCache for Redis Darin Briskman, ElastiCache Developer Outreach Michael Labib, Specialist Solutions Architect 2016, Web Services, Inc. or its Affiliates. All

More information

Amazon AWS-DevOps-Engineer-Professional Exam

Amazon AWS-DevOps-Engineer-Professional Exam Volume: 173 Questions Question: 1 What method should I use to author automation if I want to wait for a CloudFormation stack to finish completing in a script? A. Event subscription using SQS. B. Event

More information

Cloud Analytics and Business Intelligence on AWS

Cloud Analytics and Business Intelligence on AWS Cloud Analytics and Business Intelligence on AWS Enterprise Applications Virtual Desktops Sharing & Collaboration Platform Services Analytics Hadoop Real-time Streaming Data Machine Learning Data Warehouse

More information

Cloud Computing /AWS Course Content

Cloud Computing /AWS Course Content Cloud Computing /AWS Course Content 1. Amazon VPC What is Amazon VPC? How to Get Started with Amazon VPC Create New VPC Launch an instance (Server) to use this VPC Security in Your VPC Networking in Your

More information

What is Cloud Computing? What are the Private and Public Clouds? What are IaaS, PaaS, and SaaS? What is the Amazon Web Services (AWS)?

What is Cloud Computing? What are the Private and Public Clouds? What are IaaS, PaaS, and SaaS? What is the Amazon Web Services (AWS)? What is Cloud Computing? What are the Private and Public Clouds? What are IaaS, PaaS, and SaaS? What is the Amazon Web Services (AWS)? What is Amazon Machine Image (AMI)? Amazon Elastic Compute Cloud (EC2)?

More information

PracticeDump. Free Practice Dumps - Unlimited Free Access of practice exam

PracticeDump.   Free Practice Dumps - Unlimited Free Access of practice exam PracticeDump http://www.practicedump.com Free Practice Dumps - Unlimited Free Access of practice exam Exam : AWS-Developer Title : AWS Certified Developer - Associate Vendor : Amazon Version : DEMO Get

More information

Aurora, RDS, or On-Prem, Which is right for you

Aurora, RDS, or On-Prem, Which is right for you Aurora, RDS, or On-Prem, Which is right for you Kathy Gibbs Database Specialist TAM Katgibbs@amazon.com Santa Clara, California April 23th 25th, 2018 Agenda RDS Aurora EC2 On-Premise Wrap-up/Recommendation

More information

Cloud Providers more AWS, Aneka

Cloud Providers more AWS, Aneka Basics of Cloud Computing Lecture 6 Cloud Providers more AWS, Aneka and GAE Satish Srirama Outline More AWS Some more PaaS Aneka Google App Engine Force.com 16.05.2012 Satish Srirama 2/51 Recap Last lecture

More information

Getting started with AWS security

Getting started with AWS security Getting started with AWS security Take a prescriptive approach Stella Lee Manager, Enterprise Business Development $ 2 0 B + R E V E N U E R U N R A T E (Annualized from Q4 2017) 4 5 % Y / Y G R O W T

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme LHC2384BU VMware Cloud on AWS A Technical Deep Dive Ray Budavari @rbudavari Frank Denneman - @frankdenneman #VMworld #LHC2384BU Disclaimer This presentation may contain product features that are currently

More information

Microservices on AWS. Matthias Jung, Solutions Architect AWS

Microservices on AWS. Matthias Jung, Solutions Architect AWS Microservices on AWS Matthias Jung, Solutions Architect AWS Agenda What are Microservices? Why Microservices? Challenges of Microservices Microservices on AWS What are Microservices? What are Microservices?

More information

Amazon AWS-Solution-Architect-Associate Exam

Amazon AWS-Solution-Architect-Associate Exam Volume: 858 Questions Question: 1 You are trying to launch an EC2 instance, however the instance seems to go into a terminated status immediately. What would probably not be a reason that this is happening?

More information

Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014

Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014 Cloudera s Enterprise Data Hub on the Amazon Web Services Cloud: Quick Start Reference Deployment October 2014 Karthik Krishnan Page 1 of 20 Table of Contents Table of Contents... 2 Abstract... 3 What

More information

Overview of AWS Security - Database Services

Overview of AWS Security - Database Services Overview of AWS Security - Database Services June 2016 (Please consult http://aws.amazon.com/security/ for the latest version of this paper) 2016, Amazon Web Services, Inc. or its affiliates. All rights

More information

SAP VORA 1.4 on AWS - MARKETPLACE EDITION FREQUENTLY ASKED QUESTIONS

SAP VORA 1.4 on AWS - MARKETPLACE EDITION FREQUENTLY ASKED QUESTIONS SAP VORA 1.4 on AWS - MARKETPLACE EDITION FREQUENTLY ASKED QUESTIONS 1. What is SAP Vora? SAP Vora is an in-memory, distributed computing solution that helps organizations uncover actionable business insights

More information

Srinath Vaddepally.

Srinath Vaddepally. Cloud Computing Srinath Vaddepally CEO & Founder Srinath.Vaddepally@ristcall.com Cell : (816) 728 2134 www.ristcall.com Agenda Automation testing Cloud Computing Motivation factors from Distributed systems

More information

Fault-Tolerant Computer System Design ECE 695/CS 590. Putting it All Together

Fault-Tolerant Computer System Design ECE 695/CS 590. Putting it All Together Fault-Tolerant Computer System Design ECE 695/CS 590 Putting it All Together Saurabh Bagchi ECE/CS Purdue University ECE 695/CS 590 1 Outline Looking at some practical systems that integrate multiple techniques

More information

High School Technology Services myhsts.org Certification Courses

High School Technology Services myhsts.org Certification Courses AWS Associate certification training Last updated on June 2017 a- AWS Certified Solutions Architect (40 hours) Amazon Web Services (AWS) Certification is fast becoming the must have certificates for any

More information

Oracle WebLogic Server 12c on AWS. December 2018

Oracle WebLogic Server 12c on AWS. December 2018 Oracle WebLogic Server 12c on AWS December 2018 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational purposes only. It represents

More information

MarkLogic Cloud Service Pricing & Billing Effective: October 1, 2018

MarkLogic Cloud Service Pricing & Billing Effective: October 1, 2018 MarkLogic Cloud Service Pricing & Billing Effective: October 1, 2018 MARKLOGIC DATA HUB SERVICE PRICING COMPUTE AND QUERY CAPACITY MarkLogic Data Hub Service capacity is measured in MarkLogic Capacity

More information

How to go serverless with AWS Lambda

How to go serverless with AWS Lambda How to go serverless with AWS Lambda Roman Plessl, nine (AWS Partner) Zürich, AWSomeDay 12. September 2018 About myself and nine Roman Plessl Working for nine as a Solution Architect, Consultant and Leader.

More information

BERLIN. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved

BERLIN. 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved BERLIN 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Amazon Aurora: Amazon s New Relational Database Engine Carlos Conde Technology Evangelist @caarlco 2015, Amazon Web Services,

More information

Amazon ElastiCache. User Guide API Version

Amazon ElastiCache. User Guide API Version Amazon ElastiCache User Guide Amazon ElastiCache: User Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. AWS services or capabilities described in AWS Documentation

More information

What s New at AWS? A selection of some new stuff. Constantin Gonzalez, Principal Solutions Architect, Amazon Web Services

What s New at AWS? A selection of some new stuff. Constantin Gonzalez, Principal Solutions Architect, Amazon Web Services What s New at AWS? A selection of some new stuff Constantin Gonzalez, Principal Solutions Architect, Amazon Web Services Speed of Innovation AWS Pace of Innovation AWS has been continually expanding its

More information

Security on AWS(overview) Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance

Security on AWS(overview) Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance Security on AWS(overview) Bertram Dorn EMEA Specialized Solutions Architect Security and Compliance Agenda: Overview AWS Regions Availability Zones Shared Responsibility Security Features Best Practices

More information

CIT 668: System Architecture

CIT 668: System Architecture CIT 668: System Architecture Amazon Web Services II Topics 1. Elastic Block Service (EBS) 2. Simple Storage Service (S3) 3. CloudFront 4. CloudWatch (and AutoScaling) 5. Simple Notification Service (SNS)

More information

Amazon CloudWatch. Developer Guide API Version

Amazon CloudWatch. Developer Guide API Version Amazon CloudWatch Developer Guide Amazon CloudWatch: Developer Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. The following are trademarks of Amazon Web Services,

More information

Amazon. Exam Questions AWS-Certified-Solutions-Architect- Professional. AWS-Certified-Solutions-Architect-Professional.

Amazon. Exam Questions AWS-Certified-Solutions-Architect- Professional. AWS-Certified-Solutions-Architect-Professional. Amazon Exam Questions AWS-Certified-Solutions-Architect- Professional AWS-Certified-Solutions-Architect-Professional Version:Demo 1.. The MySecureData company has five branches across the globe. They want

More information

Microservices Architekturen aufbauen, aber wie?

Microservices Architekturen aufbauen, aber wie? Microservices Architekturen aufbauen, aber wie? Constantin Gonzalez, Principal Solutions Architect glez@amazon.de, @zalez 30. Juni 2016 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved.

More information

The Orion Papers. AWS Solutions Architect (Associate) Exam Course Manual. Enter

The Orion Papers. AWS Solutions Architect (Associate) Exam Course Manual. Enter AWS Solutions Architect (Associate) Exam Course Manual Enter Linux Academy Keller, Texas United States of America March 31, 2017 To All Linux Academy Students: Welcome to Linux Academy's AWS Certified

More information

Introduction to Amazon Web Services. Jeff Barr Senior AWS /

Introduction to Amazon Web Services. Jeff Barr Senior AWS / Introduction to Amazon Web Services Jeff Barr Senior AWS Evangelist @jeffbarr / jbarr@amazon.com What Does It Take to be a Global Online Retailer? The Obvious Part And the Not-So Obvious Part How Did

More information

Cloud Computing ECPE 276. AWS Hosted Services

Cloud Computing ECPE 276. AWS Hosted Services Cloud Computing ECPE 276 AWS Hosted Services 2 Compute 3 Compute Options 1. Amazon Elas2c Compute Cloud (EC2) 2. Amazon Lambda (λ) 3. Amazon Elas2c Bean Stalk (EBS) 4. Other services 1. ElasDc Load Balancing

More information

DevOps Tooling from AWS

DevOps Tooling from AWS DevOps Tooling from AWS What is DevOps? Improved Collaboration - the dropping of silos between teams allows greater collaboration and understanding of how the application is built and deployed. This allows

More information

EE 660: Computer Architecture Cloud Architecture: IaaS

EE 660: Computer Architecture Cloud Architecture: IaaS EE 660: Computer Architecture Cloud Architecture: IaaS Yao Zheng Department of Electrical Engineering University of Hawaiʻi at Mānoa Based on the slides of Prof. Roy Campbell & Prof Reza Farivar Agenda

More information

AWS Interview Questions and Answers

AWS Interview Questions and Answers AWS Interview Questions and Answers AWS Interview Questions and Answers AWS Certified Solutions Architect Drives to the 15 Top Paying IT Certifications. Absolutely, AWS Solution Architect position is an

More information

Introduction to Database Services

Introduction to Database Services Introduction to Database Services Shaun Pearce AWS Solutions Architect 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Today s agenda Why managed database services? A non-relational

More information

Automating Elasticity. March 2018

Automating Elasticity. March 2018 Automating Elasticity March 2018 2018, 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

More information

Introducing Amazon Elastic File System (EFS)

Introducing Amazon Elastic File System (EFS) Introducing Amazon Elastic File System (EFS) Danilo Poccia, Technical Evangelist, AWS @danilop 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Goals and expectations for this session

More information

Cloud Computing. Amazon Web Services (AWS)

Cloud Computing. Amazon Web Services (AWS) Cloud Computing What is Cloud Computing? Benefit of cloud computing Overview of IAAS, PAAS, SAAS Types Of Cloud private, public & hybrid Amazon Web Services (AWS) Introduction to Cloud Computing. Introduction

More information

Security: Michael South Americas Regional Leader, Public Sector Security & Compliance Business Acceleration

Security: Michael South Americas Regional Leader, Public Sector Security & Compliance Business Acceleration Security: A Driving Force Behind Moving to the Cloud Michael South Americas Regional Leader, Public Sector Security & Compliance Business Acceleration 2017, Amazon Web Services, Inc. or its affiliates.

More information

Pass4test Certification IT garanti, The Easy Way!

Pass4test Certification IT garanti, The Easy Way! Pass4test Certification IT garanti, The Easy Way! http://www.pass4test.fr Service de mise à jour gratuit pendant un an Exam : SOA-C01 Title : AWS Certified SysOps Administrator - Associate Vendor : Amazon

More information

Werden Sie ein Teil von Internet der Dinge auf AWS. AWS Enterprise Summit 2015 Dr. Markus Schmidberger -

Werden Sie ein Teil von Internet der Dinge auf AWS. AWS Enterprise Summit 2015 Dr. Markus Schmidberger - Werden Sie ein Teil von Internet der Dinge auf AWS AWS Enterprise Summit 2015 Dr. Markus Schmidberger - schmidbe@amazon.de Internet of Things is the network of physical objects or "things" embedded with

More information

EXAM - AWS-Solution-Architect- Associate. AWS Certified Solutions Architect - Associate. Buy Full Product

EXAM - AWS-Solution-Architect- Associate. AWS Certified Solutions Architect - Associate. Buy Full Product Amazon EXAM - AWS-Solution-Architect- Associate AWS Certified Solutions Architect - Associate Buy Full Product http://www.examskey.com/aws-solution-architect- Associate.html Examskey Amazon AWS-Solution-Architect-Associate

More information

TestkingPass. Reliable test dumps & stable pass king & valid test questions

TestkingPass.   Reliable test dumps & stable pass king & valid test questions TestkingPass http://www.testkingpass.com Reliable test dumps & stable pass king & valid test questions Exam : AWS-Solutions-Architect- Associate Title : AWS Certified Solutions Architect - Associate Vendor

More information

AWS Service Drill Downs

AWS Service Drill Downs AWS Public Sector Jerusalem 19 Nov 2014! AWS Service Drill Downs Leo Zhadanovsky Senior Solu*ons Architect @leozh Deployment & Administration Application Services Compute Storage Networking Database AWS

More information

Use Case: Scalable applications

Use Case: Scalable applications Use Case: Scalable applications 1. Introduction A lot of companies are running (web) applications on a single machine, self hosted, in a datacenter close by or on premise. The hardware is often bought

More information

Splunk & AWS. Gain real-time insights from your data at scale. Ray Zhu Product Manager, AWS Elias Haddad Product Manager, Splunk

Splunk & AWS. Gain real-time insights from your data at scale. Ray Zhu Product Manager, AWS Elias Haddad Product Manager, Splunk Splunk & AWS Gain real-time insights from your data at scale Ray Zhu Product Manager, AWS Elias Haddad Product Manager, Splunk Forward-Looking Statements During the course of this presentation, we may

More information

Introduction to Amazon Web Services

Introduction to Amazon Web Services Introduction to Amazon Web Services Introduction Amazon Web Services (AWS) is a collection of remote infrastructure services mainly in the Infrastructure as a Service (IaaS) category, with some services

More information

Document Sub Title. Yotpo. Technical Overview 07/18/ Yotpo

Document Sub Title. Yotpo. Technical Overview 07/18/ Yotpo Document Sub Title Yotpo Technical Overview 07/18/2016 2015 Yotpo Contents Introduction... 3 Yotpo Architecture... 4 Yotpo Back Office (or B2B)... 4 Yotpo On-Site Presence... 4 Technologies... 5 Real-Time

More information

AWS Well Architected Framework

AWS Well Architected Framework AWS Well Architected Framework What We Will Cover The Well-Architected Framework Key Best Practices How to Get Started Resources Main Pillars Security Reliability Performance Efficiency Cost Optimization

More information

Exam Questions AWS-Certified- Developer-Associate

Exam Questions AWS-Certified- Developer-Associate Exam Questions AWS-Certified- Developer-Associate Amazon AWS Certified Developer Associate https://www.2passeasy.com/dumps/aws-certified- Developer-Associate/ 1. When using Amazon SQS how much data can

More information

Serverless Computing. Redefining the Cloud. Roger S. Barga, Ph.D. General Manager Amazon Web Services

Serverless Computing. Redefining the Cloud. Roger S. Barga, Ph.D. General Manager Amazon Web Services Serverless Computing Redefining the Cloud Roger S. Barga, Ph.D. General Manager Amazon Web Services Technology Triggers Highly Recommended http://a16z.com/2016/12/16/the-end-of-cloud-computing/ Serverless

More information

AWS Solution Architecture Patterns

AWS Solution Architecture Patterns AWS Solution Architecture Patterns Objectives Key objectives of this chapter AWS reference architecture catalog Overview of some AWS solution architecture patterns 1.1 AWS Architecture Center The AWS Architecture

More information

Serverless Architecture Hochskalierbare Anwendungen ohne Server. Sascha Möllering, Solutions Architect

Serverless Architecture Hochskalierbare Anwendungen ohne Server. Sascha Möllering, Solutions Architect Serverless Architecture Hochskalierbare Anwendungen ohne Server Sascha Möllering, Solutions Architect Agenda Serverless Architecture AWS Lambda Amazon API Gateway Amazon DynamoDB Amazon S3 Serverless Framework

More information

AWS Lambda: Event-driven Code in the Cloud

AWS Lambda: Event-driven Code in the Cloud AWS Lambda: Event-driven Code in the Cloud Dean Bryen, Solutions Architect AWS Andrew Wheat, Senior Software Engineer - BBC April 15, 2015 London, UK 2015, Amazon Web Services, Inc. or its affiliates.

More information

ArcGIS 10.3 Server on Amazon Web Services

ArcGIS 10.3 Server on Amazon Web Services ArcGIS 10.3 Server on Amazon Web Services Copyright 1995-2016 Esri. All rights reserved. Table of Contents Introduction What is ArcGIS Server on Amazon Web Services?............................... 5 Quick

More information

Amazon Aurora Relational databases reimagined.

Amazon Aurora Relational databases reimagined. Amazon Aurora Relational databases reimagined. Ronan Guilfoyle, Solutions Architect, AWS Brian Scanlan, Engineer, Intercom 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Current

More information

Introduction to Amazon Cloud & EC2 Overview

Introduction to Amazon Cloud & EC2 Overview Introduction to Amazon Cloud & EC2 Overview 2017 Amazon Web Services, Inc. and its affiliates. All rights served. May not be copied, modified, or distributed in whole or in part without the express consent

More information