Meet Tejaswi Redkar Director of Business Programs, Microsoft –Solutions Architect focused on everything cloud –Dirty hands from 100+ solutions.

Slides:



Advertisements
Similar presentations
Introduction to SQL Azure March 31, 2015 John Deardurff Website:
Advertisements

Web RoleWorker Role At runtime each Role will execute on one or more instances A role instance is a set of code, configuration, and local data, deployed.
Nick Scott | Dynamics CRM Consultant with BKD Technologies.
BUILDING HYBRID APPS WITH DYNAMICS CRM & WINDOWS AZURE Guy Riddle & George Doubinski Dynamics CRM MVP’s SESSION CODE: DEV-DYN-MID306 (c) 2011 Microsoft.
Getting Started with Windows Azure Name Title Microsoft Corporation.
Business Solutions Using Microsoft ® Office SharePoint ® Server ROADSHOW.
Operating System for the Cloud Runs applications in the cloud Provides Storage Application Management Windows Azure ideal for applications needing:
Windows Azure Migrating Applications and Workloads Speaker Title Organization.
Azure Services Platform Update James Conard Sr. Director Developer & Platform Evangelism Microsoft Corporation.
customer.
AUTOMATING DAAS DESKTOPS WITH CITRIX CORTEX Tony Sanchez WW Alliances Solutions Architecture Citrix Systems Inc SESSION CODE: CLI415 (c) 2011 Microsoft.
Integration in the Cloud Overview Relay Topic/Queues BizTalk Services (preview)
Windows Azure SQL Data Sync Name Title Microsoft Corporation.
06 | Debugging and Deploying on Azure Stacey Mulcahy | Technical Evangelist Rami Sayar | Technical Evangelist.
Office 365 Performance Management. Meet Paul Andrew Office 365 Technical Product Manager – Office 365 datacenter, networking, identity management.
05 | Debugging and Deploying on Azure Stacey Mulcahy | Technical Evangelist Rami Sayar | Technical Evangelist.
04 | Business Analyzer Brian Meier| Senior Lead Program Manager.
Demo Fest of Some Leading Store Apps Module 2.
SharePoint Online Hybrid Troubleshooting Tips and Tricks Manas Biswas Sr. Support Escalation Engineer, SharePoint Online Escalation Services Microsoft.
Microsoft Virtual Academy. Microsoft Virtual Academy First HalfSecond Half (01) Introduction to Microsoft Virtualization(05) Hyper-V Management (02) Hyper-V.
IT Operations Management
Building AD-SQL-APP Server on AZURE
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.
Deployment Planning Services
Microsoft Virtual Academy
Introduction to Windows Azure AppFabric
Microsoft Office SharePoint Server 2007 Enterprise Search
Microsoft Virtual Academy
Microsoft Azure: The only consistent Hybrid Cloud
6/17/2018 5:54 AM OSP322 Getting the best of both worlds, making the most of SharePoint hybrid search solutions Shyam Narayan Microsoft © 2013 Microsoft.
IT Operations Management
Windows Azure Pack : Express Installation
Microsoft Dynamics NAV 2018 – what’s new
Design and Implement Cloud Data Platform Solutions
9/13/2018 © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks.
Exceedra + Azure Mark Rendle Principal Software Architect
Microsoft Azure P wer Lunch
Melbourne Azure Meetup
SharePoint Online Management and Control
Architecting For Device Independent Delivery
Microsoft Virtual Academy
Enterprise Modernization
Introduction to Windows Azure Web Sites
Windows Azure 講師: 李智樺, Ruddy Lee
The Challenges of moving Document Creation to the Cloud
Microsoft Virtual Academy
Microsoft Virtual Academy
06 | Case Studies James Chambers | Author, Microsoft ASP.NET/IIS MVP
Web Site Web App Web API microsoftazurepass.com
SPC2012 – IT-Pro 11/30/2018 © 2012 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
TechEd /4/2018 3:19 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Agenda OAuth Concepts Programming OAuth.
Jim Nakashima Program Manager Cloud Tools
TechEd /11/ :54 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered.
TechEd /15/2019 8:08 PM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Office 365 Development.
Surviving identity management in a hybrid world
2/27/2019 © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks.
Developing for Windows Azure
Windows Azure Overview
07 | Lightning Round James Chambers | Author, Microsoft ASP.NET/IIS MVP Tejaswi Redkar | Author, Director of Business Programs (AppPlat)
Windows Azure Hybrid Architectures and Patterns
07 | Introduction to Authentication
Microsoft Virtual Academy
Microsoft Virtual Academy
Erik Porter Program Manager ASP.NET Microsoft Corporation
Microsoft Virtual Academy
Azure AD Simon May Technical Evangelist.
Microsoft Virtual Academy
VNet and Cross-Premises Connectivity
Presentation transcript:

Meet Tejaswi Redkar Director of Business Programs, Microsoft –Solutions Architect focused on everything cloud –Dirty hands from 100+ solutions on Windows Azure –Worked on Windows Azure since its inception –WW App Plat Community Director Author, Developer, Community Lead –Author of several books – latest Windows Azure Web SitesWindows Azure Web Sites –Creator of Dynamic Deploy – – on Windows Azure App Deploymentshttp://blog.dynamicdeploy.com –Creator of StorageCopy

Website Capability Model Migrating Music Store Web App Hybrid Music Store Overview

Website Capability Model

List of core technical capabilities required by a website Website Capability Model

Identity The authentication and authorization mechanism required by the website. Session Management The mechanism used for storing and sharing session information in a web-farm. Caching Specifies caching requirements of a website. Data Storage Specifies the relational and non-relational data storage requirements of a website. UX User Experience requirements of a website. Runtime Any specific application runtime requirements such as.NET 4.5 or PHP 5.4. Data Security at rest Specifies requirements for securely storing data in relational and non-relational data storage. Data Security in transit Specifies requirements for securely transferring data over the network.

Load-balancing Specifies load-balancing requirements when running a website in a farm Scale-up Specifies the scale-up requirements when scaling a website to meet capacity demand. Scale-out Specifies the scale-out requirements when scaling a website to meet capacity demand. Monitoring Specifies the monitoring requirements for operating a website Geo- deployment Specifies the requirement for deploying a website in multiple data centers around the world. CDN Specifies the requirement for caching static content in a CDN. Message Bus Specifies whether a website requires to communicate with a message bus. Integration Specifies any integration and external API dependencies of a website.

Configuration Management Specifies how and where the configuration of a website is managed. Search Specifies the search functionality requirement of a website. Analytics Specifies if a website needs to track usage analytics. E-commerce Specifies the E-commerce requirements for a website.

Music Store Web App

An E-commerce SAMPLE website

Architecture

Website Capability Model for Music Store

Future State Architecture

Basic Search Concept

ElasticSearch Concepts elasticsearch-concepts.htmlhttp:// elasticsearch-concepts.html

Music Store Search Conceptual Architecture

Deploying ElasticSearch Virtual Machine using dynamicdeploy.com Step-by-step procedure Deploy page

2 Deployment Options Free 1 VM 2-node cluster with membership

Step-by-step procedure for adding search to Music Store is addressed in Ch. 7 of my book.

Album Ingestion //Add the assembly reference to NEST using Nest; //... //Define a ReIndex Action public ActionResult ReIndex() { //Retrieve the elasticsearch Uri from //configuration string elasticSearchUri = ConfigurationManager.AppSettings ["elasticsearchUri"]; //Create a connection settings object with the //Uri var setting = new ConnectionSettings(new Uri(elasticSearchUri)); //Create a new ElasticClient object with the //connection settings var client = new ElasticClient(setting); //Retrieve theindex name from configuration string elasticsearchindexname = ConfigurationManager.AppSettings ["elasticsearchindexname"]; //For each album call the Index() function foreach (var album in db.Albums) { client.Index(album, elasticsearchindexname, "albums", album.AlbumId); } //Redirect back to the Index() action return RedirectToAction("Index"); }

Index

Browse public ActionResult Browse(string genre) { var result = ElasticClient.Search (body => body.Query(query => query.ConstantScore( csq => csq.Filter(filter => filter.Term(x => x.Genre.Name, genre.ToLower())))).Take(1000)); var genreModel = new Genre() { Name = genre, Albums = result.Documents.ToList() }; return View(genreModel); }

Demo: Music Store Search & Browse using ElasticSearch Head:

Deploy Piwik VM

Piwik Tracking Code Snippet var pkBaseURL = ((" == document.location.protocol) ? " : " document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E")); try { var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 1); piwikTracker.trackPageView(); piwikTracker.enableLinkTracking(); } catch( err ) {}

Demo: Custom Analytics

Hybrid Connectivity

Connecting your cloud applications with applications residing in your own datacenter, typically behind a firewall WAWS does not support network-level connectivity with Virtual Network WAWS does support application-level connectivity using Service Bus

Common Scenarios You want your website to retrieve customer data from a Line of Business (LOB) system such as a purchase order or a Customer Relationship Management (CRM) application residing in your datacenter behind a firewall (e.g. Healthcare or Insurance user registration portal that sends data to CRM in your datacenter) You want to retrieve data from a data repository such as a database or a search engine that cannot be migrated to the cloud due to compliance and regulatory reasons

Solution Architecture

Windows Azure IP Address Ranges

Implementation Resources 1).NET On-Premises/Cloud Hybrid Application Using Service Bus Relay This reference article from Microsoft is a step-by-step procedure in building a simple hybrid connectivity between applications. 2)How to Use the Service Bus Relay Service This is another basic tutorial on getting started with Service Bus 3)How to integrate a Windows Azure Web Site with a LOB app via a Service Bus Relay Service This is an advanced article on integrating WAWS with an LOB app using Service Bus Relay and the author also adds Windows Azure Notification Hubs for sending back notifications to mobile devices when the product catalog changes. I recommend reading this article after finishing 1) & 2) bus-relay-service.aspx

Tools 1)Service Bus Explorer This is client tool for monitoring and managing Service Bus namespaces. You can download the code from the following location. 2)Port Bridge Port Bridge is a proxy server that abstracts TCP connection bindings between the client and the server in a Service Bus interaction. Means, with Port Bridge, you no longer have to build WCF interfaces for the service, but instead add a Port Bridge indirection layer between the client and the service. Port Bridge will then forward web service calls to the appropriate on- premises LOB application or service. Port Bridge was originally built by Clemens Vasters and it is not updated or supported by Microsoft. You can learn more information about Port Bridge at the following locations. Port Bridge Concepts Integrating On-Premises Web Services with Windows Azure Service Bus and Port Bridge

PortBridge Service Service Bus Relay PortBridge Agent (VM) Music Store Hybrid Music Store Search using PortBridge ElasticSearch My local machine (private datacenter)

PortBridge Setup 1)Create ServiceBus Namespace named portbridge 2)Run ElasticSearch on local machine (private datacenter) 3)Configure PortBridge Service on local machine 4)Run PortBridge Service on local machine 5)Configure PortBridge Agent on a VM 6)Run PortBridge Agent on a VM 7)Open VM endpoints for ElasticSearch (9200,9300) 8)Test basic connectivity 9)Deploy Mvc Music Hybrid as another website ( ) 10)Configure Music Store to point to the new search endpoint (using Web Sites Configuration in portal) )Reindex Music Albums 12)Test index data ( ) 13)Test Browse and Search functionality

Demo: Hybrid Music Store

WebMatrix + NodeJS

Source Code Available

Newly Released Features Web Jobs –How ToHow To –Capture Hang DumpsCapture Hang Dumps Staging Support –How ToHow To –Continuous DeploymentContinuous Deployment

Follow Me on the

©2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, Office, Azure, System Center, Dynamics 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.