Category : Microsoft Azure Data Engineering | Sub Category : Practice Assessment for Exam DP-203 - Data Engineering on Microsoft Azure | By Prasad Bonam Last updated: 2023-09-10 03:18:33 Viewed : 719
You have an Azure subscription that contains the following resources:
Job1 reads data from Hub1 and writes data to Hub2.
You need to ensure that Job1 can run parallelized.
Which two methods can you use? Each correct answer presents a complete solution.
Creating a job to partition the input into a new event hub that has 12 partitions and changing Job1 to use the new job as input or repartitioning the input within Job1 will parallelize the processing.
Increasing the SUs to 36 or decreasing the SUs to 12 will not improve performance, since the job is not parallelized.
Use repartitioning to optimize Azure Stream Analytics jobs | Microsoft Learn
Get started with Azure Stream Analytics - Training | Microsoft Learn
To ensure that your Azure Stream Analytics job (Job1) can run parallelized and take advantage of the configured Scale Units (SUs), you can use the following methods:
Increase the number of partitions in the input source (Hub1):
Increase the number of output partitions in the output source (Hub2):
Both of these methods enable parallel processing and can help your Azure Stream Analytics job utilize the configured Scale Units effectively. The choice between them depends on your specific use case and whether you have control over the configuration of the input and output Event Hubs.