Customer Evidences from MTC

Slides:



Advertisements
Similar presentations
Bring your own machines, connectivity, software, etc. Complete control Complete responsibility Static capabilities Upfront capital costs for the.
Advertisements

Eric Nelson Application Architect, Microsoft |
Application Internet Azure Cloud Internet Azure Cloud LB TDS (tcp) Applications use standard SQL client libraries: ODBC, ADO.Net, PHP, … Load balancer.
Building Scalable Cloud Applications David Aiken Windows Azure Technical Specialist Microsoft Corporation.
Windows Azure Migrating SQL Server Workloads Speaker Title Organization.
BUILDING HYBRID APPS WITH DYNAMICS CRM & WINDOWS AZURE Guy Riddle & George Doubinski Dynamics CRM MVP’s SESSION CODE: DEV-DYN-MID306 (c) 2011 Microsoft.
Windows Azure Networking & Active Directory Nasir (Muhammad Nasiruddin) Developer Evangelist - Azure Microsoft Corporation
PlacePlace TypeType ServiceService Analysis Caching Integration Sync Search Relational BLOB Query BackupLoad Multi Dim In Memory File XML Reporting.
Eric Nelson Developer Evangelist Microsoft UK | Lap around.
Subtitle color From Windows Azure From Outside Microsoft Datacenter From Windows Azure & Outside Microsoft Datacenter Application / Browser Windows.
Training Workshop Windows Azure Platform. Presentation Outline (hidden slide): Technical Level: 200 Intended Audience: Developers Objectives (what do.
Getting Started with Windows Azure Name Title Microsoft Corporation.
Application Internet Azure Cloud Internet Azure Cloud LB TDS (tcp) Applications use standard SQL client libraries: ODBC, ADO.Net, PHP, … Load balancer.
Azure Services Platform Update James Conard Sr. Director Developer & Platform Evangelism Microsoft Corporation.
Migrating an Enterprise Microsoft Product (TFS) on to Windows Azure Sriram Dhanasekaran SDE II, Microsoft.
Migrate SQL Server Apps to SQL Azure Cloud DB
Introduction to SQL Azure
1/26/2018 Hosting Windows Desktops and Applications Using Remote Desktop Services and Azure Windows Server Azure Resource Manager © 2014 Microsoft.
Run Azure Services in your datacenter
How to tune your applications before moving your database to Microsoft Azure SQL Database (MASD) OK, you've jumped into your Azure journey by creating.
TechReady 16 5/10/2018 Day 2, Session 4 Reaching the Summit: ITIL-integrated Self-Service in the Hybrid Cloud © 2013 Microsoft Corporation. All rights.
Build /26/2018 6:17 AM Building Resilient, Scalable Services with Microsoft Azure Service Fabric Érsek © 2015 Microsoft Corporation.
Business Continuity & Disaster Recovery
Data Platform and Analytics Foundational Training
Introduction to Windows Azure AppFabric
System Center Marketing
Lead SQL BankofAmerica Blog: SQLHarry.com
Tech·Ed North America /9/2018 6:56 PM
Windows Azure Cloud Visit – Ravindra verma.
Infrastructure Provisioning Kenon Owens Sr
Introduction to windows azure: windows azure, sql azure and app fabric
Building Applications with Windows Azure and SQL Azure
Design and Implement Cloud Data Platform Solutions
Exceedra + Azure Mark Rendle Principal Software Architect
Cloud Database Based on SQL Server 2012 Technologies
Business Continuity & Disaster Recovery
IaaS Part II Stefan Geiger Gerry
Microsoft Virtual Academy
Enterprise Modernization
Microsoft Azure P wer Lunch
Introduction to Windows Azure Web Sites
Windows Azure 講師: 李智樺, Ruddy Lee
Microsoft Virtual Academy
Microsoft Virtual Academy
Storing bits and bytes in the cloud
Microsoft Virtual Academy
microsoft cloud platform: enterprise-class architecture
Introduction to Building Applications with Windows Azure
M318.
Jim Nakashima Program Manager Cloud Tools
TechEd /15/2019 8:08 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
LitwareHR v2: an S+S reference application
Developing Advanced Applications with Windows Azure
Migrating your applications to Azure
Developing for Windows Azure
System Center Marketing
Windows Azure Overview
Service Template Creation from the Ground Up
04 | Performance and the Premium SKU
Building global and highly-available services using Windows Azure
Windows Azure Hybrid Architectures and Patterns
Service Template Creation from the Ground Up
A - E Cloud Enterprise Symbols
Day 2, Session 2 Connecting System Center to the Public Cloud
Making Windows Azure Relevant to IT Professionals
Microsoft Virtual Academy
New, Old or Pink - it is all good
Microsoft Virtual Academy
Microsoft Virtual Academy
Presentation transcript:

Customer Evidences from MTC SQL & Windows Azure Customer Evidences from MTC

Agenda Microsoft Cloud SQL Azure Overview Customer Cases SQL Azure Migration Considerations

Microsoft Cloud Services Power of Choice Microsoft Cloud Services Private Public SaaS Software as a Service Web Applications PaaS Platform as a Service AppFabric Dynamic Data Center Toolkit for Enterprises Dynamic Data Center Toolkit for Hosters IaaS Infra as a Service

“Typical” Azure Application Windows Azure Platform Your Application Your Data Web Site (ASPX, ASMX, WCF) Web Role (ASPX, WCF, PhP) Queues Blobs Tables LB Worker Service Worker Role Internet LB Your Relational Data Tables Views SPs Triggers

Case 1: Large SI Back-office App Offshore Employee Payment, Travel, Leave and Vacation management All web-based applications Integration Points: Authentication (2 factor) Reporting ERP And other few systems

Some on-premise integration have latency from few seconds to few hours. Database size at 700GB. Use NT services, SQL Jobs, Linked Databases, Messaging & Web services

Analysis Do they really need the entire Database? Lot of dependency on On-Premise systems with varying latencies Reporting (CTP Now) Will have to build a Federated system for 2-Factor Authentication (effort)

Conclusion Migrate-able DB size reduced to < 20 GB No partitioning or sharding required Only some critical portions of the system migrated Heavy on-premise dependency apps were left on premise Evaluated Service Bus but rejected it Lack of state persistence (now fixed)

Case 2: Web-based HR Software Multi-tenancy Database Size 5GB, grows to 40 GB Lot of Documents. Grow exponentially with DB Heavy ongoing customization results in frequent Schema changes Uses MSMQ Integration with SAP Other file and messages based integration

Usage of crystal reports, active reports Usage of NT Services, Web services

Analysis Moderate sized DB Lot of documents to be stored as Blobs Minor compatibility with SQL Azure Large cache to be migrated Documents storage size exceeds DB

Conclusion NT Services migrated to worker roles Email service migrated to worker roles Multi-Tenancy One DB per Customer Shared application instance (Minimal customization) Reports Active reports installed as startup task Crystal report – still being evaluated Integration with SAP/ERP Simple CSV extract(blob +worker role) On premise application was one per customer as applications were deployed to customer site. On the cloud they decide to share the application.

Case 3: Online Shopping (eCommerce) Max DB size 10GB Large asset(images/videos) store, up to 35GB Dynamic Scaling Custom handlers, rewrite rules Database driven site, lot of agent jobs running Integration with email services

Analysis Database size and growth is ideal for migration Email/Payment services Frequent application Updates SEO friendliness of the application Frequent SKU updates

Conclusion Assets can be abstracted behind blobs Database migration was smooth Email/Payment services integration required worker role Agent job migration to worker role Usage of CDN for static content Site is focussed on US/Europe Market

Evaluation criteria Pattern of on-demand scale Database size/Growth plan ALM Code change frequency DB Change frequence Schema and Data Added Latency Data transfer considerations ($$$) Query patterns Blobs Dynamic environment Authentication (DB based, Enterprise Identity)

Evaluation criteria Integration requirements (SAP, CRM, Other apps) Services (SMS, Email, Payment) Queue migration (if any) Dependency on MS Office Dependency on COM components Non MS components (Java etc.)

SQL Azure Network Topology Applications use standard SQL client libraries: ODBC, OLEDB, ADO.Net, … Application Internet Azure Cloud TDS (tcp) Load balancer forwards ‘sticky’ sessions to TDS protocol tier LB Security Boundary TDS (tcp) Gateway Gateway: Service protocol gateway, enforces AUTHN/AUTHZ policy; proxy to SQL nodes TDS (tcp) SQL Scalability and Availability: Fabric. Replication->Load balancing->Failover

Pragmatic Migration Steps Restore a database on SQL 2008 R2 Run SQL Azure Migration Wizard Fix identified compatibility issues Migrate the Schema (script) Migrate the Data (bcp, SSIS, Scripts) Change the connection string (for in premise app) Test Migrate the Application

Migrating SQL DB to SQL Azure Ensure every table has a Cluster Index SQL Authentication only Data transfer costs apply to DB migration ($$$) Test your migration on premise to minimize migration attempts ($$$) Throttling of SQL Azure ***** Usage of XML data

Corporate Firewalls/Proxies Verify Server Name resolves to IP via PING/TRACERT (don’t expect server response) Must open port 1433 outbound May require a corporate proxy server CorpNet Must have ISA Firewall Client installed (domain credentials) Proxy drops idle connections at 60 seconds 9/19/2018

Feature Limitations Supportability User Profiler/trace DMVs Catalog views DBCCs Performance Counters USE [database] BULK INSERT Service Broker SELECT INTO Encryption Backup/Restore Auditing Error Log Linked servers Extended stored procedures DTC Fulltext CLR Resource Governor sp_OA COM objects 9/19/2018

Throttling & Watchdogs Communication link failure Idle connections at the gateway Watchdog action when there is no active request Msg 40501: The service is currently busy. Retry the request after 10 seconds. Code: %d CPU Usage > 90 % IO Response Time Msg 40545: The service is experiencing a problem that is currently under investigation. Code: %d Msg 40549: Session is terminated. Reason: %ls. Long Running Transaction Long Running Query Locks Used Log Space Used All of these terminate the client connection! These may cause issues with ported apps & middle tier/framework code which don’t trap these & retry 9/19/2018

Migration tools Migration check Schema Data SQL Migration Wizard (codeplex) Schema SSMS Data BCP, sqlcmd, Roll-your-own (SqlBulkCopy API) SSIS Sync Framework

Azure Scaling Monitor Azure assets(Paraleap or newrelic or custom ) Provision Resources (more instances etc.) Deprovision What is the granularity Azure web/worker role (APIS available) Storage – 100 TB across queue/table/blob(get multiple accounts – plan for it) Database – Plan/design for scale

SQL Azure scaling Sharding Automatic scaling/Load Balancing Functionality based from app level Horizontal ( names with A-D on one server…) Joins FK Automatic scaling/Load Balancing Plan for scale Managing Throttling

Performance Issues WAN latency with “chatty” applications Commodity disk subsystem & throughput Can get better throughput if app partitions queries across multiple machines in parallel 9/19/2018

Learnings Azure provides availability SLA, performance SLA is user’s reponsibility Usage of network is ALWAYS charged Capacity planning (SAAS-ifying) Do not touch application with lot of integration points Look at legal requirements

© 2011 Microsoft Corporation. All rights reserved © 2011 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.