A multinational logistics company is designing an Azure-based data integration and analytical storage solution for real-time fleet telemetry. The system must meet the following requirements:
- Ingest telemetry data at a velocity of events per second, peaking at events per second.
- Process a total daily volume of of raw JSON telemetry.
- Store the raw telemetry in an Azure Data Lake Storage Gen2 (ADLS Gen2) account with a retention period of , ensuring the storage survives a primary datacenter outage.
- Enable data analysts to run ad-hoc, exploratory SQL queries on the raw JSON files with a target latency of under for the last of data, without incurring the cost of running persistent compute clusters.
- Grant external auditing firms temporary, read-only access to specific raw data folders for up to , ensuring that access can be revoked immediately if needed.
Which two configurations or services should you recommend to meet these requirements? (Select TWO)
- Configure the ADLS Gen2 storage account to use Geo-Zone-Redundant Storage (GZRS) and use Azure Synapse serverless SQL pools to perform ad-hoc SQL queries on the raw telemetry files.Answer
- BProvision an Azure Synapse dedicated SQL pool to run the ad-hoc exploratory SQL queries directly on the raw telemetry JSON files in the data lake.
- Create a stored access policy on the storage container and generate a Shared Access Signature (SAS) token linked to this policy for the external auditing firms.Answer
- DGenerate a Shared Access Signature (SAS) token with a 1-year lifetime directly on the ADLS Gen2 directory to grant access to the external auditing firms.
- EConfigure the ADLS Gen2 storage account to use Locally Redundant Storage (LRS) to minimize replication costs while using Azure Event Hubs Capture to replicate data for disaster recovery.