AI-102 · Question #145
You need to store event log data that is semi-structured and received as the logs occur. What should you use?
The correct answer is A. Azure Table storage. To store semi-structured event log data as it arrives, Azure Table storage is the most appropriate service.
Question
Options
- AAzure Table storage
- BAzure Queue storage
- CAzure Files
How the community answered
(31 responses)- A77% (24)
- B16% (5)
- C6% (2)
Why each option
To store semi-structured event log data as it arrives, Azure Table storage is the most appropriate service.
Azure Table storage is a NoSQL key/attribute store optimized for storing large amounts of semi-structured, non-relational data with flexible schemas. It is well-suited for event logs due to its ability to handle diverse data types and provide fast access based on partition and row keys, making it efficient for appending and retrieving log entries.
Azure Queue storage is designed for temporary message storage for asynchronous processing, not for persistent archival of event log data.
Azure Files provides managed file shares for traditional file system needs and is not optimized for ingesting and querying semi-structured event log data.
Concept tested: Choosing appropriate Azure storage for semi-structured data
Source: https://learn.microsoft.com/en-us/azure/storage/tables/table-storage-overview
Topics
Community Discussion
No community discussion yet for this question.