Using SQL Server on Amazon Web Services

Size: px
Start display at page:

Download "Using SQL Server on Amazon Web Services"

Transcription

1 Using SQL Server on Amazon Web Services High Availability and Reliability in the Cloud Michael Barras, Sr. Database Engineer August 26, , Amazon Web Services, Inc. or its Affiliates. All rights reserved.

2 The big question: Have you tried deploying 100 SQL Server database instances in a few minutes or doing a point in time restoration with a few clicks? Amazon Relational Database Service for Microsoft SQL Server (RDS SQL Server) Deployment, management and configuration at scale Deployment patterns, identity management Backup/restore & data movement

3 Key tenets for success SQL Server as Managed Service No Data Lock-in Automation, Configuration at Scale

4 Amazon Web Services (AWS)

5 What is AWS? Utility Computing A broad and deep platform helps customers build sophisticated, scalable applications

6 AWS lets you focus on your business 30% 70% Traditional Data Center Your Business Managing All of the Heavy Lifting AWS Cloud-based Services More Time to Focus on Your Business 70% Configuring Your Cloud Assets 30%

7 Increased agility has become the #1 reason businesses use the AWS cloud

8 The AWS global infrastructure 16 Regions Worldwide (+5 coming soon) Geographic areas where AWS services are available 44 Availability Zones (AZs) (+14) Multiple, isolated locations within a region Choose which regions and availability zones to deploy your workloads in

9 Breadth and depth of AWS services

10 No Data Lock-in SQL Server as Managed Service Automation, Configuration at Scale Awesome, how can I run SQL Server workloads on AWS?

11 Choose the best path for your needs

12 Choose the best path for your needs ü Managed physical infrastructure ü Managed DB install and backups ü Managed OS and patching ü Managed high availability and scaling ü Managed physical infrastructure ü Managed OS installation ü Managed scaling ü OS level control

13 Your responsibility App optimization, tuning Deployment Monitoring App optimization, tuning Deployment Monitoring High availability Backups DB & OS patching

14 Which one is right for you? Amazon RDS for SQL Server Consider RDS first Focus on: Business value tasks High-level tuning tasks Schema optimization Little in-house database expertise SQL Server on Amazon EC2 Need full control over: DB instance Replication Failover Clustering AlwaysOn Availability Groups Use options not in Amazon RDS

15 SQL Server features at a glance Amazon RDS for SQL Server SQL Server on Amazon EC2 Versions Supported: 2008 R2, 2012, 2014, 2016 All** Editions Supported: High Availability: Express, Web, Standard, Enterprise AWS-managed All** Self-managed; AlwaysOn, Mirror, Log Ship Encryption: Authentication: Encrypted Storage using AWS KMS (all editions); TDE Support Windows & SQL authentication Backups: Maintenance: Managed automated backups Automatic software patching Maintenance plans & 3 rd party tools Self-managed * Self-installed

16 No Data Lock-in SQL Server as Managed Service Automation, Configuration at Scale Deploying and operating SQL Server on AWS at scale using RDS for SQL Server

17 Deploy and manage SQL Server Multiple ways to start and manage your SQL Server resources using AWS Amazon RDS Management Console AWS Command Line Interface (CLI) or AWS Tools for PowerShell AWS SDKs AWS CloudFormation templates

18 Automating deployments Launch RDS DB Instance Programmatically New-RDSDBInstance -DBInstanceIdentifier "demo-sqlsrv" -DBInstanceClass "db.r3.large" -Engine "sqlserver-se" -EngineVersion " v1" -AllocatedStorage 200 -StorageType "gp2 -LicenseModel "license-included" -MultiAZ 1 -DBParameterGroupName "demo-2014se" -AutoMinorVersionUpgrade 1 -MonitoringInterval 15 -MonitoringRoleArn "arn:aws:iam:..." -BackupRetentionPeriod 35 -Domain "d-xxxxxxxxxx"-domainiamrolename "rds-ds-access-role" -DBSubnetGroupName "demo-subnets" -VpcSecurityGroupId "sg-xxxxxxxx -MasterUsername "demoadmin"-masteruserpassword "demopassword" -StorageEncrypted 1

19 Automating deployments Launch RDS DB Instance Programmatically New-RDSDBInstance -DBInstanceIdentifier "demo-sqlsrv" -DBInstanceClass "db.r3.large" -Engine "sqlserver-se" -EngineVersion " v1" -AllocatedStorage 200 -StorageType "gp2 -LicenseModel "license-included" General & Performance -MultiAZ 1 -DBParameterGroupName "demo-2014se" -AutoMinorVersionUpgrade 1 -MonitoringInterval 15 -MonitoringRoleArn "arn:aws:iam:..." -BackupRetentionPeriod 35 -Domain "d-xxxxxxxxxx"-domainiamrolename "rds-ds-access-role" -DBSubnetGroupName "demo-subnets" -VpcSecurityGroupId "sg-xxxxxxxx -MasterUsername "demoadmin"-masteruserpassword "demopassword" -StorageEncrypted 1

20 Automating deployments Launch RDS DB Instance Programmatically New-RDSDBInstance -DBInstanceIdentifier "demo-sqlsrv" -DBInstanceClass "db.r3.large" -Engine "sqlserver-se" -EngineVersion " v1" -AllocatedStorage 200 -StorageType "gp2 -LicenseModel "license-included" -MultiAZ 1 -DBParameterGroupName "demo-2014se" -AutoMinorVersionUpgrade 1 -MonitoringInterval 15 -MonitoringRoleArn "arn:aws:iam:..." -BackupRetentionPeriod 35 Reliability & Tuning -Domain "d-xxxxxxxxxx"-domainiamrolename "rds-ds-access-role" -DBSubnetGroupName "demo-subnets" -VpcSecurityGroupId "sg-xxxxxxxx -MasterUsername "demoadmin"-masteruserpassword "demopassword" -StorageEncrypted 1

21 Automating deployments Launch RDS DB Instance Programmatically New-RDSDBInstance -DBInstanceIdentifier "demo-sqlsrv" -DBInstanceClass "db.r3.large" -Engine "sqlserver-se" -EngineVersion " v1" -AllocatedStorage 200 -StorageType "gp2 -LicenseModel "license-included" -MultiAZ 1 -DBParameterGroupName "demo-2014se" -AutoMinorVersionUpgrade 1 -MonitoringInterval 15 -MonitoringRoleArn "arn:aws:iam:..." -BackupRetentionPeriod 35 -Domain "d-xxxxxxxxxx"-domainiamrolename "rds-ds-access-role" -DBSubnetGroupName "demo-subnets" -VpcSecurityGroupId "sg-xxxxxxxx -MasterUsername "demoadmin"-masteruserpassword "demopassword" -StorageEncrypted 1 Domain Membership

22 Automating deployments Launch RDS DB Instance Programmatically New-RDSDBInstance -DBInstanceIdentifier "demo-sqlsrv" -DBInstanceClass "db.r3.large" -Engine "sqlserver-se" -EngineVersion " v1" -AllocatedStorage 200 -StorageType "gp2 -LicenseModel "license-included" -MultiAZ 1 -DBParameterGroupName "demo-2014se" -AutoMinorVersionUpgrade 1 -MonitoringInterval 15 -MonitoringRoleArn "arn:aws:iam:..." -BackupRetentionPeriod 35 -Domain "d-xxxxxxxxxx"-domainiamrolename "rds-ds-access-role" -DBSubnetGroupName "demo-subnets" -VpcSecurityGroupId "sg-xxxxxxxx -MasterUsername "demoadmin"-masteruserpassword "demopassword" -StorageEncrypted 1 Networking & Security

23 No Data Lock-in SQL Server as Managed Service Automation, Configuration at Scale Planning for performance with RDS for SQL Server

24 Service-level performance factors RDS DB Instance Class Compute Capabilities Memory Capabilities Network Performance Storage Performance vcpus GB of RAM MB/s (Throughput) I/O Throughput RDS Storage Type

25 Scaling compute resources R3 Range of DB instance classes From: 1 vcpu and 1 GB of RAM To: 40 vcpus or 244 GB of RAM Grouped in instance families: Standard (db.m4) Memory (db.r3) Burst Capable (db.t2) Scale up or down by changing the instance class

26 Performance planning SQL Server workloads typically benefit from large amounts of memory (caching) Consider db.r3 - Memory Optimized instances Edition and licensing may impact DB instance class options DB instances can be modified to change the DB instance class Requires a reboot (or failover in Multi-AZ) Can scale compute capacity with the workload, if practical Storage cannot be scaled once deployed Plan for data set growth

27 Storage & I/O performance Amazon RDS Amazon EC2 Type Size Performance Size Performance Burst Capacity Pricing Model Magnetic Storage General Purpose (SSD) Provisioned IOPS (SSD) 20 GiB 1 TiB ~100 IOPS 1 GiB 1 TiB ~ 100 IOPS Yes, several hundred IOPS 20 GiB 4 16 TiB (min. 100 GiB recommended) 100 GiB 4 16 TiB (min. 200 GiB for Standard edition & up) 3 IOPS/GiB 1 GiB 16 TiB 3 IOPS/GiB for volumes 1 TiB or less, up to 10,000 IOPS for larger volumes Up to max. 20,000 IOPS 4 GiB 16 TiB Up to 20,000 IOPS Yes, up to 3000 IOPS per volume, subject to credits (< 1 TiB in size) No, fixed allocation Allocated storage; I/O operations Allocated storage Allocated storage; Provisioned IOPS

28 SQL Server as Managed Service High availability and reliability No Data Lock-in Automation, Configuration at Scale

29 Amazon RDS Multi-AZ Always run production workloads in Multi-AZ mode Primary and secondary DB nodes in different Availability Zones (AZ) Leverages SQL Server DB Mirroring Automatic failover (1 2 minutes typically) Requires 3 AZs (3rd AZ is for mirror witness) Consider: Impact on mirroring of change heavy workloads (for example, index rebuilds)

30 Amazon RDS Multi-AZ in depth Failure scenarios mitigated: Loss of availability in primary AZ Loss of network connectivity to principal DB node Compute unit or storage failure on principal DB node Failover process: Mirroring stopped Address apply debt Promote to master Change DNS endpoint Provision new secondary Consider: Implement retry logic at the application layer trigger manual failover to test

31 Monitoring SQL Server performance Monitor performance using Amazon CloudWatch Alarms & notifications: Amazon RDS & Amazon EC2 Default metrics: Amazon RDS & Amazon EC2 Custom metrics: Amazon EC2 CPU Utilization Read / Write IOPS Disk Queue Depth Memory (RDS) Storage Space (RDS) Connections (RDS) I/O Throughput (EC2) Use SQL Server Profiler & Tuning Advisor to trace query performance

32 Amazon RDS Enhanced Monitoring Overview: OS Level Monitoring Metrics 26 system and per process metrics Metrics delivered to CloudWatch Logs Up to 1 second granularity Compared to CloudWatch Metrics: Agent based metrics collections There can be differences with CloudWatch metrics due to collection source (hypervisor vs. agent) eg. CPU

33 Reliability Automated backup and recovery Maximum retention: 35 days Restore to any second, typically up to the last 5 minutes Full DB instance snapshots & restore Backup & Restore using.bak files Leverages SQL Server s native backup functionality Only full backups supported (no log shipping)

34 No Data Lock-in SQL Server as Managed Service Automation, Configuration at Scale Tuning and configuration management at scale

35 Manage the RDS SQL Server configuration Parameter Groups Centralized management of DB engine parameters Ability to consistently apply configurations to DB instances Auditability of configuration Sensible defaults work for most use cases Ability to create custom parameter groups Option Groups Used for enabling additional features Ability to create custom option groups Supported options: Transparent Data Encryption (TDE) in Enterprise Edition only S3 Backup & Restore

36 Customizing parameter groups

37 Customizing parameter groups Exercise Caution - Change at Your Own Risk! Not all parameters can be changed, some read only for visibility Dynamic (applied immediately) vs. Static (requires reboot) Fixed value, formula driven default, DB instance class dependent, interdependent for example: Parameter clr Enable (1) or disable (0) the common language runtime, default disabled (0). But if enabled, parameter lightweight pooling must be disabled (0) Parameter max server memory (mb) Memory allowed to be used by the server instance. Default based on instance class: {DBInstanceClassMemory}/ Parameter max worker threads Number of worker threads available for SQL Server processes. Default is 0 db engine computed based on formula: 512+ max(0, (vcpus-4)x16)

38 No Data Lock-in SQL Server as Managed Service Automation, Configuration at Scale Active Directory integration and deployment patterns

39 Using Windows Authentication Join RDS for SQL Server to a domain Domain provided by AWS Directory Services Directory as a managed service Deploy a Microsoft AD directory Fully managed AD forest Primary and secondary domain controllers in different AZs Ability to establish forest trusts

40 RDS for SQL Server deployment patterns Standalone DB Instance Microsoft AD integrated DB Instance Integration with existing Active Directory Infrastructure Hybrid onpremise and AWS deployment

41 Hybrid on-premise and AWS deployment Microsoft AD directory + on-prem AD Extend your internal network to AWS Private connectivity to your AWS VPC (VPN, DirectConnect) We recommend extending your AD deployment to AWS using secondary controllers in your VPC Establish Forest Trust between the existing AD and the Microsoft AD directory

42 No Data Lock-in SQL Server as Managed Service Automation, Configuration at Scale Networking and security with RDS SQL Server

43 Securing SQL Server on AWS: network 1 Amazon VPC: Control subnets, AZ specificity (DB subnet groups), route tables and NACLs 2 3 Security groups: Restrict instance traffic Public access: Avoid it or limit it VPC 4 Encrypt Traffic: Forced SSL supported

44 Securing SQL Server on AWS: data 1 Protect data at rest Encrypted DB instances using AWS KMS, TDE, column-level, encrypt before saving 2 Secure data in transit Encrypted connections via SSL, forced SSL supported

45 Securing SQL Server on AWS: access & audit Grant least privileges to applications and end users Control: Use AWS Identity and Access Management (IAM) to control instance lifecycle permissions, grant least privileges Audit: Use AWS CloudTrail to log AWS API invocations

46 No Data Lock-in SQL Server as Managed Service Automation, Configuration at Scale Enabling data access and movement

47 Amazon RDS SQL Server tooling Manage using common tools: SQL Server Management Studio, sqlcmd, etc. Data source or target only for SSAS, SSIS and SSRS Maximum 30 databases per Amazon RDS instance Amazon RDS does not provide desktop, Administrator or file-system access to DB instances Not supported: Maintenance Plans, Database Mail, MSDTC Limited support for Linked Servers available

48 Migrating data to & from Amazon RDS BAK File Save & Restore Leverages SQL Server s native backup functionality Microsoft SQL Server Database Publishing Wizard, Import/Export Export to T-SQL files, load using sqlcmd AWS Database Migration Service Minimize downtime during migrations, migrate between different DB platforms, Schema Conversion Tool AWS Marketplace Third-party data import and export tools and solutions

49 Thank You

50 More Information Microsoft SQL Server on AWS Deploying SQL Server on AWS (whitepaper) Amazon RDS for SQL Server Supported Features Implement Linked Servers with Amazon RDS Implementing Microsoft Windows Server Failover Clustering and SQL Server AlwaysOn Availability Groups in the AWS Cloud

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

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

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

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 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

Getting Started with AWS Security

Getting Started with AWS Security Getting Started with AWS Security Tomas Clemente Sanchez Senior Consultant Security, Risk and Compliance September 21st 2017 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Move

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

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

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

Using AWS Data Migration Service with RDS

Using AWS Data Migration Service with RDS Using AWS Data Migration Service with RDS INTRODUCTION AWS s Database Migration Service (DMS) is a managed service to help migrate existing data and replicate changes from on-premise databases to AWS s

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

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

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

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

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

Amazon Aurora Deep Dive

Amazon Aurora Deep Dive Amazon Aurora Deep Dive Kevin Jernigan, Sr. Product Manager Amazon Aurora PostgreSQL Amazon RDS for PostgreSQL May 18, 2017 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Agenda

More information

NGF0502 AWS Student Slides

NGF0502 AWS Student Slides NextGen Firewall AWS Use Cases Barracuda NextGen Firewall F Implementation Guide Architectures and Deployments Based on four use cases Edge Firewall Secure Remote Access Office to Cloud / Hybrid Cloud

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

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

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

Cloud security 2.0: Joko nyt pilveen voi luottaa?

Cloud security 2.0: Joko nyt pilveen voi luottaa? Cloud security 2.0: Joko nyt pilveen voi luottaa? www.nordcloud.com 11 04 2017 Helsinki 2 Teemu Lehtonen Senior Cloud architect, Security teemu.lehtonen@nordcloud.com +358 40 6329445 Nordcloud Finland

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

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved.

Database Level 100. Rohit Rahi November Copyright 2018, Oracle and/or its affiliates. All rights reserved. Database Level 100 Rohit Rahi November 2018 1 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Managing and Auditing Organizational Migration to the Cloud TELASA SECURITY

Managing and Auditing Organizational Migration to the Cloud TELASA SECURITY Managing and Auditing Organizational Migration to the Cloud 1 TELASA SECURITY About Me Brian Greidanus bgreidan@telasasecurity.com 18+ years of security and compliance experience delivering consulting

More information

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents Workshop Name Duration Objective Participants Entry Profile Training Methodology Setup Requirements Hardware and Software Requirements Training Lab Requirements Synergetics-Standard-SQL Server 2012-DBA-7

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

EBOOK: VMware Cloud on AWS: Optimized for the Next-Generation Hybrid Cloud

EBOOK: VMware Cloud on AWS: Optimized for the Next-Generation Hybrid Cloud EBOOK: VMware Cloud on AWS: Optimized for the Next-Generation Hybrid Cloud Contents Introduction... 3 What is VMware Cloud on AWS?... 5 Customer Benefits of Adopting VMware Cloud on AWS... 6 VMware Cloud

More information

Azure Webinar. Resilient Solutions March Sander van den Hoven Principal Technical Evangelist Microsoft

Azure Webinar. Resilient Solutions March Sander van den Hoven Principal Technical Evangelist Microsoft Azure Webinar Resilient Solutions March 2017 Sander van den Hoven Principal Technical Evangelist Microsoft DX @svandenhoven 1 What is resilience? Client Client API FrontEnd Client Client Client Loadbalancer

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

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

Compute - 36 PCPUs (72 vcpus) - Intel Xeon E5 2686 v4 (Broadwell) - 512GB RAM - 8 x 2TB NVMe local SSD - Dedicated Host vsphere Features - vsphere HA - vmotion - DRS - Elastic DRS Storage - ESXi boot-from-ebs

More information

Microsoft Best Practices on AWS

Microsoft Best Practices on AWS Microsoft Best Practices on AWS Julien Lépine, Solutions Architect, AWS EMEA September 22 nd, 2016 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Why Customers Choose AWS for Windows

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

6 Months Training Module in MS SQL SERVER 2012

6 Months Training Module in MS SQL SERVER 2012 6 Months Training Module in MS SQL SERVER 2012 Module 1 Installing and Configuring Windows Server 2012 Installing and Managing Windows Server 2012 Windows Server 2012 Overview Installing Windows Server

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

Azure SQL Database. Indika Dalugama. Data platform solution architect Microsoft datalake.lk

Azure SQL Database. Indika Dalugama. Data platform solution architect Microsoft datalake.lk Azure SQL Database Indika Dalugama Data platform solution architect Microsoft indalug@microsoft.com datalake.lk Agenda Overview Azure SQL adapts Azure SQL Instances (single,e-pool and MI) How to Migrate

More information

OnCommand Cloud Manager 3.2 Deploying and Managing ONTAP Cloud Systems

OnCommand Cloud Manager 3.2 Deploying and Managing ONTAP Cloud Systems OnCommand Cloud Manager 3.2 Deploying and Managing ONTAP Cloud Systems April 2017 215-12035_C0 doccomments@netapp.com Table of Contents 3 Contents Before you create ONTAP Cloud systems... 5 Logging in

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

SQL Server 2014 Training. Prepared By: Qasim Nadeem

SQL Server 2014 Training. Prepared By: Qasim Nadeem SQL Server 2014 Training Prepared By: Qasim Nadeem SQL Server 2014 Module: 1 Architecture &Internals of SQL Server Engine Module : 2 Installing, Upgrading, Configuration, Managing Services and Migration

More information

SQL Server Performance on AWS. October 2018

SQL Server Performance on AWS. October 2018 SQL Server Performance on AWS October 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

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

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

Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment

Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment Microsoft Windows Server Failover Clustering (WSFC) and SQL Server AlwaysOn Availability Groups on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer July 2014 Last updated: April 2015 (revisions)

More information

Architecting for Greater Security in AWS

Architecting for Greater Security in AWS Architecting for Greater Security in AWS Jonathan Desrocher Security Solutions Architect, Amazon Web Services. Guy Tzur Director of Ops, Totango. 2015, Amazon Web Services, Inc. or its affiliates. All

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

Advanced Architectures for Oracle Database on Amazon EC2

Advanced Architectures for Oracle Database on Amazon EC2 Advanced Architectures for Oracle Database on Amazon EC2 Abdul Sathar Sait Jinyoung Jung Amazon Web Services November 2014 Last update: April 2016 Contents Abstract 2 Introduction 3 Oracle Database Editions

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

Designing Database Solutions for Microsoft SQL Server (465)

Designing Database Solutions for Microsoft SQL Server (465) Designing Database Solutions for Microsoft SQL Server (465) Design a database structure Design for business requirements Translate business needs to data structures; de-normalize a database by using SQL

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

CogniFit Technical Security Details

CogniFit Technical Security Details Security Details CogniFit Technical Security Details CogniFit 2018 Table of Contents 1. Security 1.1 Servers........................ 3 1.2 Databases............................3 1.3 Network configuration......................

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

Microsoft SQL Server 2008 ADMINISTRATION. for ORACLE9 DBAs Microsoft SQL Server" 2008 ADMINISTRATION for ORACLE9 DBAs Contents Acknowledgments *v Introduction xvii Chapter 1 Introduction to the SQL Server Platform 1 SQLServer Editions 2 Premium Editions 3 Core

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

Confluence Data Center on the AWS Cloud

Confluence Data Center on the AWS Cloud Confluence Data Center on the AWS Cloud Quick Start Reference Deployment March 2017 Atlassian AWS Quick Start Reference Team Contents Overview... 2 Costs and Licenses... 2 Architecture... 3 Prerequisites...

More information

Microsoft SharePoint Server 2013 on the AWS Cloud: Quick Start Reference Deployment

Microsoft SharePoint Server 2013 on the AWS Cloud: Quick Start Reference Deployment Microsoft SharePoint Server 2013 on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer August 2014 Last updated: April 2015 (revisions) Table of Contents Abstract... 3 What We ll Cover... 4

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

Amazon Aurora Deep Dive

Amazon Aurora Deep Dive Amazon Aurora Deep Dive Enterprise-class database for the cloud Damián Arregui, Solutions Architect, AWS October 27 th, 2016 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Enterprise

More information

Hosting DesktopNow in Amazon Web Services. Ivanti DesktopNow powered by AppSense

Hosting DesktopNow in Amazon Web Services. Ivanti DesktopNow powered by AppSense Hosting DesktopNow in Amazon Web Services Ivanti DesktopNow powered by AppSense Contents Purpose of this Document... 3 Overview... 3 1 Non load balanced Amazon Web Services Environment... 4 Amazon Web

More information

Agenda. AWS Database Services Traditional vs AWS Data services model Amazon RDS Redshift DynamoDB ElastiCache

Agenda. AWS Database Services Traditional vs AWS Data services model Amazon RDS Redshift DynamoDB ElastiCache Databases on AWS 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 of Amazon Web Services,

More information

Exam : Implementing Microsoft Azure Infrastructure Solutions

Exam : Implementing Microsoft Azure Infrastructure Solutions Exam 70-533: Implementing Microsoft Azure Infrastructure Solutions Objective Domain Note: This document shows tracked changes that are effective as of January 18, 2018. Design and Implement Azure App Service

More information

How to Lift-and-Shift a Line of Business Application onto Google Cloud Platform

How to Lift-and-Shift a Line of Business Application onto Google Cloud Platform How to Lift-and-Shift a Line of Business Application onto Google Cloud Platform by Andy Wu, Solutions Architect, Magenic White Paper How to Lift-and-Shift a Line of Business Application onto Google Cloud

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

AWS Database Migration Service

AWS Database Migration Service AWS Database Migration Service Database Modernisation with Minimal Downtime John Winford Sr. Technical Program Manager May 18, 2017 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved.

More information

[MS10992]: Integrating On-Premises Core Infrastructure with Microsoft Azure

[MS10992]: Integrating On-Premises Core Infrastructure with Microsoft Azure [MS10992]: Integrating On-Premises Core Infrastructure with Microsoft Azure Length : 3 Days Audience(s) : IT Professionals Level : 300 Technology : Azure Delivery Method : Instructor-led (Classroom) Course

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

Microsoft Azure for AWS Experts

Microsoft Azure for AWS Experts Microsoft Azure for AWS Experts OD40390B; On-Demand, Video-based Course Description This course provides an in-depth discussion and practical hands-on training of Microsoft Azure Infrastructure Services

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

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

Deep Dive on Amazon Relational Database Service

Deep Dive on Amazon Relational Database Service Deep Dive on Amazon Relational Database Service Toby Knight - Manager, Solutions Architecture, AWS 28 June 2017 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. What to expect Amazon

More information

Course AZ-100T01-A: Manage Subscriptions and Resources

Course AZ-100T01-A: Manage Subscriptions and Resources Course AZ-100T01-A: Manage Subscriptions and Resources Module 1: Managing Azure Subscriptions In this module, you ll learn about the components that make up an Azure subscription and how management groups

More information

ADMINISTERING MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE

ADMINISTERING MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE 70-462 ADMINISTERING MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE Administering Microsoft SQL Server 2012/2014 Databases (70-462) WWW.ANALYTICSEXAM.COM Contents Administering Microsoft

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

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

Microsoft Exchange Server 2013 on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer

Microsoft Exchange Server 2013 on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer Microsoft Exchange Server 2013 on the AWS Cloud: Quick Start Reference Deployment Mike Pfeiffer January 2015 Last updated: September 2015 (revisions) Table of Contents What We ll Cover... 3 Quick Start

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

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database MOC 6232A: Implementing a Microsoft SQL Server 2008 Database Course Number: 6232A Course Length: 5 Days Course Overview This course provides students with the knowledge and skills to implement a Microsoft

More information

AWS Storage Gateway. Amazon S3. Amazon EFS. Amazon Glacier. Amazon EBS. Amazon EC2 Instance. storage. File Block Object. Hybrid integrated.

AWS Storage Gateway. Amazon S3. Amazon EFS. Amazon Glacier. Amazon EBS. Amazon EC2 Instance. storage. File Block Object. Hybrid integrated. AWS Storage Amazon EFS Amazon EBS Amazon EC2 Instance storage Amazon S3 Amazon Glacier AWS Storage Gateway File Block Object Hybrid integrated storage Amazon S3 Amazon Glacier Amazon EBS Amazon EFS Durable

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

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

Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008

Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Course Outline: Designing, Optimizing, and Maintaining a Database Administrative Solution for Microsoft SQL Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40hrs Overview: This

More information

Chapter 1: Introducing SQL Server

Chapter 1: Introducing SQL Server Leiter ftoc.tex V3-03/25/2009 1:31pm Page xv Introduction xxvii Chapter 1: Introducing SQL Server 2008 1 A Condensed History of SQL Server 1 In the Beginning 1 The Evolution of a Database 1 Microsoft Goes

More information

Citrix Workspace Cloud

Citrix Workspace Cloud Citrix Workspace Cloud Roger Bösch Citrix Systems International GmbH Workspace Cloud is a NEW Citrix Management and Delivery Platform Customers Now Have a Spectrum of Workspace Delivery Options Done By

More information

HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION

HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION Steve Bertoldi, Solutions Director, MarkLogic Agenda Cloud computing and on premise issues Comparison of traditional vs cloud architecture Review of use

More information

Hystax Acura. Cloud Migration and Disaster Recovery Solution. Hystax. All rights reserved. 1

Hystax Acura. Cloud Migration and Disaster Recovery Solution. Hystax. All rights reserved. 1 Hystax Acura Cloud Migration and Disaster Recovery Solution Hystax. All rights reserved. 1 www.hystax.com Overview Hystax is a cloud migration and Disaster Recovery company focusing on consistent replication

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

SQL Server Course Administering a SQL 2016 Database Infrastructure. Length. Prerequisites. Audience. Course Outline.

SQL Server Course Administering a SQL 2016 Database Infrastructure. Length. Prerequisites. Audience. Course Outline. SQL Server Course - 20764 Administering a SQL 2016 Database Infrastructure Length 5 days Prerequisites Basic knowledge of the Microsoft Windows operating system and its core functionality. Working knowledge

More information

20533B: Implementing Microsoft Azure Infrastructure Solutions

20533B: Implementing Microsoft Azure Infrastructure Solutions 20533B: Implementing Microsoft Azure Infrastructure Solutions Course Details Course Code: Duration: Notes: 20533B 5 days This course syllabus should be used to determine whether the course is appropriate

More information

Architecting Microsoft Azure Solutions (proposed exam 535)

Architecting Microsoft Azure Solutions (proposed exam 535) Architecting Microsoft Azure Solutions (proposed exam 535) IMPORTANT: Significant changes are in progress for exam 534 and its content. As a result, we are retiring this exam on December 31, 2017, and

More information

Course Outline. Developing Microsoft Azure Solutions Course 20532C: 4 days Instructor Led

Course Outline. Developing Microsoft Azure Solutions Course 20532C: 4 days Instructor Led Developing Microsoft Azure Solutions Course 20532C: 4 days Instructor Led About this course This course is intended for students who have experience building ASP.NET and C# applications. Students will

More information

Implementing Microsoft Azure Infrastructure Solutions

Implementing Microsoft Azure Infrastructure Solutions Implementing Microsoft Azure Infrastructure Solutions OD20533C; On-Demand, Video-based Course Description This course is intended for IT professionals who are familiar with managing on-premises IT deployments

More information

The Freedom to Choose

The Freedom to Choose Anat Dror The Freedom to Choose Choosing between SQL Server offerings Anat Dror SQL Server Expert, Quest SQL Server and DB2 domain expert with over 20 years of experience in a long list of IT related roles.

More information

Amazon Aurora Deep Dive

Amazon Aurora Deep Dive Amazon Aurora Deep Dive Anurag Gupta VP, Big Data Amazon Web Services April, 2016 Up Buffer Quorum 100K to Less Proactive 1/10 15 caches Custom, Shared 6-way Peer than read writes/second Automated Pay

More information

Relational Database Service. User Guide. Issue 05 Date

Relational Database Service. User Guide. Issue 05 Date Issue 05 Date 2017-02-08 Contents Contents 1 Introduction... 1 1.1 Concepts... 2 1.1.1 RDS... 2 1.1.2 DB Cluster... 2 1.1.3 DB Instance... 2 1.1.4 DB Backup... 3 1.1.5 DB Snapshot... 3 1.2 RDS DB Instances...

More information

SQL Server SQL Server 2008 and 2008 R2. SQL Server SQL Server 2014 Currently supporting all versions July 9, 2019 July 9, 2024

SQL Server SQL Server 2008 and 2008 R2. SQL Server SQL Server 2014 Currently supporting all versions July 9, 2019 July 9, 2024 Current support level End Mainstream End Extended SQL Server 2005 SQL Server 2008 and 2008 R2 SQL Server 2012 SQL Server 2005 SP4 is in extended support, which ends on April 12, 2016 SQL Server 2008 and

More information

Basic knowledge of the Microsoft Windows operating system and its core functionality.

Basic knowledge of the Microsoft Windows operating system and its core functionality. Administering Microsoft SQL Server Databases Course Description: This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2014 database. The

More information

Deep Dive on MySQL Databases on Amazon RDS. Chayan Biswas Sr. Product Manager Amazon RDS

Deep Dive on MySQL Databases on Amazon RDS. Chayan Biswas Sr. Product Manager Amazon RDS Deep Dive on MySQL Databases on Amazon RDS Chayan Biswas Sr. Product Manager Amazon RDS Amazon RDS is... Cloud native engine Open source engines Commercial engines RDS platform Automatic fail-over Backup

More information

Randy Pagels Sr. Developer Technology Specialist DX US Team AZURE PRIMED

Randy Pagels Sr. Developer Technology Specialist DX US Team AZURE PRIMED Randy Pagels Sr. Developer Technology Specialist DX US Team rpagels@microsoft.com AZURE PRIMED 2016.04.11 Interactive Data Analytics Discover the root cause of any app performance behavior almost instantaneously

More information

20532D: Developing Microsoft Azure Solutions

20532D: Developing Microsoft Azure Solutions 20532D: Developing Microsoft Azure Solutions Course Details Course Code: Duration: Notes: 20532D 5 days Elements of this syllabus are subject to change. About this course This course is intended for students

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

Crypto-Options on AWS. Bertram Dorn Specialized Solutions Architect Security/Compliance Network/Databases Amazon Web Services Germany GmbH

Crypto-Options on AWS. Bertram Dorn Specialized Solutions Architect Security/Compliance Network/Databases Amazon Web Services Germany GmbH Crypto-Options on AWS Bertram Dorn Specialized Solutions Architect Security/Compliance Network/Databases Amazon Web Services Germany GmbH Amazon.com, Inc. and its affiliates. All rights reserved. Agenda

More information

Deploying and Using ArcGIS Enterprise in the Cloud. Bill Major

Deploying and Using ArcGIS Enterprise in the Cloud. Bill Major Deploying and Using ArcGIS Enterprise in the Cloud Bill Major Quick Survey Your role in your organization - Developer? - Cloud Admin? Already a cloud user Running Esri deployment on AWS Running Esri deployment

More information