DP-700 · Question #32
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…
The correct answer is B. No. Without a complete proposed solution for optimizing the KQL queryset, it is impossible to determine if the intended change would reduce query runtime.
Question
01 Stream 02 | extend lat = todecimal(Geolocation.Latitude), long = todecimal(Geolocation.Longitude) 03 | join kind=inner Reference on DeviceId 04 | project Timestamp, lat, long, Temperature, DeviceName 05 | filter Temperature > 10 06 | render scatterchart with (kind = map)] You need to reduce how long it takes to run the KQL queryset. Solution: You change the join type to kind=outer. Does this meet the goal?Options
- AYes
- BNo
How the community answered
(52 responses)- A17% (9)
- B83% (43)
Why each option
Without a complete proposed solution for optimizing the KQL queryset, it is impossible to determine if the intended change would reduce query runtime.
Assuming "Yes" would imply that the truncated, unknown solution is effective, which cannot be determined given the incomplete problem statement.
The provided question abruptly cuts off, omitting the specific solution proposed to reduce the KQL queryset's runtime. Without this crucial information, it is impossible to evaluate whether the suggested modification would actually improve query performance.
Concept tested: Kusto Query Language (KQL) performance optimization
Topics
Community Discussion
No community discussion yet for this question.