You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/core/src/main/resources/org/elasticsearch/xpack/profiler/component-template/profiling-stackframes.json
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,13 @@
9
9
}
10
10
},
11
11
"mappings": {
12
+
/*
13
+
For the inline chain the profiling-stackframes index needs '_source' to be enabled.
14
+
Also, doc_values for the fields below are disabled to not store the values twice.
15
+
Using synthetic source reduces storage size by ~50% but requires "concatenation"
16
+
of arrays and adds latency when _source is reconstructed at query time.
17
+
This last point is why we don't want to use synthetic source right now.
0 commit comments