Here are all the actual test exam dumps for IT exams. Most people prepare for the actual exams with our test dumps to pass their exams. So it's critical to choose and actual test pdf to succeed.
Actual exam question for Microsoft's AI-200 exam Question #: 130 Topic #: 1
Case Study 2 - Proseware Inc. Background Proseware Inc. develops AI-powered knowledge management solutions for enterprise customers. The company is modernizing its platform to support semantic search, intelligent document retrieval, and real-time partner integrations. The engineering team uses Python and Azure SDKs. The architecture is being redesigned to support containerized microservices, vector search workloads, and serverless backend processing. Planned Application Architecture Microservices are containerized by using Docker. Code for containerized microservices and Azure Function apps is developed locally but stored in a GitHub repository. Custom images for containerized microservices are stored in Azure Container Registry (ACR). Base images are stored in Docker Hub. Custom images must be rebuilt automatically whenever their base images are updated. Azure Cosmos DB for NoSQL stores documents, metadata, and vector embeddings. Azure Functions generate vector embeddings of Azure Cosmos DB for NoSQL-hosted documents and send messages to Service Bus to trigger search index updates. Azure Container Apps (ACA) apps host backend API services that provide semantic search across Azure Cosmos DB for NoSQL documents. API services process Service Bus messages and update search indexes. Azure Kubernetes Service (AKS) processes batch vector embedding regeneration for existing Azure Cosmos DB for NoSQL documents (whenever the embedding model is changed). An extranet-facing containerized webhook allows business partners to submit documents to be processed by internal AI workflows for semantic search and retrieval. Monitoring Telemetry generated by Azure resources is sent to Azure Monitor. A Log Analytics workspace is used to collect ACA apps logs, AKS container logs, and Azure Functions apps logs. Monitoring of Azure Functions is currently implemented by using Azure Application Insights SDK instrumentation. Business Requirements Embeddings for new or updated Azure Cosmos DB for NoSQL-hosted documents must be automatically generated. Backend API services must scale automatically during business hours. Cold start delay of backend APIs must be minimized. Secrets must be stored outside of container images. Developers must be able to correlate telemetry across Azure Functions hosts and apps. All tracing must be implemented by using OpenTelemetry SDK instrumentation. Development efforts must be minimized. Technical Requirements Container images must be built automatically and validated before code updates are merged into the main branch. Image build automation must run inside the Azure Container Registry, eliminating dependency on local developer machines and external build services. Dependency of image builds on local developer machines must be eliminated. Event-driven scaling in ACA must occur based on the number of pending messages in the Azure Service Bus queue. Azure Cosmos DB for NoSQL RU consumption must be minimized. Vector similarity search must use embeddings stored in Azure Cosmos DB for NoSQL. The partner-facing containerized webhook service must run on Azure App Service. Secrets must NOT be stored in container images, source control, or application configuration directly. They must be accessed securely at runtime. All secrets must be stored centrally in Azure Key Vault and accessed at runtime through a managed identity. Azure App Service must supply secrets at runtime without relying on external services. Resources and workloads must be deployed by using Bicep templates through an automated, version-controlled pipeline. Local and command-line deployments must be eliminated to ensure repeatable, auditable deployments. Known Issues RU consumption spikes during vector similarity queries. You need to address the known issue resulting from vector similarity queries. Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
Known Issues: RU consumption spikes during vector similarity queries. To address the RU (Request Unit) consumption spikes during vector similarity queries in Azure Cosmos DB, you should perform the following two steps: Modify the indexing precision of the vector fields Change the vector index type from flat to quantizedFlat or diskANN Indexing Precision Tuning: Modifying parameters like vector quantization (e.g., configuring quantizedByteSize) alters the size and precision of the stored vector elements. Lowering the precision decreases memory usage and index size, allowing faster searches that consume far fewer RUs at the expense of marginal recall accuracy. Index Type Modification: A standard flat index conducts a brute-force k-nearest neighbors (kNN) exact search across every document. This requires vast computational overhead and causes RU spikes as your dataset grows. Transitioning to quantizedFlat or diskANN leverages compression techniques and advanced graph-traversal algorithms to perform approximate nearest neighbor (ANN) searches, dropping query latency and compute costs significantly. Reference: https://learn.microsoft.com/en-us/azure/cosmos-db/gen-ai/vector-search-performance-tips
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Is the comment made by USERNAME spam or abusive?
Commenting
In order to participate in the comments you need to be logged-in.
You can sign-up / login
(it's free).
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).