exam questions

Exam AZ-220 All Questions

View all questions & answers for the AZ-220 exam

Exam AZ-220 topic 4 question 8 discussion

Actual exam question from Microsoft's AZ-220
Question #: 8
Topic #: 4
[All AZ-220 Questions]

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure Stream Analytics job that receives input from an Azure IoT hub and sends the outputs to Azure Blob storage. The job has compatibility level
1.1 and six streaming units.
You have the following query for the job.

You plan to increase the streaming unit count to 12.
You need to optimize the job to take advantage of the additional streaming units and increase the throughput.
Solution: You change the query to the following.

Does this meet the goal?

  • A. Yes
  • B. No
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
kohmaksimka
Highly Voted 3 years, 4 months ago
Selected Answer: A
Yes - https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-parallelization#calculate-the-max-streaming-units-for-a-job Initial query is not partitioned and one step, so max 6 SU as mentioned in question. After altering query, the query now contains two steps. First one partitioned from non-partition input (6 SU) plus the secondary non-partitioned step (+ 6 SU as all non-partitioned steps together can scale up to six streaming units). Total is 12 SU
upvoted 5 times
...
trickerk
Most Recent 3 years, 9 months ago
Answer should be YES. https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-parallelization
upvoted 3 times
...
reynu
3 years, 11 months ago
what is the answer
upvoted 1 times
...
tita_tovenaar
3 years, 11 months ago
answer is Yes. it is. one-step query and is partitioned, so max sku is 96. see table here: https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-parallelization
upvoted 4 times
...
Stephan99
4 years ago
The input data stream is partitioned by 3. The query contains two steps. The input step is partitioned and the second step is not. The SELECT statement reads from the partitioned input. Result: 24 streaming units: (18 for partitioned steps + 6 for non-partitioned steps) see https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-parallelization
upvoted 1 times
exam67
4 years ago
There is nothing in the question suggesting that the input stream is partitioned by 3. Each of the query does only contain one step
upvoted 4 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...