Click here to Skip to main content
15,887,988 members
Articles / Containers / Kubernetes
Article

Scaling Intelligent Apps on Azure Kubernetes Services - Part 2

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
19 Oct 2023CPOL6 min read 1.9K  
In the final part of our series, we’ll dive into how to harness AKS’ powerful features like auto-scaling and high availability to manage variable workloads and maintain continuous service.

This article is a sponsored article. Articles such as these are intended to provide you with information on products and services that we consider useful and of value to developers

Image 1

In the first topic of this week, we explored how to use Azure AI Vision within Azure Kubernetes Service (AKS) to create an Intelligent App capable of analyzing images and extracting valuable data through optical character recognition (OCR). The week’s second article focused on the advantages of Azure Cosmos DB, highlighting its multi-model database and ability to handle diverse data resulting from OCR analysis in our Intelligent App.

In part one of this third topic, we configured Azure Kubernetes Service (AKS) to manage varying workloads and smoothly scale our Intelligent App, ensuring it can handle intense and fluctuating workloads. Now, we’ll explore how to monitor and scale without compromising performance or availability.

Monitoring AKS for Scalability and Availability Improvements

Let’s review how to set up and use Azure Monitor and Azure Log Analytics to monitor AKS effectively.

First, let’s create a Log Analytics workspace. In Azure Log Analytics, a workspace is a centralized repository and analytics platform that collects, stores, and provides insights into log and telemetry data generated by Azure services, applications, and resources.

Click Create a resource, search for “Log Analytics workspaces,” then click Create.

The Log Analytics Workspace service with the Create button indicated by an arrow.

Next, select the computer-vision resource group and, in Instance details, set the workspace name as “DefaultLAWorkspace”:

The Log Analytics workspace creation screen shows the Subscription as "Azure subscription 1," Resource group as "computer-vision," Instance name set to DefaultLAWorkspace and Region set to East US.

Now, open the aks-intelligent-app AKS cluster in the Azure Portal. Open Diagnostic settings under the Monitoring section and click Add diagnostic setting:

The Diagnostic settings page displays a link reading "Add diagnostic setting," indicated with an arrow.

Next, give the diagnostic setting a name, like “diagnostic-setting-intelligent-app”. Check all Kubernetes-related log categories, check AllMetrics, check Send to Log Analytics workspace, and then select the DefaultLAWorkspace as the destination. Click the Save button.

The created setting shows all available log categories checked off and the Destination details it will send to DefaultLAWorkspace.

Now, let’s view the logs generated by our AKS cluster. Click the Logs item under Monitoring, then locate the Container memory query under the Alerts section and click Run:

Image 6

You’ll see that Azure automatically creates the query below for you. This query is written in Kusto Query Language (KQL), which is widely used in Azure Portal:

KQL
let threshold = 75000000; // choose a threshold
Perf
| where ObjectName == "K8SContainer" and CounterName == "memoryRssBytes"
| summarize AvgUsedRssMemoryBytes = avg(CounterValue) by bin(TimeGenerated, 30m), InstanceName, _ResourceId
| where AvgUsedRssMemoryBytes > threshold
| render timechart

KQL queries are vital in monitoring an AKS cluster, as they provide a powerful and flexible means to extract, analyze, and visualize data from AKS clusters. These queries allow administrators and DevOps teams to get insights into the cluster’s health, performance, and security by querying telemetry and logs collected from various sources within the AKS environment.

When you click the Run button to execute the log query, you get the following chart:

Image 7

To view the tabular logs, click the Results tab as follows:

Image 8

Next, let’s review how to view key metrics related to the usage of our AKS cluster. Click Metrics under Monitoring.

Image 9

Here, we can create one or more charts using predefined metrics to monitor, such as CPU, disk, memory usage, network traffic, and Pod disruption events.

Azure Kubernetes Service Diagnostics plays a vital role in enhancing the management and performance of Kubernetes clusters within the Azure environment. We can gain valuable insights into Kubernetes cluster health, availability, and efficiency by enabling diagnostics.

Click Diagnose and solve problems in the left menu to find the many troubleshooting categories.

Image 10

These categories provide detailed information about issues related to various cluster aspects, including performance, connectivity, scalability, security, node health, and best practices.

Now, let’s explore the details of one of these AKS cluster issues. Click the Cluster and Control Plane Availability and Performance blade:

Image 11

Here, you can verify the existence of many possible issues regarding cluster availability and performance:

Image 12

Azure Kubernetes Service Diagnostics is a critical tool for monitoring, maintaining, and optimizing AKS clusters. AKS Diagnostics lets you identify potential issues and make data-driven improvements by offering real-time insights and recommendations across various facets of cluster health, performance, and security.

Real-World Use Cases: Scaling and High Availability in Intelligent Apps

The cluster autoscaler, Azure Load Balancer, and Azure availability zones promote cost-efficiency for Intelligent Apps, evenly distributing traffic and optimizing service performance, ensuring uninterrupted user experiences.

These versatile tools have broad applicability across industries, including finance, healthcare, e-commerce, and beyond, particularly for mission-critical applications with variable workloads and high uptime demands.

E-commerce Businesses

E-commerce businesses must handle traffic that varies dramatically during special events or holiday seasons. Their websites require high uptime and disaster recovery capabilities.

These businesses can experience significant setbacks during periods of heavy user traffic or technical glitches, potentially leading to customer dissatisfaction, abandoned shopping carts, and lost sales.

By implementing a high availability strategy with Intelligent Apps, e-commerce businesses can ensure uninterrupted service, website responsiveness, and a seamless online shopping experience, ultimately boosting customer satisfaction and revenue. Tools like the cluster autoscaler and Azure Load Balancer ensure that e-commerce businesses have the resources and capacity to handle high traffic effortlessly.

Healthcare Institutions

Healthcare institutions require data reliability and disaster recovery capabilities. In healthcare, applications often need to process large volumes of patient data and images, especially during diagnostic procedures.

By strategically implementing and managing Intelligent Apps with tools like Azure Load Balancer, availability zones, and cluster autoscaler, healthcare organizations ensure that their digital infrastructure aligns with operational goals. Moreover, they can enhance patient care and regulatory compliance while containing costs and mitigating risks.

Financial Services

Financial services organizations often have applications that handle trading, analytics, and customer transactions. These organizations require high availability and data residency compliance.

For example, banking apps face challenges during heavy usage or technical hiccups. A surge in users accessing their accounts simultaneously, such as during peak hours or special events, can strain the app’s servers, causing slowdowns or timeouts.

Together, tools like Azure Load Balancer, availability zones, and the cluster autoscaler help banking apps keep data in the required regions, handle surges in activity, stay resilient, and provide customers with a smooth and reliable banking experience.

Optimizing the Intelligent App

You might want to optimize the Intelligent App from Part 1 for dynamic scaling and uninterrupted service when processing images with OCR and storing unstructured results in Cosmos DB. You could follow these strategies:

  • Configure the cluster autoscaler to adjust the AKS cluster’s node count based on workload fluctuations. During surges in image processing, it scales out by provisioning additional nodes for efficient handling. Conversely, during low-demand periods, it scales in to reduce operational costs while maintaining performance.
  • Use the AKS HPA to scale application Pods dynamically within the cluster. HPA monitors custom metrics like queue length and processing time. When thresholds are exceeded, it automatically adjusts the number of Pods, ensuring that OCR processing workloads are efficiently distributed across multiple Pods for uninterrupted service.
  • Leverage the Azure Load Balancer to distribute image processing requests evenly across app instances, optimizing performance and preventing overloads. Deploy app instances across Azure availability zones for redundancy and fault tolerance. Health probes actively monitor instance health, directing traffic away from unhealthy instances to maintain high availability.
  • Optimize your containers’ resource use. Fine-tune resource requests and limits for app containers to ensure efficient resource use and stability. Use tools like Prometheus and Grafana to continuously monitor container resource use and adjust resource allocation based on observed usage patterns.

Next Steps

Azure Kubernetes Service offers a robust solution for scaling and ensuring high availability in intelligent applications. It provides automated tools for setting up, managing, and expanding containerized applications using Kubernetes. Its support for scalability and availability prevents disruptions, supports downtime-free updates, and enables you to create a high-performance Intelligent App.

Dive deeper into the features of Azure Kubernetes Services to fully realize its potential in scaling and managing your Intelligent Apps. Your users will enjoy a smoother and more robust app experience.

This article is part of the series 'Powering Intelligent Applications Using Azure Kubernetes Service View All

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
Cloud-Native is a more advanced or mature state for large and mission-critical applications. Build your cloud-native apps with Azure fully managed services, seamlessly integrated development tools, and built-in, enterprise-grade security. Use the tools and technologies of your choice, while implementing a microservices-based, cloud-native architecture that makes it easier to develop and scale your applications.

Comments and Discussions

 
-- There are no messages in this forum --