You create an Azure Time Series Insights event handler. You need to send data over the network as efficiently as possible and optimize query performance.
What should you do?
You create an Azure Time Series Insights event handler. You need to send data over the network as efficiently as possible and optimize query performance.
What should you do?
To send data over the network as efficiently as possible and optimize query performance in Azure Time Series Insights, you should use reference data. Reference data allows for the reduction of the number of bytes transferred over the network by joining attributes and key properties at ingress time, which optimizes both data transfer and query performance.
D - Use reference data - correct Reference data is used to reduce the number of bytes transferred over the network. The two attributes messageId and deviceLocation are joined by using the key property deviceId. This data is joined with the telemetry data at ingress time and is then stored in Time Series Insights for querying
Incorrect Answers: Create a query plan – This option is to query the events. This will not optimize the data sent over network efficiently. Send all properties - This option will increase the data set size. Use a Tag ID – This is an identifier. Answer is D