An enterprise is designing a telemetry and analytical storage solution on Azure. The solution must support ad-hoc exploratory queries on of daily log files in CSV and Parquet formats stored in Azure Data Lake Storage Gen2 (ADLS Gen2). The queries will be run sporadically throughout the day.
The design must meet the following requirements:
- Minimize provisioning and compute cost when no queries are running.
- Ensure that the primary storage account survives a regional datacenter outage.
- Secure access to ADLS Gen2 using Shared Access Signatures (SAS) that can be easily revoked if compromised.
Which of the following configurations should you include in the solution design? (Select TWO.)
- Configure the ADLS Gen2 storage account to use Geo-redundant storage (GRS).Answer
- Use Azure Synapse Analytics serverless SQL pools to query the data.Answer
- CUse Azure Synapse Analytics dedicated SQL pools to query the data.
- DConfigure the ADLS Gen2 storage account to use Locally redundant storage (LRS).
- EGenerate Shared Access Signatures (SAS) with a lifetime of one year directly linked to the storage account key.
Answer
Configure the Azure Data Lake Storage Gen2 storage account to use Geo-redundant storage (GRS), and use Azure Synapse Analytics serverless SQL pools to query the data.
Using serverless SQL pools in Azure Synapse Analytics is the most cost-effective choice for sporadic, ad-hoc queries because it uses a pay-per-query model and has no idle resources to pay for. Configuring Geo-redundant storage (GRS) ensures that the data is replicated to a secondary region, providing protection against regional outages.
Step-by-Step Solution
Key Concept
Selecting cost-effective serverless analytics services and regional storage replication strategies on Azure.