No _time is not unique because multiple values exist within the same event (hence mvexpand) hence the results are not correct. I can try to give another example. Lets say I can get this table id mv_field 1 key1,100 key2,200 key3,300 2 key1,100 key2,200 key3,300 3 key1,100 key2,200 key3,300 Given this I want the result: key sum key1 300 key2 600 key3 900 The important part here is that the second column is an mv field. mvexpand breaks the memory usage there so I need some other way to accumulate the results. Maybe I will post this as a separate question cause this is perhaps simpler to explain. Update: mvfilter didn't help with the memory. I found a solution to this that I added here: https://community.splunk.com/t5/Splunk-Search/Accumulate-values-for-a-multi-value-field-by-key/m-p/516577#M145195
... View more