Join command works well If you apply it for two small datasets or two searches which produce results from stats/timechart/chart command. I see you are applying without using such commands, what will happen in this case there would be high number of events in both searches. Having high number of results in first search is perfectly fine, but the problem is with second search which is also called sub search. In this case join command only join first 50k results. Even search works fine, you will get partial results. for example, search 1 field header is, a,b,c,d search 2 field header is d,e,f to get a,b,c,d,e,f using common field d. SPL would be: search 1 | join max=0 d type=left [search 2] The above search keeps all results from search1 and you will get e,f Only for matching records.
... View more