An energy utility company is designing an analytical platform to process smart meter readings. The platform receives approximately million telemetry payloads per day, which are consolidated and written as Parquet files every hour to an Azure Data Lake Storage (ADLS) Gen2 account. Analysts need to perform occasional, ad-hoc exploratory SQL queries on the historical Parquet data to identify usage anomalies. The solution must survive a primary region datacenter outage, minimize operational costs, and avoid the use of credentials with a lifetime exceeding days. Which analytical and storage configuration should you recommend?
- Use Azure Synapse Analytics serverless SQL pools to query the Parquet files directly, store the data in an ADLS Gen2 account configured with Geo-Redundant Storage (GRS), and control access using Microsoft Entra ID authentication.Cevap
- BUse Azure Synapse Analytics dedicated SQL pools to query the Parquet files directly, store the data in an ADLS Gen2 account configured with Geo-Redundant Storage (GRS), and control access using Microsoft Entra ID authentication.
- CUse Azure Synapse Analytics serverless SQL pools to query the Parquet files directly, store the data in an ADLS Gen2 account configured with Locally Redundant Storage (LRS), and control access using Microsoft Entra ID authentication.
- DUse Azure Synapse Analytics serverless SQL pools to query the Parquet files directly, store the data in an ADLS Gen2 account configured with Geo-Redundant Storage (GRS), and control access using a Shared Access Signature (SAS) token configured with a -year lifetime.
Cevap
Use Azure Synapse Analytics serverless SQL pools to query the Parquet files directly, store the data in an ADLS Gen2 account configured with Geo-Redundant Storage (GRS), and control access using Microsoft Entra ID authentication.
The correct solution uses Azure Synapse Analytics serverless SQL pools, which are ideal for ad-hoc, cost-effective exploratory queries since charges are based on the volume of data processed by each query. Using Geo-Redundant Storage (GRS) ensures the data is replicated to a secondary region to survive a primary region outage. Utilizing Microsoft Entra ID authentication provides secure access control without the risk of long-lived Shared Access Signatures.
Adım Adım Çözüm
Anahtar Kavram
Selecting cost-effective analytics services (serverless vs dedicated pools), appropriate storage redundancy (GRS vs LRS), and secure access mechanisms (Entra ID vs SAS) for data lake integration.