Forum Discussion
majo01
Jul 20, 2020Brass Contributor
KQL Performance Optimization
Hello folks, I am building query that basically does the following : 1- Extend and Project fields from Table1, which contains syslogs 2- Summarize table fields mentioned in (1) 3- Join th...
mergene
Aug 18, 2020Brass Contributor
Could you share the join part of the query?
If your left table is bigger than the right table, it is recommended to use lookup operator for the performance. https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/lookupoperator
Apart from that, what happens if you try the following?
staticTable
| join (
syslogData | extend columns
) on common columns
| summarize
If your left table is bigger than the right table, it is recommended to use lookup operator for the performance. https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/lookupoperator
Apart from that, what happens if you try the following?
staticTable
| join (
syslogData | extend columns
) on common columns
| summarize