You manage a process that performs analysis of daily web traffic logs on an HDInsight cluster. Each of the 250 web servers generates approximately 10megabytes (MB) of log data each day. All log data is stored in a single folder in Microsoft Azure Data Lake Storage Gen 2. You need to improve the performance of the process. Which two changes should you make? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. Combine the daily log files for all servers into one file B. Increase the value of the mapreduce.map.memory parameter C. Move the log files into folders so that each day's logs are in their own folder D. Increase the number of worker nodes E. Increase the value of the hive.tez.container.size parameter  Suggested Answer: AC A: Typically, analytics engines such as HDInsight and Azure Data Lake Analytics has a per-five overhead. If you store your data as many small files, this can negatively affect performance. In general, organize your data into larger sized files for better performance (256MB to 100GB in size). Some engines and applications might have trouble efficiently processing files that are greater than 100GB in size. C: For Hive workloads, partition pruning of time-series data can help some queries read only a subset of the data which improves performance. Those pipelines that ingest time-series data, often place their files with a very structured naming for files and folders. Below is a very common example we see for data is structured by date: DataSetYYYYMMDDdatafile_YYYY_MM_DD.tsv Notice that the datetime information appears both as folders and in the filename. Reference: https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-performance-tuning-guidance This question is in DP-201 Designing an Azure Data Solution Exam For getting Microsoft Certified: Azure Data Engineer Associate Certificate Disclaimers: The website is not related to, affiliated with, endorsed or authorized by Microsoft. The website does not contain actual questions and answers from Microsoft's Certification Exams. Trademarks, certification & product names are used for reference only and belong to Microsoft.
Please login or Register to submit your answer