QuestionQ74
Data Store ManagementA company consolidates high-frequency sensor telemetry in an Amazon S3 data lake. Every sensor stream produces structured records hourly. The records contain metadata including sensor category, unit ID, operational state, event timestamp, and site location. The data volume grows to millions of records per day. Each day, the company runs complex queries to identify performance insights for particular sensor categories.
Which solution will satisfy these requirements with the FASTEST query execution time?
- A Persist the data in Apache ORC format. Partition the data by date. Sort the data by sensor category.
- B Persist the data in CSV format. Partition the data by date. Sort the data by operational status.
- C Persist the data in Parquet format. Partition the data by sensor category. Sort the data by date
- D Persist the data in CSV format. Partition the data by date. Sort the data by sensor category.
Community Discussion