The below example provides the output I need, but I will exceed the JOIN command limitations (50k). Can someone advise on a different way to accomplish the join below - without using the JOIN command?
So as an example:
Primary Table
Customer 1, 2, 3
Secondary Table
Customer 1,2,3,2
Spend 100, 200, 300, 400
Search: index=primary | join type=left max=0 Customer [search index=secondary] | table Customer Spend
Output is
Customer 1, 2, 2, 3
Spend 100, 200, 400, 300
... View more