Deprecated: Use of "static" in callables is deprecated in /chroot/home/a40b7614/774635bdc8.nxcli.io/html/wp-content/plugins/moosend-email-marketing/vendor/moosend/website-tracking/src/Utils/Uuid.php on line 15 Deprecated: Use of "static" in callables is deprecated in /chroot/home/a40b7614/774635bdc8.nxcli.io/html/wp-content/plugins/moosend-email-marketing/vendor/moosend/website-tracking/src/Utils/Uuid.php on line 15 Deprecated: Use of "static" in callables is deprecated in /chroot/home/a40b7614/774635bdc8.nxcli.io/html/wp-content/plugins/moosend-email-marketing/vendor/moosend/website-tracking/src/Utils/Uuid.php on line 15 Deprecated: strtr(): Passing null to parameter #1 ($string) of type string is deprecated in /chroot/home/a40b7614/774635bdc8.nxcli.io/html/wp-content/plugins/moosend-email-marketing/vendor/moosend/website-tracking/src/Utils/Encryption.php on line 8 Deprecated: urlencode(): Passing null to parameter #1 ($string) of type string is deprecated in /chroot/home/a40b7614/774635bdc8.nxcli.io/html/wp-content/plugins/moosend-email-marketing/vendor/moosend/website-tracking/src/Payload.php on line 202 azure – Page 12 – SoftwareArchitect.ca

Tag: azure

  • What Are Azure Managed Disks?

    What Are Azure Managed Disks?

     

    Managed Disks are a relatively new concept in Azure. Worth checking this out to understand what they are and why you’d choose that option.

    In more complex scenarios, such as using Virtual Machine Scale Sets (VMSS) to create thousands of identical VMs, Managed Disks automate storage account scale management. Managed Disks now allow VMSS to scale up to one thousand VMs in a single set, 10 times more than was possible with unmanaged disks.

    Source: What Are Azure Managed Disks?

    [activecampaign form=15]

  • Study for the Microsoft 70-532 Developing Azure Solutions Exam With This New Course

    Study for the Microsoft 70-532 Developing Azure Solutions Exam With This New Course

    Check out this promo video for my new course, 70-532 Developing Microsoft Azure Solutions Certification, now available on Udemy.

    Check out the discount coupon embedded below the video if you want to save some money on that. Thanks for checking it out, and I hope to see you inside the course!

  • You can now have your Azure invoices emailed directly to your inbox

    You can now have your Azure invoices emailed directly to your inbox

    Finally! I need this. I can’t tell you how many times I racked up a bill for services that I didn’t even know were running. Actually, I’m going to investigate billing and resource usage alerts now too.

    Azure administrators can download the billing invoice and daily usage from the Azure Account Center. Yesterday, Microsoft announced a new feature that will allow Azure admins to get Azure invoices directly in their email every month attached to their monthly billing email. They can also configure additional recipients for this email. This will allow admins […]

    Source: You can now have your Azure invoices emailed directly to your inbox – MSPoweruser

  • Azure Service Fabric – Microsoft’s New Microservices Platform

    Azure Service Fabric – Microsoft’s New Microservices Platform

    Maybe you’re heard of the Azure Service Fabric (or maybe not), but WHY would you choose to develop a Services Fabric app? Web Apps seem fine, don’t they?

    Microservices is a relatively new thing on the cloud computing scene, and it’s the newest way to develop an application that is most easily scalable and near-perfect availability.

    Before we get into that, how did we get here?

    Traditionally, many large enterprises maintained their own server hardware on site. This involved up-front and ongoing investment in those data centers which included securing the building premises, providing power and cooling, purchasing backup generators, UPS and HVAC units, acquisition of equipment like servers, routers, switches, cabling, patch panels, rack units etc., dedicated technical personnel to maintain the data centers. Some of the disadvantages of this model were a lot of time and effort involved in provisioning new services, over-provisioning, planning ahead of demand, the time required to acquire new infrastructure. All this made the process of hosting time consuming and cumbersome. Also, this was often a roadblock for companies whose core business was not IT.

    With the advent of cloud computing, enterprises now have the option to host their IT infrastructure and applications over the cloud with much more ease and simplicity. They can get rid of the burden of building and maintaining their own data centers to host their services and application thereby freeing up resources and time to focus on their core business. Some of the major players in cloud computing are Microsoft Azure, Amazon Web Service (AWS), Google Cloud, Century Link, Rackspace etc. Some of the key services offered by these players include Infrastructure as a Service (IaaS), Platform as a Service (PaaS) and Software as a Service (SaaS).

    Platform as a Service (PaaS) offers customers to directly deploy their applications onto the cloud without having to deal with the underlying infrastructure layer over which your applications are hosted on. Azure is fabric is a PaaS service offered by Microsoft Azure. Service Fabric provides several features to the applications deployed like high availability, backup, disaster recovery, scalability, high performance all of which will be taken care of by the respective cloud service provider thereby allowing you to concentrate on the application part.

    Azure Service Fabric is a distributed systems platform which helps you to package, deploy and manage scalable and reliable app services and also addresses the significant challenges in developing and managing cloud applications. By making use of Azure Service Fabric, app developers and administrators can avoid dealing with complex IT infrastructure problems and focus instead on implementing mission critical, demanding workloads which are highly scalable, reliable and manageable. It represents the middleware platform for building and managing next-generation, enterprise-class cloud-scale applications. Azure Service Fabric provides a host of services including life-cycle management, independent scaling, rolling upgrades, always-on availability.

    Azure Service Fabric is not limited only to the Azure platform. You can deploy and use it on any public cloud (AWS or Google etc.), your own on-premises private cloud. For developers, there is SDK for Azure Service Fabric which you can install on your machine and get the same features. Service Fabric helps you build applications with any of the languages, frameworks or runtimes of your choice.

    Azure Service Fabric comes free of cost. There is no charge for Azure Service Fabric components. However, in case you are using Azure Service Fabric within the Azure cloud, you will be charged for the virtual machines that you are using.

    The figure above illustrates some major advantages of Azure Service Fabric over Azure cloud service. With Azure Service Fabric, you don’t have to pay for dedicated instances thereby saving costs. Also, it provided faster scaling and takes care of the upgrades.

    The way Azure Service Fabric works is you deploy the Service Fabric on a bunch of nodes (read VM’s) which forms a cluster. When you deploy your code theoretically it gets deployed on each of the nodes in the cluster.

    The table below lists some of the Azure Service Fabric infrastructure services which would be running on each of your nodes within the cluster along with the function they should be performing:

    Azure service manager offers high availability built-in as compared to Cloud Service wherein you have to manually specify the number of worker and web roles to manage high availability. This is achieved with the help of failover manager. Failover manager keeps a track of the nodes and what services they are running. The moment a particular node goes down it identifies the services which it was running and try to bring them up on other nodes.

    Another important reason why you should be choosing Service Fabric over traditional offerings is it reduces your maintenance effort and costs. You do not have to take care if your underlying infrastructure is up-to-date with latest patches. The upgrade service takes care of it. Time and now the Service Fabric team keeps on upgrading its various components. The upgrade service takes care that all nodes have the latest update running.

    Azure Service Fabric offers better and optimized use of the hardware resources. The nodes that you deploy the Service Fabric on can be simultaneously used for hosting instances for different tenants and various services. This is a shift and advantage over the traditional cloud service offering wherein you had to dedicate VM’s to host services for a particular tenant. Azure Service Fabric with built-in services takes care of the load sharing part between the instances making sure you get the best possible performance for your application.

    There are three ways to administer Service Fabric via REST API, PowerShell and fabric client (.net class). Applications hosted over the Azure Service Fabric are much more easy and faster to scale. Whereas in traditional offering it would take about 15-30 minutes to scale up or down a particular number of instances in Azure Service Fabric it’s just a matter of seconds to increase or decrease the number of instances. This offers much more scalability to the application administrators to scale up or down their applications to meet the ever-changing demands. Azure Service Fabric provides a detailed health check and monitoring system wherein it can check and monitor each of its entities like clusters, nodes, applications, services, deployed service packages, partitions, instances etc. giving a greater in-depth look inside your system to detect any faults or performance issues. When you query the health of an entity it gives you the aggregated health of the entity and all its child descendants thus providing you with a better visibility.

    For application upgrades, Azure Service Fabric uses a technology called “upgrade domains” wherein you can perform in-service application upgrades wherein the customer can keep hitting your application while the upgrade is in progress. This is achieved by segregating your instances into upgrade domains (UD). You go about upgrading one upgrade domain while the instances in other upgrade domains continue to serve your application to the customer. Once this UD is successfully upgraded you move onto another UD. The more the number of upgrade domains the greater scalability you can achieve.

    So the next time you want to host your application onto the cloud, have a look at Azure Service Fabric with all of the features and services it has to offer. It might make your life easier.

     

  • AllRecipes Migrating to Microsoft Azure

    AllRecipes Migrating to Microsoft Azure

    AllRecipes, founded in 1997, has undertaken a two-year migration to Microsoft Azure’s IaaS public cloud. AllRecipes services 1.5 billion visitors each year who view an average of 95 recipes per second, 66% of which are done on mobile devices.

    Source: Need a holiday recipe? AllRecipes and Microsoft Azure cloud have you covered | PCWorld

  • A Cool View of the Microsoft Cloud Datacenters

    A Cool View of the Microsoft Cloud Datacenters

    Microsoft released this new video a couple of months back which is an interesting view of the Azure datacenter world.

    https://www.youtube.com/watch?v=bqZrejosqWU

  • How Microsoft Exam Scoring Works

    How Microsoft Exam Scoring Works

    Saw this video today about how Microsoft scoring works for MCP exams. Very interesting if you’re thinking of or taking a Microsoft exam.

    https://www.youtube.com/watch?v=GyX3TJCf7Gc

  • Azure Functions Reach General Availability

    Microsoft recently announced an addition to its Platform as a Service (PaaS) offering called Azure Functions. Initially launched as a preview service in March 2016, Azure Functions provide developers with an event-driven serverless compute platform that allow organizations to pay for only what they consume.

    Source: Azure Functions Reach General Availability

  • Azure Blockchain-as-a-Service

    This sounds so cool.

    Many of you know Bitcoin. Underlying bitcoin is the blockchain, which allows complete strangers to transfer money based on cryptography providing the trust factor. The blockchain is a public ledger of who owns what, and once I transfer my bitcoin to you, that gets written to the public record and everyone knows I don’t own it any more.

    Now imagine that as a private, members-only blockchain. Microsoft has Blockchain-as-a-Service in Azure. Very cool.

    Project Bletchley is a vision for Microsoft to deliver Blockchain as a Service (BaaS) that is open and flexible for all platforms, partners and customers. We’re thrilled to be on this journey with the blockchain community, and are looking forward to helping transform the way we think about and do business today.

    https://azure.microsoft.com/en-us/blog/bletchley-blockchain/

     

  • Azure brings SQL Server Analysis Services to the cloud | PCWorld

     

    SQL Server Analysis Services, one of the key features of Microsoft’s relational database enterprise offering, is going to the cloud. The company announced Tuesday that it’s launching the public beta of Azure Analysis Services, which gives users access to semantic data modeling tools in the cloud.

    Source: Azure brings SQL Server Analysis Services to the cloud | PCWorld