I have a scenario where a table gets ingested with 20k+ messages every 3 minutes from different sources. I want to fetch latest data which is sent by each unique source, source can be a an id. ill be able to write a query like this.
FactResources | summarize arg_max(Timestamp, *) by SubscriptionId, ResourceId
- I want to understand doing this will impact CPU performance of the cluster, considering my cluster is running at 70% CPU utilization now?
- What will be latency for materialized to view to get refreshed after every ingestion?
- From java SDK can I call this materialized view just like calling a kusto function?