Splunk Enterprise

Subsearch append question !!

zacksoft
Contributor

I have search query that looked like this,

index = aries sourcetype = onezone 
| fields aaa baa
| stats values(aaa) as aaa 
| table aaa
append
   [ search index = leo sourcetype =twofone
        | fields ccc
        | stats ccc ]
| stats value(aaa) as sd , values(ccc) as cc

Now the optimizedQuery option of Splunk changed the "append" command in the search and replaced it with  to "[  | " search (index = leo  sourcetype=twofone  etc..etc....".....
And my output doesn't change. Both version has same output.

My question is, in the world of subsearches is using "append" the same as  using " [ | search (index = ....."

Is using ""[ | "" better in terms of performnce than using "append "  ?

Labels (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

How Splunk processes a query internally does not necessarily imply you should or can write that query and differently.

If you ran this query you would get far different results (if any at all) than with the original.

index = aries sourcetype = onezone 
| fields aaa baa
| stats values(aaa) as aaa 
| table aaa
[ search index = leo sourcetype =twofone
    | fields ccc
    | stats ccc ]
| stats value(aaa) as sd , values(ccc) as cc
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Index This | What’s a riddle wrapped in an enigma?

September 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...

BORE at .conf25

Boss Of Regular Expression (BORE) was an interactive session run again this year at .conf25 by the brilliant ...

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...