Skip to main content

Microsoft Ignite 2020 for Azure Cloud

 

Microsoft Ignite is an annual conference for developers and IT professionals hosted by Microsoft. It has taken place in several locations around the world. Here are the news that I consider the most relevant for Azure cloud.

Azure AI

  • Azure Cognitive Search, Private Endpoint Indexers can now connect to data sources behind a VNET.
  • Azure Cognitive Services is introducing a series of new capabilities — spanning Decision, Vision and Speech.
  • Azure Machine Learning now offers new capabilities, the Designer capability provides drag-and-drop modules for numerous tasks
  • Bot Framework Composer— Now makes it easier to build skills for use within the Virtual Assistant Solution Accelerator with a visual bot development tool.

Azure Data

  • Azure Cosmos DB now offers a serverless option for database operations
  • Flexible Server, a new deployment option now in preview for Azure Database for PostgreSQL and Azure Database for MySQL.
  • Azure SQL Edge, which brings the most secure Microsoft SQL data engine to Internet of Things (IoT) gateways and edge devices, is now available
  • Access-based time lifecycle management, a frequently requested customer feature, is now available in Azure Blob Storage

Azure Datacenters

  • New Availability zones (Canada Central and Australia East)
  • Azure Orbital is a new managed service that provides access to physical satellite communication capabilities to process and analyze data in Microsoft Azure
  • Zone to Zone disaster recovery allows customers to replicate, failover and failback their business-critical virtual machines within the same region with zones.

Azure Dev Ecosystem

  • New enhancements to .NET 5
  • The .NET 5 Release Candidate is now feature-complete and will be generally available Nov. 10.
  • Updates to the Azure App Service managed platform for building, deploying and scaling web apps: Reserved Instance, App Service Premium V3 Plan, Windows Containers, Isolated v2 plan, Java Tomcat Support
  • Datadog and Microsoft Azure have worked together to create an integrated Datadog SaaS solution
  • AKS will have a feature to easily stop and start clusters (at long last!) and the ability to use Azure Policy for governance of AKS clusters and resources
  • Organizations will soon be able to create a private marketplace of preapproved solutions for employees with a new service called Azure Private Marketplace

Azure Infra

  • Backup Center, in public preview, provides a single, unified experience designed for backup management at scale.
  • Azure Backup will now extend Cross Region Restore of Azure VMs to support SQL and SAP HANA backups.
  • Azure Resource Mover is a new product that allows customers to easily move their resources such as managed disks, networking components and SQL Azure resources across regions.
  • Azure Advisor Score is now in preview.
  • Azure Image Builder, generally available by the end of this year, is a free image-building service that streamlines the creation, update, patch, management and operation of Linux and Windows images.
  • Azure Automanage is a new Azure service in preview that helps customers significantly reduce day-to-day management tasks with automated operations across the entire lifecycle of Windows Server virtual machines (VMs) on Azure.
  • Windows Admin Center, IT admins’ favorite server management tool, is now available in preview in the Azure Portal.

Security

  • Protecting every major OS: Microsoft Defender Advanced Threat Protection is now Microsoft Defender for Endpoint and is extending protection for the rapidly evolving world of mobile threats.
  • Protecting priority email accounts: Office 365 Advanced Threat Protection is now Microsoft Defender for Office 365.
  • In addition, Azure Advanced Threat Protection is now Microsoft Defender for Identity and continues to provide customers with hybrid identity threat protection
  • Microsoft Threat Protection is now Microsoft 365 Defender, the XDR for end-user environments.
  • Protecting priority email accounts: Office 365 Advanced Threat Protection is now Microsoft Defender for Office 365. Now in public preview, security teams can prioritize protection for the most visible and most targeted individuals in the organization, tagging and tracking them in the portal as Priority accounts.
  • In addition, Azure Advanced Threat Protection is now Microsoft Defender for Identity and continues to provide customers with hybrid identity threat protection
  • Azure Security Center’s cloud workload protection features are now Azure Defender
  • Azure Defender now includes protection for Azure Key Vault, now in general availability. Azure Defender also now supports protecting on-premises and multicloud protection for SQL Server

For more information refer to: https://news.microsoft.com/ignite-2020-book-of-news

I hope this has been informative and thank you for reading!

Comments

Popular posts from this blog

Azure Cloud

What is Cloud Computing? Cloud computing is a term referred to as storing and accessing data over the internet. It doesn't store any data on the hard disk of your personal computer. In cloud computing, you access data from a remote server. What is Microsoft Azure? Azure is a cloud computing platform that was launched by Microsoft in February 2010. It is an open and flexible cloud platform that helps in development, data storage, service hosting, and service management. The Azure tool hosts web applications over the internet with the help of Microsoft data centers.  Types of Azure Clouds There are mainly three types of clouds in Microsoft Azure are:     PAAS     SAAS     IASS  I hope this has been informative and thank you for reading!

Machine Learning in Azure

Machine learning is a method of data analysis that automates analytical model building. It's a branch of Artificial Intelligence based on the idea that systems can learn from data, identify patterns and make decisions with minimal human interaction. This series of articles intend to elaborate the usage of Azure Machine learning and usage of different machine learning tools in Azure ML studio. This is the first post and it walks you through the introduction to the Azure ML studio and how to upload data to the tool. Two most widely adopted machine learning methods are,  Supervised learning: algorithms are trained using labeled examples, such as    an input where the desired output is known Unsupervised learning: is used against data that has no historical labels. The System is not told the "right answer." The algorithm must figure out what is being shown.   Differences between data mining, machine learning and deep learning  Data mining is about to ident...

What is Jenkins, and how to use it for DevOps

Jenkins is an Open Source software written in Java. It provides services like Build Management, and can be used for running tests (functional or UI). It is also used for CI (Continuous Integration) as well as CD (Continuous Delivery). Jenkins is a free tool, easy to install and configure. We can add various plugins which can help in integrating different tools like Azure DevOps, GitHub (for source control), Maven, Ant, MS Build (for build as well as testing), Selenium (UI automation), Ansible (for deployment) and many more. Using Jenkins, it becomes easy to integrate all kinds of tools for build, testing, packaging, analyzing, deploying etc. In this two-part tutorial series, I will discuss integration of Jenkins with various tools such as:     Azure DevOps and GitHub: for Source Control     Java with Eclipse and C# with Visual Studio 2017: for code writing     Apache Ant, Apache Maven and MS Build: for Build Management    Juni...