Hi, I have the below query which does the search on two different sources in the same index and join the results based app correlation id to get results and perform the stats operation. However, the source files are huge and hence the join is taking too longs to get me the results. index=server sourcetype=perfromance source="*performance.log" component_role=consumer | join app_id [ search index=server sourcetype=component source="*component.log" | rename appCorId as app_id ] | stats count(eval=(process_result="COMPLETED")) as Completed count(eval=(process_result="FAILED")) as Failed This is a simple join but taking huge time when do a search for 24 hours. Please help optimize this query. Thanks, Sandeep
... View more