Skip to content

Instantly share code, notes, and snippets.

@Slind14
Created June 22, 2019 22:54
Show Gist options
  • Save Slind14/4e3657379833a7ea4b2817a80686bd3b to your computer and use it in GitHub Desktop.
Save Slind14/4e3657379833a7ea4b2817a80686bd3b to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1334" onload="init(evt)" viewBox="0 0 1200 1334" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1334.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1317" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="matched" x="1090.00" y="1317" > </text>
<g id="frames">
<g >
<title>[clickhouse] (32 samples, 0.12%)</title><rect x="1111.7" y="965" width="1.5" height="15.0" fill="rgb(243,115,50)" rx="2" ry="2" />
<text x="1114.72" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.06%)</title><rect x="1125.9" y="1237" width="0.7" height="15.0" fill="rgb(240,78,47)" rx="2" ry="2" />
<text x="1128.89" y="1247.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="536.4" y="1029" width="0.2" height="15.0" fill="rgb(239,212,18)" rx="2" ry="2" />
<text x="539.36" y="1039.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="202.5" y="1093" width="0.1" height="15.0" fill="rgb(232,97,24)" rx="2" ry="2" />
<text x="205.46" y="1103.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (4 samples, 0.02%)</title><rect x="397.3" y="1029" width="0.2" height="15.0" fill="rgb(250,22,30)" rx="2" ry="2" />
<text x="400.30" y="1039.5" ></text>
</g>
<g >
<title>enqueue_task_fair (4 samples, 0.02%)</title><rect x="1155.2" y="1029" width="0.2" height="15.0" fill="rgb(227,90,11)" rx="2" ry="2" />
<text x="1158.22" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1129.7" y="1173" width="0.2" height="15.0" fill="rgb(223,24,11)" rx="2" ry="2" />
<text x="1132.67" y="1183.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (68 samples, 0.26%)</title><rect x="505.7" y="1029" width="3.0" height="15.0" fill="rgb(240,91,44)" rx="2" ry="2" />
<text x="508.68" y="1039.5" ></text>
</g>
<g >
<title>load_balance (9 samples, 0.03%)</title><rect x="1134.4" y="1157" width="0.4" height="15.0" fill="rgb(225,110,29)" rx="2" ry="2" />
<text x="1137.39" y="1167.5" ></text>
</g>
<g >
<title>release_pages (19 samples, 0.07%)</title><rect x="203.3" y="853" width="0.8" height="15.0" fill="rgb(254,100,19)" rx="2" ry="2" />
<text x="206.27" y="863.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (17 samples, 0.06%)</title><rect x="1123.7" y="757" width="0.8" height="15.0" fill="rgb(250,211,38)" rx="2" ry="2" />
<text x="1126.69" y="767.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (5 samples, 0.02%)</title><rect x="487.1" y="965" width="0.2" height="15.0" fill="rgb(233,15,40)" rx="2" ry="2" />
<text x="490.06" y="975.5" ></text>
</g>
<g >
<title>free_unref_page_list (9 samples, 0.03%)</title><rect x="203.5" y="837" width="0.4" height="15.0" fill="rgb(229,14,41)" rx="2" ry="2" />
<text x="206.49" y="847.5" ></text>
</g>
<g >
<title>__madvise (4 samples, 0.02%)</title><rect x="488.1" y="965" width="0.2" height="15.0" fill="rgb(214,40,43)" rx="2" ry="2" />
<text x="491.09" y="975.5" ></text>
</g>
<g >
<title>clear_page_rep (28 samples, 0.11%)</title><rect x="40.1" y="853" width="1.2" height="15.0" fill="rgb(241,217,26)" rx="2" ry="2" />
<text x="43.05" y="863.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::execute (16 samples, 0.06%)</title><rect x="10.0" y="933" width="0.8" height="15.0" fill="rgb(245,9,38)" rx="2" ry="2" />
<text x="13.04" y="943.5" ></text>
</g>
<g >
<title>std::_Function_handler&lt;void (3,354 samples, 12.79%)</title><rect x="44.5" y="1189" width="150.9" height="15.0" fill="rgb(231,206,10)" rx="2" ry="2" />
<text x="47.46" y="1199.5" >std::_Function_hand..</text>
</g>
<g >
<title>[clickhouse] (52 samples, 0.20%)</title><rect x="1109.2" y="933" width="2.3" height="15.0" fill="rgb(244,113,19)" rx="2" ry="2" />
<text x="1112.20" y="943.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (8 samples, 0.03%)</title><rect x="514.6" y="549" width="0.3" height="15.0" fill="rgb(235,56,48)" rx="2" ry="2" />
<text x="517.59" y="559.5" ></text>
</g>
<g >
<title>update_curr (6 samples, 0.02%)</title><rect x="1064.1" y="901" width="0.3" height="15.0" fill="rgb(252,118,28)" rx="2" ry="2" />
<text x="1067.12" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.08%)</title><rect x="329.8" y="949" width="1.0" height="15.0" fill="rgb(246,34,4)" rx="2" ry="2" />
<text x="332.82" y="959.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (39 samples, 0.15%)</title><rect x="1118.5" y="773" width="1.8" height="15.0" fill="rgb(208,73,53)" rx="2" ry="2" />
<text x="1121.51" y="783.5" ></text>
</g>
<g >
<title>ret_from_fork (4 samples, 0.02%)</title><rect x="1133.9" y="1253" width="0.2" height="15.0" fill="rgb(213,13,6)" rx="2" ry="2" />
<text x="1136.94" y="1263.5" ></text>
</g>
<g >
<title>do_syscall_64 (82 samples, 0.31%)</title><rect x="1101.5" y="853" width="3.7" height="15.0" fill="rgb(246,184,14)" rx="2" ry="2" />
<text x="1104.46" y="863.5" ></text>
</g>
<g >
<title>seq_put_decimal_ull_width (3 samples, 0.01%)</title><rect x="1132.6" y="1109" width="0.2" height="15.0" fill="rgb(251,5,24)" rx="2" ry="2" />
<text x="1135.64" y="1119.5" ></text>
</g>
<g >
<title>__queue_work (11 samples, 0.04%)</title><rect x="1153.4" y="997" width="0.5" height="15.0" fill="rgb(217,25,28)" rx="2" ry="2" />
<text x="1156.42" y="1007.5" ></text>
</g>
<g >
<title>large_ralloc (15 samples, 0.06%)</title><rect x="508.8" y="981" width="0.7" height="15.0" fill="rgb(244,37,3)" rx="2" ry="2" />
<text x="511.83" y="991.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1140.3" y="1189" width="0.1" height="15.0" fill="rgb(245,72,5)" rx="2" ry="2" />
<text x="1143.29" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1092.8" y="949" width="0.3" height="15.0" fill="rgb(249,86,40)" rx="2" ry="2" />
<text x="1095.78" y="959.5" ></text>
</g>
<g >
<title>ksys_ioctl (5 samples, 0.02%)</title><rect x="1139.9" y="1093" width="0.2" height="15.0" fill="rgb(214,93,37)" rx="2" ry="2" />
<text x="1142.88" y="1103.5" ></text>
</g>
<g >
<title>tick_nohz_idle_stop_tick (6 samples, 0.02%)</title><rect x="1186.3" y="1189" width="0.2" height="15.0" fill="rgb(250,85,25)" rx="2" ry="2" />
<text x="1189.27" y="1199.5" ></text>
</g>
<g >
<title>do_filp_open (6 samples, 0.02%)</title><rect x="1106.0" y="869" width="0.2" height="15.0" fill="rgb(211,81,29)" rx="2" ry="2" />
<text x="1108.96" y="879.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="331.2" y="1013" width="0.2" height="15.0" fill="rgb(250,69,24)" rx="2" ry="2" />
<text x="334.22" y="1023.5" ></text>
</g>
<g >
<title>dyntick_save_progress_counter (36 samples, 0.14%)</title><rect x="1140.4" y="1189" width="1.6" height="15.0" fill="rgb(251,14,43)" rx="2" ry="2" />
<text x="1143.42" y="1199.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="338.0" y="1029" width="0.1" height="15.0" fill="rgb(215,76,20)" rx="2" ry="2" />
<text x="341.01" y="1039.5" ></text>
</g>
<g >
<title>__pagevec_lru_add_fn (5 samples, 0.02%)</title><rect x="118.4" y="997" width="0.2" height="15.0" fill="rgb(225,223,7)" rx="2" ry="2" />
<text x="121.38" y="1007.5" ></text>
</g>
<g >
<title>page_fault (935 samples, 3.56%)</title><rect x="361.9" y="1093" width="42.1" height="15.0" fill="rgb(218,207,52)" rx="2" ry="2" />
<text x="364.90" y="1103.5" >pag..</text>
</g>
<g >
<title>find_lock_entry (5 samples, 0.02%)</title><rect x="1085.7" y="693" width="0.2" height="15.0" fill="rgb(223,165,15)" rx="2" ry="2" />
<text x="1088.72" y="703.5" ></text>
</g>
<g >
<title>anon_inode_getfile (3 samples, 0.01%)</title><rect x="1124.6" y="1013" width="0.2" height="15.0" fill="rgb(250,0,9)" rx="2" ry="2" />
<text x="1127.63" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="1119.9" y="677" width="0.1" height="15.0" fill="rgb(206,136,42)" rx="2" ry="2" />
<text x="1122.91" y="687.5" ></text>
</g>
<g >
<title>call_function_interrupt (3 samples, 0.01%)</title><rect x="403.7" y="1045" width="0.2" height="15.0" fill="rgb(217,55,41)" rx="2" ry="2" />
<text x="406.74" y="1055.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::progressImpl (5 samples, 0.02%)</title><rect x="1108.6" y="1093" width="0.2" height="15.0" fill="rgb(211,81,25)" rx="2" ry="2" />
<text x="1111.57" y="1103.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (7 samples, 0.03%)</title><rect x="332.0" y="837" width="0.3" height="15.0" fill="rgb(226,30,13)" rx="2" ry="2" />
<text x="334.98" y="847.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (3 samples, 0.01%)</title><rect x="487.9" y="1061" width="0.1" height="15.0" fill="rgb(236,100,44)" rx="2" ry="2" />
<text x="490.91" y="1071.5" ></text>
</g>
<g >
<title>tick_sched_timer (14 samples, 0.05%)</title><rect x="404.7" y="1061" width="0.6" height="15.0" fill="rgb(227,93,13)" rx="2" ry="2" />
<text x="407.68" y="1071.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4 samples, 0.02%)</title><rect x="1128.8" y="1045" width="0.2" height="15.0" fill="rgb(252,196,12)" rx="2" ry="2" />
<text x="1131.82" y="1055.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3 samples, 0.01%)</title><rect x="488.1" y="885" width="0.1" height="15.0" fill="rgb(217,27,28)" rx="2" ry="2" />
<text x="491.09" y="895.5" ></text>
</g>
<g >
<title>[clickhouse] (27 samples, 0.10%)</title><rect x="1095.0" y="901" width="1.2" height="15.0" fill="rgb(225,63,8)" rx="2" ry="2" />
<text x="1098.03" y="911.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (4 samples, 0.02%)</title><rect x="1129.1" y="965" width="0.2" height="15.0" fill="rgb(233,170,26)" rx="2" ry="2" />
<text x="1132.09" y="975.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (5 samples, 0.02%)</title><rect x="346.1" y="949" width="0.2" height="15.0" fill="rgb(211,134,0)" rx="2" ry="2" />
<text x="349.06" y="959.5" ></text>
</g>
<g >
<title>Poco::Logger::log (3 samples, 0.01%)</title><rect x="486.6" y="1157" width="0.1" height="15.0" fill="rgb(217,117,42)" rx="2" ry="2" />
<text x="489.56" y="1167.5" ></text>
</g>
<g >
<title>LZ4::decompress (7 samples, 0.03%)</title><rect x="1117.0" y="933" width="0.3" height="15.0" fill="rgb(244,89,50)" rx="2" ry="2" />
<text x="1120.03" y="943.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (32 samples, 0.12%)</title><rect x="1063.0" y="981" width="1.4" height="15.0" fill="rgb(223,113,4)" rx="2" ry="2" />
<text x="1065.95" y="991.5" ></text>
</g>
<g >
<title>copyout (22 samples, 0.08%)</title><rect x="1084.7" y="709" width="1.0" height="15.0" fill="rgb(208,146,48)" rx="2" ry="2" />
<text x="1087.73" y="719.5" ></text>
</g>
<g >
<title>realloc (12 samples, 0.05%)</title><rect x="500.7" y="1045" width="0.6" height="15.0" fill="rgb(229,39,4)" rx="2" ry="2" />
<text x="503.73" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1107.9" y="997" width="0.2" height="15.0" fill="rgb(205,67,36)" rx="2" ry="2" />
<text x="1110.85" y="1007.5" ></text>
</g>
<g >
<title>zap_page_range (16 samples, 0.06%)</title><rect x="204.9" y="917" width="0.8" height="15.0" fill="rgb(232,108,12)" rx="2" ry="2" />
<text x="207.93" y="927.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (10 samples, 0.04%)</title><rect x="1099.6" y="949" width="0.5" height="15.0" fill="rgb(232,65,40)" rx="2" ry="2" />
<text x="1102.62" y="959.5" ></text>
</g>
<g >
<title>do_filp_open (8 samples, 0.03%)</title><rect x="1107.3" y="901" width="0.4" height="15.0" fill="rgb(210,127,14)" rx="2" ry="2" />
<text x="1110.31" y="911.5" ></text>
</g>
<g >
<title>cpu_function_call (5 samples, 0.02%)</title><rect x="1139.9" y="981" width="0.2" height="15.0" fill="rgb(233,186,52)" rx="2" ry="2" />
<text x="1142.88" y="991.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned short&gt;::serializeValueIntoArena (50 samples, 0.19%)</title><rect x="464.1" y="1141" width="2.2" height="15.0" fill="rgb(245,149,42)" rx="2" ry="2" />
<text x="467.07" y="1151.5" ></text>
</g>
<g >
<title>schedule (19 samples, 0.07%)</title><rect x="1138.4" y="1205" width="0.9" height="15.0" fill="rgb(222,3,52)" rx="2" ry="2" />
<text x="1141.44" y="1215.5" ></text>
</g>
<g >
<title>__handle_mm_fault (67 samples, 0.26%)</title><rect x="118.1" y="1045" width="3.0" height="15.0" fill="rgb(218,47,46)" rx="2" ry="2" />
<text x="121.11" y="1055.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (15 samples, 0.06%)</title><rect x="118.7" y="1013" width="0.7" height="15.0" fill="rgb(212,125,20)" rx="2" ry="2" />
<text x="121.74" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (114 samples, 0.43%)</title><rect x="38.5" y="965" width="5.1" height="15.0" fill="rgb(239,178,15)" rx="2" ry="2" />
<text x="41.48" y="975.5" ></text>
</g>
<g >
<title>__se_sys_madvise (5 samples, 0.02%)</title><rect x="487.1" y="997" width="0.2" height="15.0" fill="rgb(217,27,38)" rx="2" ry="2" />
<text x="490.06" y="1007.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="488.1" y="949" width="0.2" height="15.0" fill="rgb(248,92,51)" rx="2" ry="2" />
<text x="491.09" y="959.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (4 samples, 0.02%)</title><rect x="1054.5" y="997" width="0.1" height="15.0" fill="rgb(212,117,49)" rx="2" ry="2" />
<text x="1057.45" y="1007.5" ></text>
</g>
<g >
<title>memcpy (34 samples, 0.13%)</title><rect x="217.6" y="1061" width="1.5" height="15.0" fill="rgb(231,166,17)" rx="2" ry="2" />
<text x="220.58" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (3,358 samples, 12.80%)</title><rect x="44.4" y="1253" width="151.0" height="15.0" fill="rgb(218,68,19)" rx="2" ry="2" />
<text x="47.37" y="1263.5" >[clickhouse]</text>
</g>
<g >
<title>do_wp_page (96 samples, 0.37%)</title><rect x="39.2" y="933" width="4.3" height="15.0" fill="rgb(225,214,19)" rx="2" ry="2" />
<text x="42.20" y="943.5" ></text>
</g>
<g >
<title>DB::MergeTreeBaseSelectBlockInputStream::readImpl (871 samples, 3.32%)</title><rect x="1069.3" y="1093" width="39.2" height="15.0" fill="rgb(244,217,48)" rx="2" ry="2" />
<text x="1072.30" y="1103.5" >DB:..</text>
</g>
<g >
<title>large_ralloc (12 samples, 0.05%)</title><rect x="104.3" y="1061" width="0.5" height="15.0" fill="rgb(230,116,19)" rx="2" ry="2" />
<text x="107.25" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (738 samples, 2.81%)</title><rect x="10.8" y="1029" width="33.2" height="15.0" fill="rgb(213,99,24)" rx="2" ry="2" />
<text x="13.76" y="1039.5" >[c..</text>
</g>
<g >
<title>arena_extent_alloc_large (12 samples, 0.05%)</title><rect x="330.8" y="1029" width="0.6" height="15.0" fill="rgb(247,216,26)" rx="2" ry="2" />
<text x="333.81" y="1039.5" ></text>
</g>
<g >
<title>__update_load_avg_se (4 samples, 0.02%)</title><rect x="1063.9" y="901" width="0.1" height="15.0" fill="rgb(250,47,1)" rx="2" ry="2" />
<text x="1066.85" y="911.5" ></text>
</g>
<g >
<title>large_ralloc (8 samples, 0.03%)</title><rect x="500.7" y="1013" width="0.4" height="15.0" fill="rgb(244,158,36)" rx="2" ry="2" />
<text x="503.73" y="1023.5" ></text>
</g>
<g >
<title>rcu_dynticks_snap (15 samples, 0.06%)</title><rect x="1141.4" y="1173" width="0.6" height="15.0" fill="rgb(205,11,31)" rx="2" ry="2" />
<text x="1144.37" y="1183.5" ></text>
</g>
<g >
<title>DB::NumComparisonImpl&lt;unsigned long, unsigned char, DB::GreaterOp&lt;unsigned long, unsigned char&gt; &gt;::vector_constant (7 samples, 0.03%)</title><rect x="10.4" y="837" width="0.3" height="15.0" fill="rgb(230,41,4)" rx="2" ry="2" />
<text x="13.36" y="847.5" ></text>
</g>
<g >
<title>memequalSSE2Wide (78 samples, 0.30%)</title><rect x="483.1" y="1141" width="3.5" height="15.0" fill="rgb(220,185,48)" rx="2" ry="2" />
<text x="486.05" y="1151.5" ></text>
</g>
<g >
<title>DB::FunctionIf::executeImpl (6 samples, 0.02%)</title><rect x="10.1" y="901" width="0.3" height="15.0" fill="rgb(206,132,44)" rx="2" ry="2" />
<text x="13.09" y="911.5" ></text>
</g>
<g >
<title>memcpy (16 samples, 0.06%)</title><rect x="1080.9" y="965" width="0.7" height="15.0" fill="rgb(218,1,51)" rx="2" ry="2" />
<text x="1083.90" y="975.5" ></text>
</g>
<g >
<title>DB::ParserPrefixUnaryOperatorExpression::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="213" width="0.3" height="15.0" fill="rgb(233,44,31)" rx="2" ry="2" />
<text x="517.59" y="223.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (55 samples, 0.21%)</title><rect x="1109.2" y="981" width="2.4" height="15.0" fill="rgb(217,175,14)" rx="2" ry="2" />
<text x="1112.16" y="991.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="389" width="0.3" height="15.0" fill="rgb(242,76,24)" rx="2" ry="2" />
<text x="517.59" y="399.5" ></text>
</g>
<g >
<title>load_balance (14 samples, 0.05%)</title><rect x="1125.0" y="965" width="0.7" height="15.0" fill="rgb(234,1,9)" rx="2" ry="2" />
<text x="1128.04" y="975.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (12 samples, 0.05%)</title><rect x="331.4" y="1045" width="0.5" height="15.0" fill="rgb(249,76,24)" rx="2" ry="2" />
<text x="334.35" y="1055.5" ></text>
</g>
<g >
<title>copy_page (6 samples, 0.02%)</title><rect x="1187.8" y="1125" width="0.3" height="15.0" fill="rgb(248,21,28)" rx="2" ry="2" />
<text x="1190.80" y="1135.5" ></text>
</g>
<g >
<title>[dash] (5 samples, 0.02%)</title><rect x="1126.9" y="1237" width="0.3" height="15.0" fill="rgb(250,58,12)" rx="2" ry="2" />
<text x="1129.93" y="1247.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (588 samples, 2.24%)</title><rect x="328.0" y="1109" width="26.4" height="15.0" fill="rgb(231,179,37)" rx="2" ry="2" />
<text x="330.98" y="1119.5" >A..</text>
</g>
<g >
<title>perf_4.19 (5 samples, 0.02%)</title><rect x="1139.9" y="1269" width="0.2" height="15.0" fill="rgb(254,191,44)" rx="2" ry="2" />
<text x="1142.88" y="1279.5" ></text>
</g>
<g >
<title>lookup_fast (4 samples, 0.02%)</title><rect x="1107.5" y="837" width="0.2" height="15.0" fill="rgb(211,172,54)" rx="2" ry="2" />
<text x="1110.49" y="847.5" ></text>
</g>
<g >
<title>munmap (17 samples, 0.06%)</title><rect x="1123.7" y="805" width="0.8" height="15.0" fill="rgb(210,201,47)" rx="2" ry="2" />
<text x="1126.69" y="815.5" ></text>
</g>
<g >
<title>copy_user_generic_string (7 samples, 0.03%)</title><rect x="1099.8" y="741" width="0.3" height="15.0" fill="rgb(251,55,37)" rx="2" ry="2" />
<text x="1102.75" y="751.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5 samples, 0.02%)</title><rect x="186.8" y="1061" width="0.2" height="15.0" fill="rgb(205,35,26)" rx="2" ry="2" />
<text x="189.76" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (28 samples, 0.11%)</title><rect x="1084.7" y="853" width="1.2" height="15.0" fill="rgb(248,122,7)" rx="2" ry="2" />
<text x="1087.68" y="863.5" ></text>
</g>
<g >
<title>[clickhouse] (20 samples, 0.08%)</title><rect x="328.7" y="997" width="0.9" height="15.0" fill="rgb(251,42,18)" rx="2" ry="2" />
<text x="331.65" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (39 samples, 0.15%)</title><rect x="1118.5" y="885" width="1.8" height="15.0" fill="rgb(216,179,1)" rx="2" ry="2" />
<text x="1121.51" y="895.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::~IBlockInputStream (18 samples, 0.07%)</title><rect x="1123.6" y="1045" width="0.9" height="15.0" fill="rgb(209,191,13)" rx="2" ry="2" />
<text x="1126.64" y="1055.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertFrom (123 samples, 0.47%)</title><rect x="530.6" y="1045" width="5.5" height="15.0" fill="rgb(252,26,7)" rx="2" ry="2" />
<text x="533.61" y="1055.5" ></text>
</g>
<g >
<title>DB::MergeTreeBaseSelectBlockInputStream::readFromPart (812 samples, 3.10%)</title><rect x="1069.3" y="1077" width="36.6" height="15.0" fill="rgb(226,173,25)" rx="2" ry="2" />
<text x="1072.34" y="1087.5" >DB:..</text>
</g>
<g >
<title>zap_page_range (3 samples, 0.01%)</title><rect x="506.0" y="821" width="0.1" height="15.0" fill="rgb(251,44,30)" rx="2" ry="2" />
<text x="509.00" y="831.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::defaultImplementationForNulls (8 samples, 0.03%)</title><rect x="10.4" y="885" width="0.3" height="15.0" fill="rgb(226,113,36)" rx="2" ry="2" />
<text x="13.36" y="895.5" ></text>
</g>
<g >
<title>__irqentry_text_start (5 samples, 0.02%)</title><rect x="1062.4" y="1013" width="0.2" height="15.0" fill="rgb(234,62,46)" rx="2" ry="2" />
<text x="1065.41" y="1023.5" ></text>
</g>
<g >
<title>pthread_mutex_trylock (35 samples, 0.13%)</title><rect x="1121.8" y="1237" width="1.6" height="15.0" fill="rgb(233,169,20)" rx="2" ry="2" />
<text x="1124.84" y="1247.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="1155.1" y="1045" width="0.1" height="15.0" fill="rgb(246,123,0)" rx="2" ry="2" />
<text x="1158.09" y="1055.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (8 samples, 0.03%)</title><rect x="203.5" y="821" width="0.4" height="15.0" fill="rgb(227,170,35)" rx="2" ry="2" />
<text x="206.54" y="831.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="488.1" y="933" width="0.2" height="15.0" fill="rgb(223,39,54)" rx="2" ry="2" />
<text x="491.09" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1128.2" y="1221" width="0.3" height="15.0" fill="rgb(211,128,49)" rx="2" ry="2" />
<text x="1131.23" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1132.1" y="1205" width="0.1" height="15.0" fill="rgb(219,70,20)" rx="2" ry="2" />
<text x="1135.05" y="1215.5" ></text>
</g>
<g >
<title>calloc (26 samples, 0.10%)</title><rect x="201.1" y="1109" width="1.2" height="15.0" fill="rgb(227,211,42)" rx="2" ry="2" />
<text x="204.11" y="1119.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="187.8" y="1109" width="0.2" height="15.0" fill="rgb(216,52,10)" rx="2" ry="2" />
<text x="190.84" y="1119.5" ></text>
</g>
<g >
<title>free (6 samples, 0.02%)</title><rect x="488.0" y="1061" width="0.3" height="15.0" fill="rgb(216,139,45)" rx="2" ry="2" />
<text x="491.05" y="1071.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (101 samples, 0.39%)</title><rect x="1075.7" y="805" width="4.5" height="15.0" fill="rgb(241,10,21)" rx="2" ry="2" />
<text x="1078.68" y="815.5" ></text>
</g>
<g >
<title>mem_cgroup_commit_charge (7 samples, 0.03%)</title><rect x="41.3" y="901" width="0.3" height="15.0" fill="rgb(210,91,50)" rx="2" ry="2" />
<text x="44.31" y="911.5" ></text>
</g>
<g >
<title>vfs_read (28 samples, 0.11%)</title><rect x="1084.7" y="821" width="1.2" height="15.0" fill="rgb(238,47,35)" rx="2" ry="2" />
<text x="1087.68" y="831.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="346.3" y="949" width="0.1" height="15.0" fill="rgb(245,201,51)" rx="2" ry="2" />
<text x="349.29" y="959.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::startReadingChain (258 samples, 0.98%)</title><rect x="1108.8" y="1077" width="11.6" height="15.0" fill="rgb(226,91,39)" rx="2" ry="2" />
<text x="1111.80" y="1087.5" ></text>
</g>
<g >
<title>error_entry (7 samples, 0.03%)</title><rect x="338.4" y="1045" width="0.3" height="15.0" fill="rgb(248,81,21)" rx="2" ry="2" />
<text x="341.37" y="1055.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (5 samples, 0.02%)</title><rect x="1118.1" y="965" width="0.2" height="15.0" fill="rgb(248,117,39)" rx="2" ry="2" />
<text x="1121.11" y="975.5" ></text>
</g>
<g >
<title>arena_ralloc (64 samples, 0.24%)</title><rect x="505.8" y="997" width="2.9" height="15.0" fill="rgb(235,182,44)" rx="2" ry="2" />
<text x="508.77" y="1007.5" ></text>
</g>
<g >
<title>__irqentry_text_start (4 samples, 0.02%)</title><rect x="373.0" y="1045" width="0.1" height="15.0" fill="rgb(250,125,12)" rx="2" ry="2" />
<text x="375.97" y="1055.5" ></text>
</g>
<g >
<title>__madvise (7 samples, 0.03%)</title><rect x="208.6" y="1013" width="0.3" height="15.0" fill="rgb(250,132,39)" rx="2" ry="2" />
<text x="211.62" y="1023.5" ></text>
</g>
<g >
<title>free_unref_page_list (3 samples, 0.01%)</title><rect x="104.5" y="821" width="0.2" height="15.0" fill="rgb(237,74,13)" rx="2" ry="2" />
<text x="107.52" y="831.5" ></text>
</g>
<g >
<title>epoll_wait (5 samples, 0.02%)</title><rect x="1128.8" y="1141" width="0.2" height="15.0" fill="rgb(238,229,1)" rx="2" ry="2" />
<text x="1131.77" y="1151.5" ></text>
</g>
<g >
<title>__xstat64 (7 samples, 0.03%)</title><rect x="1106.9" y="997" width="0.3" height="15.0" fill="rgb(217,80,51)" rx="2" ry="2" />
<text x="1109.91" y="1007.5" ></text>
</g>
<g >
<title>_perf_ioctl (5 samples, 0.02%)</title><rect x="1139.9" y="1029" width="0.2" height="15.0" fill="rgb(219,114,27)" rx="2" ry="2" />
<text x="1142.88" y="1039.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (39 samples, 0.15%)</title><rect x="1118.5" y="789" width="1.8" height="15.0" fill="rgb(222,97,16)" rx="2" ry="2" />
<text x="1121.51" y="799.5" ></text>
</g>
<g >
<title>schedule (29 samples, 0.11%)</title><rect x="1130.2" y="1093" width="1.3" height="15.0" fill="rgb(218,164,52)" rx="2" ry="2" />
<text x="1133.17" y="1103.5" ></text>
</g>
<g >
<title>worker_thread (15 samples, 0.06%)</title><rect x="1134.2" y="1221" width="0.7" height="15.0" fill="rgb(230,45,21)" rx="2" ry="2" />
<text x="1137.21" y="1231.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (68 samples, 0.26%)</title><rect x="1096.6" y="933" width="3.0" height="15.0" fill="rgb(217,22,33)" rx="2" ry="2" />
<text x="1099.56" y="943.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1106.9" y="853" width="0.1" height="15.0" fill="rgb(227,187,37)" rx="2" ry="2" />
<text x="1109.91" y="863.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (4 samples, 0.02%)</title><rect x="514.7" y="37" width="0.2" height="15.0" fill="rgb(229,109,50)" rx="2" ry="2" />
<text x="517.68" y="47.5" ></text>
</g>
<g >
<title>page_fault (28 samples, 0.11%)</title><rect x="206.8" y="1093" width="1.2" height="15.0" fill="rgb(239,55,47)" rx="2" ry="2" />
<text x="209.78" y="1103.5" ></text>
</g>
<g >
<title>acpi_idle_enter (370 samples, 1.41%)</title><rect x="1155.5" y="1173" width="16.7" height="15.0" fill="rgb(210,120,27)" rx="2" ry="2" />
<text x="1158.54" y="1183.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (31 samples, 0.12%)</title><rect x="1093.5" y="741" width="1.4" height="15.0" fill="rgb(206,129,33)" rx="2" ry="2" />
<text x="1096.50" y="751.5" ></text>
</g>
<g >
<title>DB::Block::insert (3 samples, 0.01%)</title><rect x="488.7" y="1077" width="0.1" height="15.0" fill="rgb(212,219,25)" rx="2" ry="2" />
<text x="491.68" y="1087.5" ></text>
</g>
<g >
<title>copyout (7 samples, 0.03%)</title><rect x="1099.8" y="757" width="0.3" height="15.0" fill="rgb(250,92,1)" rx="2" ry="2" />
<text x="1102.75" y="767.5" ></text>
</g>
<g >
<title>Poco::Net::TCPServerConnection::start (51 samples, 0.19%)</title><rect x="1123.6" y="1189" width="2.3" height="15.0" fill="rgb(219,148,42)" rx="2" ry="2" />
<text x="1126.60" y="1199.5" ></text>
</g>
<g >
<title>Poco::Logger::log (3 samples, 0.01%)</title><rect x="195.9" y="1141" width="0.2" height="15.0" fill="rgb(235,59,18)" rx="2" ry="2" />
<text x="198.94" y="1151.5" ></text>
</g>
<g >
<title>update_nohz_stats (6 samples, 0.02%)</title><rect x="1133.5" y="1125" width="0.3" height="15.0" fill="rgb(227,84,13)" rx="2" ry="2" />
<text x="1136.49" y="1135.5" ></text>
</g>
<g >
<title>open64 (4 samples, 0.02%)</title><rect x="1132.1" y="1237" width="0.1" height="15.0" fill="rgb(245,153,29)" rx="2" ry="2" />
<text x="1135.05" y="1247.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (5 samples, 0.02%)</title><rect x="309.6" y="1029" width="0.2" height="15.0" fill="rgb(252,77,27)" rx="2" ry="2" />
<text x="312.62" y="1039.5" ></text>
</g>
<g >
<title>zap_page_range (14 samples, 0.05%)</title><rect x="328.8" y="901" width="0.6" height="15.0" fill="rgb(227,72,40)" rx="2" ry="2" />
<text x="331.79" y="911.5" ></text>
</g>
<g >
<title>std::_Rb_tree&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned long&gt;, std::_Select1st&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned long&gt; &gt;, std::less&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, unsigned long&gt; &gt; &gt;::_M_emplace_unique&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;&amp;, unsigned long&gt; (3 samples, 0.01%)</title><rect x="1108.8" y="1013" width="0.2" height="15.0" fill="rgb(208,22,4)" rx="2" ry="2" />
<text x="1111.84" y="1023.5" ></text>
</g>
<g >
<title>malloc_default (3 samples, 0.01%)</title><rect x="1105.2" y="885" width="0.1" height="15.0" fill="rgb(209,62,6)" rx="2" ry="2" />
<text x="1108.20" y="895.5" ></text>
</g>
<g >
<title>vfs_statx (4 samples, 0.02%)</title><rect x="1108.1" y="981" width="0.2" height="15.0" fill="rgb(237,136,7)" rx="2" ry="2" />
<text x="1111.12" y="991.5" ></text>
</g>
<g >
<title>[clickhouse] (33 samples, 0.13%)</title><rect x="1082.6" y="901" width="1.5" height="15.0" fill="rgb(251,34,38)" rx="2" ry="2" />
<text x="1085.61" y="911.5" ></text>
</g>
<g >
<title>DB::IDataType::deserializeBinaryBulkWithMultipleStreams (36 samples, 0.14%)</title><rect x="1093.3" y="965" width="1.6" height="15.0" fill="rgb(224,86,51)" rx="2" ry="2" />
<text x="1096.28" y="975.5" ></text>
</g>
<g >
<title>do_wp_page (7 samples, 0.03%)</title><rect x="1187.8" y="1157" width="0.3" height="15.0" fill="rgb(232,161,11)" rx="2" ry="2" />
<text x="1190.75" y="1167.5" ></text>
</g>
<g >
<title>smp_irq_work_interrupt (5 samples, 0.02%)</title><rect x="1064.5" y="949" width="0.2" height="15.0" fill="rgb(242,69,31)" rx="2" ry="2" />
<text x="1067.48" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.06%)</title><rect x="328.7" y="949" width="0.7" height="15.0" fill="rgb(254,167,39)" rx="2" ry="2" />
<text x="331.74" y="959.5" ></text>
</g>
<g >
<title>HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::resize (128 samples, 0.49%)</title><rect x="202.3" y="1125" width="5.7" height="15.0" fill="rgb(243,89,49)" rx="2" ry="2" />
<text x="205.28" y="1135.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (11 samples, 0.04%)</title><rect x="396.4" y="997" width="0.5" height="15.0" fill="rgb(227,158,51)" rx="2" ry="2" />
<text x="399.41" y="1007.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (128 samples, 0.49%)</title><rect x="455.9" y="1125" width="5.8" height="15.0" fill="rgb(214,130,9)" rx="2" ry="2" />
<text x="458.92" y="1135.5" ></text>
</g>
<g >
<title>__GI___libc_read (102 samples, 0.39%)</title><rect x="1075.6" y="933" width="4.6" height="15.0" fill="rgb(234,69,53)" rx="2" ry="2" />
<text x="1078.64" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (18 samples, 0.07%)</title><rect x="1124.9" y="1093" width="0.8" height="15.0" fill="rgb(246,84,40)" rx="2" ry="2" />
<text x="1127.86" y="1103.5" ></text>
</g>
<g >
<title>load_elf_binary (9 samples, 0.03%)</title><rect x="1189.3" y="1141" width="0.4" height="15.0" fill="rgb(220,198,50)" rx="2" ry="2" />
<text x="1192.28" y="1151.5" ></text>
</g>
<g >
<title>arena_decay (4 samples, 0.02%)</title><rect x="488.1" y="1029" width="0.2" height="15.0" fill="rgb(239,224,50)" rx="2" ry="2" />
<text x="491.09" y="1039.5" ></text>
</g>
<g >
<title>sock_sendmsg (11 samples, 0.04%)</title><rect x="1069.6" y="949" width="0.5" height="15.0" fill="rgb(241,34,18)" rx="2" ry="2" />
<text x="1072.57" y="959.5" ></text>
</g>
<g >
<title>update_process_times (5 samples, 0.02%)</title><rect x="186.8" y="1029" width="0.2" height="15.0" fill="rgb(211,73,9)" rx="2" ry="2" />
<text x="189.76" y="1039.5" ></text>
</g>
<g >
<title>__GI___libc_read (71 samples, 0.27%)</title><rect x="1113.2" y="965" width="3.2" height="15.0" fill="rgb(248,99,30)" rx="2" ry="2" />
<text x="1116.16" y="975.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (21 samples, 0.08%)</title><rect x="201.1" y="917" width="1.0" height="15.0" fill="rgb(227,157,7)" rx="2" ry="2" />
<text x="204.11" y="927.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3 samples, 0.01%)</title><rect x="208.6" y="885" width="0.2" height="15.0" fill="rgb(213,108,5)" rx="2" ry="2" />
<text x="211.62" y="895.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::enumerateStreams (3 samples, 0.01%)</title><rect x="1120.5" y="1061" width="0.2" height="15.0" fill="rgb(210,130,49)" rx="2" ry="2" />
<text x="1123.54" y="1071.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImplCase&lt;false, DB::AggregationMethodSerialized&lt;HashMapTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt; &gt; &gt; (13 samples, 0.05%)</title><rect x="409.3" y="1141" width="0.6" height="15.0" fill="rgb(207,45,48)" rx="2" ry="2" />
<text x="412.32" y="1151.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge_delay (8 samples, 0.03%)</title><rect x="41.6" y="901" width="0.4" height="15.0" fill="rgb(218,35,31)" rx="2" ry="2" />
<text x="44.63" y="911.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (17 samples, 0.06%)</title><rect x="1123.7" y="917" width="0.8" height="15.0" fill="rgb(205,135,50)" rx="2" ry="2" />
<text x="1126.69" y="927.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (762 samples, 2.91%)</title><rect x="10.0" y="1157" width="34.3" height="15.0" fill="rgb(235,206,47)" rx="2" ry="2" />
<text x="13.04" y="1167.5" >DB..</text>
</g>
<g >
<title>path_lookupat (3 samples, 0.01%)</title><rect x="1108.1" y="949" width="0.2" height="15.0" fill="rgb(224,194,10)" rx="2" ry="2" />
<text x="1111.12" y="959.5" ></text>
</g>
<g >
<title>zap_page_range (8 samples, 0.03%)</title><rect x="104.3" y="901" width="0.4" height="15.0" fill="rgb(226,163,36)" rx="2" ry="2" />
<text x="107.34" y="911.5" ></text>
</g>
<g >
<title>read (5 samples, 0.02%)</title><rect x="1128.2" y="1253" width="0.3" height="15.0" fill="rgb(237,1,51)" rx="2" ry="2" />
<text x="1131.23" y="1263.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="354.3" y="1045" width="0.1" height="15.0" fill="rgb(248,106,39)" rx="2" ry="2" />
<text x="357.30" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (28 samples, 0.11%)</title><rect x="1084.7" y="869" width="1.2" height="15.0" fill="rgb(205,196,35)" rx="2" ry="2" />
<text x="1087.68" y="879.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="331.4" y="981" width="0.3" height="15.0" fill="rgb(247,212,44)" rx="2" ry="2" />
<text x="334.44" y="991.5" ></text>
</g>
<g >
<title>DB::PODArray&lt;unsigned char, 4096ul, AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;, 15ul, 16ul&gt;::PODArray (9 samples, 0.03%)</title><rect x="536.2" y="1045" width="0.4" height="15.0" fill="rgb(243,140,46)" rx="2" ry="2" />
<text x="539.18" y="1055.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (6 samples, 0.02%)</title><rect x="221.7" y="1141" width="0.3" height="15.0" fill="rgb(207,62,23)" rx="2" ry="2" />
<text x="224.72" y="1151.5" ></text>
</g>
<g >
<title>large_dalloc (7 samples, 0.03%)</title><rect x="487.1" y="1125" width="0.3" height="15.0" fill="rgb(233,174,42)" rx="2" ry="2" />
<text x="490.06" y="1135.5" ></text>
</g>
<g >
<title>DB::IAggregateFunction::isState (7 samples, 0.03%)</title><rect x="194.8" y="1141" width="0.3" height="15.0" fill="rgb(228,103,39)" rx="2" ry="2" />
<text x="197.81" y="1151.5" ></text>
</g>
<g >
<title>DB::FunctionIf::executeTyped&lt;unsigned char, unsigned char&gt; (6 samples, 0.02%)</title><rect x="10.1" y="853" width="0.3" height="15.0" fill="rgb(240,11,31)" rx="2" ry="2" />
<text x="13.09" y="863.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (4 samples, 0.02%)</title><rect x="1107.5" y="805" width="0.2" height="15.0" fill="rgb(246,175,53)" rx="2" ry="2" />
<text x="1110.49" y="815.5" ></text>
</g>
<g >
<title>mainEntryClickHouseClient (8 samples, 0.03%)</title><rect x="1128.6" y="1221" width="0.4" height="15.0" fill="rgb(205,65,27)" rx="2" ry="2" />
<text x="1131.64" y="1231.5" ></text>
</g>
<g >
<title>DB::Block::eraseImpl (12 samples, 0.05%)</title><rect x="487.8" y="1093" width="0.5" height="15.0" fill="rgb(247,26,11)" rx="2" ry="2" />
<text x="490.78" y="1103.5" ></text>
</g>
<g >
<title>__wake_up_common (3 samples, 0.01%)</title><rect x="1126.2" y="773" width="0.1" height="15.0" fill="rgb(205,228,21)" rx="2" ry="2" />
<text x="1129.21" y="783.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (43 samples, 0.16%)</title><rect x="1118.4" y="965" width="2.0" height="15.0" fill="rgb(237,81,13)" rx="2" ry="2" />
<text x="1121.42" y="975.5" ></text>
</g>
<g >
<title>__default_send_IPI_dest_field (14 samples, 0.05%)</title><rect x="120.4" y="869" width="0.6" height="15.0" fill="rgb(235,146,52)" rx="2" ry="2" />
<text x="123.40" y="879.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (14 samples, 0.05%)</title><rect x="328.8" y="885" width="0.6" height="15.0" fill="rgb(231,228,46)" rx="2" ry="2" />
<text x="331.79" y="895.5" ></text>
</g>
<g >
<title>copy_page_to_iter (62 samples, 0.24%)</title><rect x="1101.6" y="725" width="2.8" height="15.0" fill="rgb(210,203,46)" rx="2" ry="2" />
<text x="1104.60" y="735.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (12 samples, 0.05%)</title><rect x="201.5" y="901" width="0.6" height="15.0" fill="rgb(249,167,51)" rx="2" ry="2" />
<text x="204.52" y="911.5" ></text>
</g>
<g >
<title>DB::TCPHandler::isQueryCancelled (8 samples, 0.03%)</title><rect x="1124.5" y="1125" width="0.4" height="15.0" fill="rgb(237,179,47)" rx="2" ry="2" />
<text x="1127.50" y="1135.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (5 samples, 0.02%)</title><rect x="208.6" y="933" width="0.2" height="15.0" fill="rgb(223,11,8)" rx="2" ry="2" />
<text x="211.62" y="943.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (6 samples, 0.02%)</title><rect x="1086.2" y="949" width="0.2" height="15.0" fill="rgb(249,195,38)" rx="2" ry="2" />
<text x="1089.17" y="959.5" ></text>
</g>
<g >
<title>up_read (10 samples, 0.04%)</title><rect x="311.2" y="1077" width="0.5" height="15.0" fill="rgb(224,124,52)" rx="2" ry="2" />
<text x="314.24" y="1087.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1189.8" y="1253" width="0.2" height="15.0" fill="rgb(241,79,53)" rx="2" ry="2" />
<text x="1192.78" y="1263.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="229" width="0.3" height="15.0" fill="rgb(213,103,21)" rx="2" ry="2" />
<text x="517.59" y="239.5" ></text>
</g>
<g >
<title>__irqentry_text_start (3 samples, 0.01%)</title><rect x="121.5" y="1109" width="0.2" height="15.0" fill="rgb(241,120,23)" rx="2" ry="2" />
<text x="124.53" y="1119.5" ></text>
</g>
<g >
<title>tcp_rcv_established (5 samples, 0.02%)</title><rect x="1126.2" y="821" width="0.2" height="15.0" fill="rgb(208,40,40)" rx="2" ry="2" />
<text x="1129.16" y="831.5" ></text>
</g>
<g >
<title>pick_next_task_fair (12 samples, 0.05%)</title><rect x="1133.2" y="1173" width="0.6" height="15.0" fill="rgb(234,5,38)" rx="2" ry="2" />
<text x="1136.22" y="1183.5" ></text>
</g>
<g >
<title>DB::Join::joinBlock (11,977 samples, 45.66%)</title><rect x="530.5" y="1077" width="538.8" height="15.0" fill="rgb(232,215,36)" rx="2" ry="2" />
<text x="533.47" y="1087.5" >DB::Join::joinBlock</text>
</g>
<g >
<title>ep_poll_callback (3 samples, 0.01%)</title><rect x="1126.2" y="757" width="0.1" height="15.0" fill="rgb(208,11,17)" rx="2" ry="2" />
<text x="1129.21" y="767.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (4 samples, 0.02%)</title><rect x="1096.2" y="949" width="0.2" height="15.0" fill="rgb(248,6,20)" rx="2" ry="2" />
<text x="1099.24" y="959.5" ></text>
</g>
<g >
<title>vfs_statx (6 samples, 0.02%)</title><rect x="1107.9" y="949" width="0.2" height="15.0" fill="rgb(211,51,11)" rx="2" ry="2" />
<text x="1110.85" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (16 samples, 0.06%)</title><rect x="331.9" y="997" width="0.7" height="15.0" fill="rgb(246,18,6)" rx="2" ry="2" />
<text x="334.89" y="1007.5" ></text>
</g>
<g >
<title>epoll_wait (36 samples, 0.14%)</title><rect x="1130.0" y="1205" width="1.6" height="15.0" fill="rgb(209,55,1)" rx="2" ry="2" />
<text x="1132.99" y="1215.5" ></text>
</g>
<g >
<title>HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::resize (718 samples, 2.74%)</title><rect x="89.6" y="1125" width="32.3" height="15.0" fill="rgb(254,174,13)" rx="2" ry="2" />
<text x="92.58" y="1135.5" >Ha..</text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (16 samples, 0.06%)</title><rect x="10.0" y="997" width="0.8" height="15.0" fill="rgb(226,210,18)" rx="2" ry="2" />
<text x="13.04" y="1007.5" ></text>
</g>
<g >
<title>inode_permission (3 samples, 0.01%)</title><rect x="1107.3" y="853" width="0.1" height="15.0" fill="rgb(209,179,52)" rx="2" ry="2" />
<text x="1110.31" y="863.5" ></text>
</g>
<g >
<title>x86_pmu_enable_all (80 samples, 0.31%)</title><rect x="1179.6" y="1093" width="3.6" height="15.0" fill="rgb(218,215,7)" rx="2" ry="2" />
<text x="1182.61" y="1103.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="1092.8" y="853" width="0.3" height="15.0" fill="rgb(237,222,8)" rx="2" ry="2" />
<text x="1095.83" y="863.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (34 samples, 0.13%)</title><rect x="1082.6" y="949" width="1.5" height="15.0" fill="rgb(240,226,34)" rx="2" ry="2" />
<text x="1085.57" y="959.5" ></text>
</g>
<g >
<title>__sched_text_start (26 samples, 0.10%)</title><rect x="1142.5" y="1173" width="1.2" height="15.0" fill="rgb(251,128,24)" rx="2" ry="2" />
<text x="1145.54" y="1183.5" ></text>
</g>
<g >
<title>pick_next_entity (3 samples, 0.01%)</title><rect x="1185.5" y="1141" width="0.1" height="15.0" fill="rgb(222,18,10)" rx="2" ry="2" />
<text x="1188.46" y="1151.5" ></text>
</g>
<g >
<title>error_entry (3 samples, 0.01%)</title><rect x="109.7" y="1045" width="0.1" height="15.0" fill="rgb(240,109,15)" rx="2" ry="2" />
<text x="112.69" y="1055.5" ></text>
</g>
<g >
<title>DB::FunctionMultiIf::executeImpl (590 samples, 2.25%)</title><rect x="489.2" y="1093" width="26.5" height="15.0" fill="rgb(246,72,51)" rx="2" ry="2" />
<text x="492.17" y="1103.5" >D..</text>
</g>
<g >
<title>clear_page_rep (7 samples, 0.03%)</title><rect x="220.9" y="981" width="0.3" height="15.0" fill="rgb(234,8,0)" rx="2" ry="2" />
<text x="223.91" y="991.5" ></text>
</g>
<g >
<title>__do_page_fault (26 samples, 0.10%)</title><rect x="206.9" y="1077" width="1.1" height="15.0" fill="rgb(229,20,51)" rx="2" ry="2" />
<text x="209.87" y="1087.5" ></text>
</g>
<g >
<title>__libc_recv (7 samples, 0.03%)</title><rect x="1129.0" y="1253" width="0.3" height="15.0" fill="rgb(249,175,34)" rx="2" ry="2" />
<text x="1132.00" y="1263.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6 samples, 0.02%)</title><rect x="1186.9" y="1189" width="0.3" height="15.0" fill="rgb(240,63,23)" rx="2" ry="2" />
<text x="1189.94" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (48 samples, 0.18%)</title><rect x="1070.8" y="901" width="2.2" height="15.0" fill="rgb(252,96,16)" rx="2" ry="2" />
<text x="1073.83" y="911.5" ></text>
</g>
<g >
<title>__se_sys_newstat (4 samples, 0.02%)</title><rect x="1108.1" y="997" width="0.2" height="15.0" fill="rgb(224,137,13)" rx="2" ry="2" />
<text x="1111.12" y="1007.5" ></text>
</g>
<g >
<title>vfs_read (7 samples, 0.03%)</title><rect x="1099.8" y="869" width="0.3" height="15.0" fill="rgb(213,58,46)" rx="2" ry="2" />
<text x="1102.75" y="879.5" ></text>
</g>
<g >
<title>link_path_walk (8 samples, 0.03%)</title><rect x="1107.3" y="869" width="0.4" height="15.0" fill="rgb(216,2,39)" rx="2" ry="2" />
<text x="1110.31" y="879.5" ></text>
</g>
<g >
<title>extents_evict (3 samples, 0.01%)</title><rect x="329.4" y="981" width="0.2" height="15.0" fill="rgb(253,184,45)" rx="2" ry="2" />
<text x="332.42" y="991.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3 samples, 0.01%)</title><rect x="1154.5" y="1077" width="0.2" height="15.0" fill="rgb(222,196,43)" rx="2" ry="2" />
<text x="1157.55" y="1087.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (14 samples, 0.05%)</title><rect x="1091.7" y="901" width="0.6" height="15.0" fill="rgb(226,197,22)" rx="2" ry="2" />
<text x="1094.70" y="911.5" ></text>
</g>
<g >
<title>ksys_read (4 samples, 0.02%)</title><rect x="1128.3" y="1205" width="0.2" height="15.0" fill="rgb(224,191,44)" rx="2" ry="2" />
<text x="1131.28" y="1215.5" ></text>
</g>
<g >
<title>__libc_start_main (8 samples, 0.03%)</title><rect x="1128.6" y="1237" width="0.4" height="15.0" fill="rgb(242,122,26)" rx="2" ry="2" />
<text x="1131.64" y="1247.5" ></text>
</g>
<g >
<title>memcpy (61 samples, 0.23%)</title><rect x="449.4" y="1109" width="2.7" height="15.0" fill="rgb(239,17,34)" rx="2" ry="2" />
<text x="452.36" y="1119.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::deserializeBinaryBulkWithMultipleStreams (198 samples, 0.75%)</title><rect x="1086.1" y="981" width="8.9" height="15.0" fill="rgb(228,38,1)" rx="2" ry="2" />
<text x="1089.12" y="991.5" ></text>
</g>
<g >
<title>update_nohz_stats (6 samples, 0.02%)</title><rect x="1134.5" y="1125" width="0.3" height="15.0" fill="rgb(252,160,26)" rx="2" ry="2" />
<text x="1137.53" y="1135.5" ></text>
</g>
<g >
<title>__handle_mm_fault (525 samples, 2.00%)</title><rect x="373.9" y="1045" width="23.6" height="15.0" fill="rgb(213,101,5)" rx="2" ry="2" />
<text x="376.91" y="1055.5" >_..</text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="461.8" y="1109" width="0.2" height="15.0" fill="rgb(237,167,45)" rx="2" ry="2" />
<text x="464.77" y="1119.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (6 samples, 0.02%)</title><rect x="514.6" y="69" width="0.3" height="15.0" fill="rgb(238,203,2)" rx="2" ry="2" />
<text x="517.63" y="79.5" ></text>
</g>
<g >
<title>do_iter_read (39 samples, 0.15%)</title><rect x="1118.5" y="805" width="1.8" height="15.0" fill="rgb(243,151,17)" rx="2" ry="2" />
<text x="1121.51" y="815.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1106.0" y="805" width="0.1" height="15.0" fill="rgb(212,138,53)" rx="2" ry="2" />
<text x="1108.96" y="815.5" ></text>
</g>
<g >
<title>migrate_misplaced_page (34 samples, 0.13%)</title><rect x="119.5" y="1029" width="1.5" height="15.0" fill="rgb(217,111,27)" rx="2" ry="2" />
<text x="122.50" y="1039.5" ></text>
</g>
<g >
<title>do_iter_read (71 samples, 0.27%)</title><rect x="1113.2" y="853" width="3.2" height="15.0" fill="rgb(222,24,15)" rx="2" ry="2" />
<text x="1116.16" y="863.5" ></text>
</g>
<g >
<title>update_nohz_stats (4 samples, 0.02%)</title><rect x="1128.8" y="949" width="0.2" height="15.0" fill="rgb(221,182,18)" rx="2" ry="2" />
<text x="1131.82" y="959.5" ></text>
</g>
<g >
<title>do_sys_open (6 samples, 0.02%)</title><rect x="1106.0" y="885" width="0.2" height="15.0" fill="rgb(220,41,49)" rx="2" ry="2" />
<text x="1108.96" y="895.5" ></text>
</g>
<g >
<title>DB::Client::main (8 samples, 0.03%)</title><rect x="1128.6" y="1205" width="0.4" height="15.0" fill="rgb(244,69,42)" rx="2" ry="2" />
<text x="1131.64" y="1215.5" ></text>
</g>
<g >
<title>handle_mm_fault (68 samples, 0.26%)</title><rect x="118.1" y="1061" width="3.0" height="15.0" fill="rgb(246,116,0)" rx="2" ry="2" />
<text x="121.06" y="1071.5" ></text>
</g>
<g >
<title>native_load_gs_index (3 samples, 0.01%)</title><rect x="1144.8" y="1253" width="0.2" height="15.0" fill="rgb(232,197,34)" rx="2" ry="2" />
<text x="1147.83" y="1263.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;::alloc (20 samples, 0.08%)</title><rect x="208.2" y="1125" width="0.9" height="15.0" fill="rgb(210,99,50)" rx="2" ry="2" />
<text x="211.17" y="1135.5" ></text>
</g>
<g >
<title>free (12 samples, 0.05%)</title><rect x="122.0" y="1109" width="0.5" height="15.0" fill="rgb(251,227,3)" rx="2" ry="2" />
<text x="124.98" y="1119.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (8 samples, 0.03%)</title><rect x="331.9" y="853" width="0.4" height="15.0" fill="rgb(234,221,9)" rx="2" ry="2" />
<text x="334.94" y="863.5" ></text>
</g>
<g >
<title>[dash] (13 samples, 0.05%)</title><rect x="1126.6" y="1253" width="0.6" height="15.0" fill="rgb(247,106,7)" rx="2" ry="2" />
<text x="1129.57" y="1263.5" ></text>
</g>
<g >
<title>LZ4::decompress (48 samples, 0.18%)</title><rect x="1070.8" y="917" width="2.2" height="15.0" fill="rgb(241,73,36)" rx="2" ry="2" />
<text x="1073.83" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1106.0" y="917" width="0.2" height="15.0" fill="rgb(228,134,16)" rx="2" ry="2" />
<text x="1108.96" y="927.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (6 samples, 0.02%)</title><rect x="1106.0" y="965" width="0.2" height="15.0" fill="rgb(224,72,13)" rx="2" ry="2" />
<text x="1108.96" y="975.5" ></text>
</g>
<g >
<title>shmem_getpage (16 samples, 0.06%)</title><rect x="1115.6" y="805" width="0.8" height="15.0" fill="rgb(207,141,50)" rx="2" ry="2" />
<text x="1118.63" y="815.5" ></text>
</g>
<g >
<title>large_palloc (46 samples, 0.18%)</title><rect x="202.7" y="1061" width="2.1" height="15.0" fill="rgb(225,217,9)" rx="2" ry="2" />
<text x="205.69" y="1071.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="354.3" y="1013" width="0.1" height="15.0" fill="rgb(242,138,2)" rx="2" ry="2" />
<text x="357.30" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1094.9" y="965" width="0.1" height="15.0" fill="rgb(245,35,27)" rx="2" ry="2" />
<text x="1097.89" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (82 samples, 0.31%)</title><rect x="1101.5" y="869" width="3.7" height="15.0" fill="rgb(254,103,18)" rx="2" ry="2" />
<text x="1104.46" y="879.5" ></text>
</g>
<g >
<title>acpi_idle_do_entry (352 samples, 1.34%)</title><rect x="1155.7" y="1157" width="15.8" height="15.0" fill="rgb(241,0,18)" rx="2" ry="2" />
<text x="1158.67" y="1167.5" ></text>
</g>
<g >
<title>link_path_walk (6 samples, 0.02%)</title><rect x="1106.0" y="837" width="0.2" height="15.0" fill="rgb(208,210,21)" rx="2" ry="2" />
<text x="1108.96" y="847.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3 samples, 0.01%)</title><rect x="1183.5" y="1141" width="0.2" height="15.0" fill="rgb(252,224,52)" rx="2" ry="2" />
<text x="1186.52" y="1151.5" ></text>
</g>
<g >
<title>__sched_text_start (3 samples, 0.01%)</title><rect x="1134.0" y="1189" width="0.1" height="15.0" fill="rgb(231,1,32)" rx="2" ry="2" />
<text x="1136.99" y="1199.5" ></text>
</g>
<g >
<title>try_to_unmap (31 samples, 0.12%)</title><rect x="119.6" y="997" width="1.4" height="15.0" fill="rgb(243,86,3)" rx="2" ry="2" />
<text x="122.64" y="1007.5" ></text>
</g>
<g >
<title>sock_def_readable (3 samples, 0.01%)</title><rect x="1126.2" y="805" width="0.1" height="15.0" fill="rgb(228,194,38)" rx="2" ry="2" />
<text x="1129.21" y="815.5" ></text>
</g>
<g >
<title>find_lock_entry (15 samples, 0.06%)</title><rect x="1079.6" y="741" width="0.6" height="15.0" fill="rgb(217,175,25)" rx="2" ry="2" />
<text x="1082.55" y="751.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt;::add (32 samples, 0.12%)</title><rect x="311.7" y="1125" width="1.4" height="15.0" fill="rgb(211,23,21)" rx="2" ry="2" />
<text x="314.69" y="1135.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1139.9" y="1205" width="0.2" height="15.0" fill="rgb(241,203,22)" rx="2" ry="2" />
<text x="1142.88" y="1215.5" ></text>
</g>
<g >
<title>std::_Sp_counted_ptr_inplace&lt;DB::ExpressionActions, std::allocator&lt;DB::ExpressionActions&gt;, (17 samples, 0.06%)</title><rect x="1123.7" y="885" width="0.8" height="15.0" fill="rgb(223,51,3)" rx="2" ry="2" />
<text x="1126.69" y="895.5" ></text>
</g>
<g >
<title>__irqentry_text_start (9 samples, 0.03%)</title><rect x="1054.7" y="1013" width="0.4" height="15.0" fill="rgb(214,74,46)" rx="2" ry="2" />
<text x="1057.67" y="1023.5" ></text>
</g>
<g >
<title>__handle_mm_fault (18 samples, 0.07%)</title><rect x="220.5" y="1045" width="0.9" height="15.0" fill="rgb(226,114,18)" rx="2" ry="2" />
<text x="223.55" y="1055.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="525.4" y="1029" width="0.2" height="15.0" fill="rgb(205,92,28)" rx="2" ry="2" />
<text x="528.43" y="1039.5" ></text>
</g>
<g >
<title>sync_regs (26 samples, 0.10%)</title><rect x="360.5" y="1077" width="1.2" height="15.0" fill="rgb(232,138,7)" rx="2" ry="2" />
<text x="363.50" y="1087.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (14 samples, 0.05%)</title><rect x="1125.9" y="1141" width="0.7" height="15.0" fill="rgb(228,224,53)" rx="2" ry="2" />
<text x="1128.94" y="1151.5" ></text>
</g>
<g >
<title>do_sys_open (3 samples, 0.01%)</title><rect x="1106.4" y="901" width="0.1" height="15.0" fill="rgb(228,78,27)" rx="2" ry="2" />
<text x="1109.41" y="911.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (28 samples, 0.11%)</title><rect x="1084.7" y="757" width="1.2" height="15.0" fill="rgb(218,2,39)" rx="2" ry="2" />
<text x="1087.68" y="767.5" ></text>
</g>
<g >
<title>walk_component (3 samples, 0.01%)</title><rect x="1106.1" y="821" width="0.1" height="15.0" fill="rgb(222,170,44)" rx="2" ry="2" />
<text x="1109.10" y="831.5" ></text>
</g>
<g >
<title>DB::AggregatedDataVariants::sizeWithoutOverflowRow (4 samples, 0.02%)</title><rect x="195.7" y="1173" width="0.1" height="15.0" fill="rgb(252,73,34)" rx="2" ry="2" />
<text x="198.67" y="1183.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::execute (11,977 samples, 45.66%)</title><rect x="530.5" y="1093" width="538.8" height="15.0" fill="rgb(246,80,40)" rx="2" ry="2" />
<text x="533.47" y="1103.5" >DB::ExpressionAction::execute</text>
</g>
<g >
<title>find_get_entry (5 samples, 0.02%)</title><rect x="1085.7" y="677" width="0.2" height="15.0" fill="rgb(229,91,25)" rx="2" ry="2" />
<text x="1088.72" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.03%)</title><rect x="1092.3" y="885" width="0.4" height="15.0" fill="rgb(216,114,16)" rx="2" ry="2" />
<text x="1095.33" y="895.5" ></text>
</g>
<g >
<title>walk_component (5 samples, 0.02%)</title><rect x="1107.4" y="853" width="0.3" height="15.0" fill="rgb(219,84,24)" rx="2" ry="2" />
<text x="1110.45" y="863.5" ></text>
</g>
<g >
<title>load_balance (16 samples, 0.06%)</title><rect x="1138.5" y="1157" width="0.8" height="15.0" fill="rgb(232,82,46)" rx="2" ry="2" />
<text x="1141.53" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (11,769 samples, 44.87%)</title><rect x="536.6" y="1045" width="529.5" height="15.0" fill="rgb(229,148,48)" rx="2" ry="2" />
<text x="539.59" y="1055.5" >[clickhouse]</text>
</g>
<g >
<title>[clickhouse] (13 samples, 0.05%)</title><rect x="1081.7" y="917" width="0.6" height="15.0" fill="rgb(247,89,42)" rx="2" ry="2" />
<text x="1084.71" y="927.5" ></text>
</g>
<g >
<title>do_sys_open (3 samples, 0.01%)</title><rect x="1132.1" y="1189" width="0.1" height="15.0" fill="rgb(245,185,9)" rx="2" ry="2" />
<text x="1135.10" y="1199.5" ></text>
</g>
<g >
<title>DB::ParserNullityChecking::parseImpl (8 samples, 0.03%)</title><rect x="514.6" y="533" width="0.3" height="15.0" fill="rgb(216,102,6)" rx="2" ry="2" />
<text x="517.59" y="543.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="1188.1" y="1189" width="0.1" height="15.0" fill="rgb(241,14,8)" rx="2" ry="2" />
<text x="1191.11" y="1199.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3 samples, 0.01%)</title><rect x="1080.7" y="773" width="0.1" height="15.0" fill="rgb(244,4,23)" rx="2" ry="2" />
<text x="1083.68" y="783.5" ></text>
</g>
<g >
<title>[clickhouse] (9 samples, 0.03%)</title><rect x="104.3" y="1013" width="0.4" height="15.0" fill="rgb(245,68,7)" rx="2" ry="2" />
<text x="107.34" y="1023.5" ></text>
</g>
<g >
<title>pick_next_task_fair (17 samples, 0.06%)</title><rect x="1138.5" y="1173" width="0.8" height="15.0" fill="rgb(227,70,20)" rx="2" ry="2" />
<text x="1141.53" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="208.9" y="1029" width="0.2" height="15.0" fill="rgb(210,184,38)" rx="2" ry="2" />
<text x="211.94" y="1039.5" ></text>
</g>
<g >
<title>pick_next_task_fair (8 samples, 0.03%)</title><rect x="1185.5" y="1157" width="0.3" height="15.0" fill="rgb(232,3,2)" rx="2" ry="2" />
<text x="1188.46" y="1167.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (36 samples, 0.14%)</title><rect x="406.5" y="1141" width="1.6" height="15.0" fill="rgb(253,148,29)" rx="2" ry="2" />
<text x="409.48" y="1151.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::read (261 samples, 1.00%)</title><rect x="1108.8" y="1093" width="11.7" height="15.0" fill="rgb(230,157,18)" rx="2" ry="2" />
<text x="1111.80" y="1103.5" ></text>
</g>
<g >
<title>DB::castColumn (32 samples, 0.12%)</title><rect x="514.2" y="1077" width="1.5" height="15.0" fill="rgb(215,67,49)" rx="2" ry="2" />
<text x="517.23" y="1087.5" ></text>
</g>
<g >
<title>load_balance (3 samples, 0.01%)</title><rect x="1134.0" y="1157" width="0.1" height="15.0" fill="rgb(231,95,24)" rx="2" ry="2" />
<text x="1136.99" y="1167.5" ></text>
</g>
<g >
<title>__madvise (6 samples, 0.02%)</title><rect x="509.0" y="885" width="0.2" height="15.0" fill="rgb(254,24,19)" rx="2" ry="2" />
<text x="511.97" y="895.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (4 samples, 0.02%)</title><rect x="207.3" y="1013" width="0.2" height="15.0" fill="rgb(254,111,10)" rx="2" ry="2" />
<text x="210.27" y="1023.5" ></text>
</g>
<g >
<title>htop (26 samples, 0.10%)</title><rect x="1131.7" y="1269" width="1.2" height="15.0" fill="rgb(226,72,28)" rx="2" ry="2" />
<text x="1134.70" y="1279.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (43 samples, 0.16%)</title><rect x="1118.4" y="949" width="2.0" height="15.0" fill="rgb(209,154,6)" rx="2" ry="2" />
<text x="1121.42" y="959.5" ></text>
</g>
<g >
<title>smp_call_function_many (9 samples, 0.03%)</title><rect x="201.1" y="869" width="0.4" height="15.0" fill="rgb(209,25,1)" rx="2" ry="2" />
<text x="204.11" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="1129.0" y="1237" width="0.3" height="15.0" fill="rgb(217,128,54)" rx="2" ry="2" />
<text x="1132.00" y="1247.5" ></text>
</g>
<g >
<title>arena_decay (23 samples, 0.09%)</title><rect x="329.8" y="1029" width="1.0" height="15.0" fill="rgb(224,213,37)" rx="2" ry="2" />
<text x="332.78" y="1039.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1146.1" y="1109" width="0.2" height="15.0" fill="rgb(245,28,44)" rx="2" ry="2" />
<text x="1149.14" y="1119.5" ></text>
</g>
<g >
<title>down_read_trylock (7 samples, 0.03%)</title><rect x="110.7" y="1013" width="0.3" height="15.0" fill="rgb(205,216,39)" rx="2" ry="2" />
<text x="113.73" y="1023.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (11 samples, 0.04%)</title><rect x="1069.6" y="981" width="0.5" height="15.0" fill="rgb(250,63,27)" rx="2" ry="2" />
<text x="1072.57" y="991.5" ></text>
</g>
<g >
<title>__GI___libc_open (6 samples, 0.02%)</title><rect x="1106.0" y="933" width="0.2" height="15.0" fill="rgb(237,134,12)" rx="2" ry="2" />
<text x="1108.96" y="943.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (28 samples, 0.11%)</title><rect x="1084.7" y="741" width="1.2" height="15.0" fill="rgb(223,127,27)" rx="2" ry="2" />
<text x="1087.68" y="751.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (7 samples, 0.03%)</title><rect x="395.0" y="949" width="0.3" height="15.0" fill="rgb(246,181,52)" rx="2" ry="2" />
<text x="398.01" y="959.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (55 samples, 0.21%)</title><rect x="219.1" y="1109" width="2.5" height="15.0" fill="rgb(242,63,25)" rx="2" ry="2" />
<text x="222.11" y="1119.5" ></text>
</g>
<g >
<title>page_fault (85 samples, 0.32%)</title><rect x="117.6" y="1093" width="3.8" height="15.0" fill="rgb(243,172,25)" rx="2" ry="2" />
<text x="120.61" y="1103.5" ></text>
</g>
<g >
<title>radix_tree_descend (4 samples, 0.02%)</title><rect x="1116.1" y="709" width="0.2" height="15.0" fill="rgb(247,190,8)" rx="2" ry="2" />
<text x="1119.08" y="719.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (9 samples, 0.03%)</title><rect x="1126.0" y="965" width="0.4" height="15.0" fill="rgb(208,197,28)" rx="2" ry="2" />
<text x="1128.98" y="975.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (14 samples, 0.05%)</title><rect x="123.5" y="1109" width="0.6" height="15.0" fill="rgb(250,95,9)" rx="2" ry="2" />
<text x="126.51" y="1119.5" ></text>
</g>
<g >
<title>__do_page_fault (69 samples, 0.26%)</title><rect x="308.6" y="1093" width="3.1" height="15.0" fill="rgb(252,207,8)" rx="2" ry="2" />
<text x="311.59" y="1103.5" ></text>
</g>
<g >
<title>taskstats_user_cmd (4 samples, 0.02%)</title><rect x="1069.7" y="837" width="0.2" height="15.0" fill="rgb(223,10,9)" rx="2" ry="2" />
<text x="1072.75" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="208.6" y="997" width="0.3" height="15.0" fill="rgb(248,166,49)" rx="2" ry="2" />
<text x="211.62" y="1007.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (7 samples, 0.03%)</title><rect x="204.4" y="1045" width="0.4" height="15.0" fill="rgb(239,116,27)" rx="2" ry="2" />
<text x="207.44" y="1055.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="506.0" y="933" width="0.1" height="15.0" fill="rgb(209,167,38)" rx="2" ry="2" />
<text x="509.00" y="943.5" ></text>
</g>
<g >
<title>__d_lookup (4 samples, 0.02%)</title><rect x="1107.5" y="821" width="0.2" height="15.0" fill="rgb(218,156,12)" rx="2" ry="2" />
<text x="1110.49" y="831.5" ></text>
</g>
<g >
<title>byobu-status (43 samples, 0.16%)</title><rect x="1126.6" y="1269" width="1.9" height="15.0" fill="rgb(213,93,18)" rx="2" ry="2" />
<text x="1129.57" y="1279.5" ></text>
</g>
<g >
<title>page_fault (342 samples, 1.30%)</title><rect x="338.8" y="1045" width="15.4" height="15.0" fill="rgb(252,17,37)" rx="2" ry="2" />
<text x="341.78" y="1055.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (13 samples, 0.05%)</title><rect x="405.6" y="1093" width="0.6" height="15.0" fill="rgb(244,129,0)" rx="2" ry="2" />
<text x="408.63" y="1103.5" ></text>
</g>
<g >
<title>rcu_sched (80 samples, 0.31%)</title><rect x="1140.1" y="1269" width="3.6" height="15.0" fill="rgb(244,91,45)" rx="2" ry="2" />
<text x="1143.11" y="1279.5" ></text>
</g>
<g >
<title>DB::ParserTupleElementExpression::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="181" width="0.3" height="15.0" fill="rgb(236,98,36)" rx="2" ry="2" />
<text x="517.59" y="191.5" ></text>
</g>
<g >
<title>DB::LazyBlockInputStream::readImpl (16 samples, 0.06%)</title><rect x="10.0" y="1029" width="0.8" height="15.0" fill="rgb(252,186,21)" rx="2" ry="2" />
<text x="13.04" y="1039.5" ></text>
</g>
<g >
<title>sock_sendmsg (15 samples, 0.06%)</title><rect x="1125.9" y="1173" width="0.7" height="15.0" fill="rgb(235,33,10)" rx="2" ry="2" />
<text x="1128.89" y="1183.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (144 samples, 0.55%)</title><rect x="1149.1" y="1157" width="6.4" height="15.0" fill="rgb(246,92,41)" rx="2" ry="2" />
<text x="1152.06" y="1167.5" ></text>
</g>
<g >
<title>__GI___libc_read (39 samples, 0.15%)</title><rect x="1118.5" y="917" width="1.8" height="15.0" fill="rgb(220,64,35)" rx="2" ry="2" />
<text x="1121.51" y="927.5" ></text>
</g>
<g >
<title>call_function_interrupt (3 samples, 0.01%)</title><rect x="308.1" y="1109" width="0.1" height="15.0" fill="rgb(205,226,5)" rx="2" ry="2" />
<text x="311.09" y="1119.5" ></text>
</g>
<g >
<title>get_page_from_freelist (17 samples, 0.06%)</title><rect x="111.5" y="949" width="0.8" height="15.0" fill="rgb(233,176,4)" rx="2" ry="2" />
<text x="114.49" y="959.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (13 samples, 0.05%)</title><rect x="514.5" y="757" width="0.6" height="15.0" fill="rgb(208,9,45)" rx="2" ry="2" />
<text x="517.50" y="767.5" ></text>
</g>
<g >
<title>LZ4::decompress (34 samples, 0.13%)</title><rect x="1082.6" y="917" width="1.5" height="15.0" fill="rgb(253,88,27)" rx="2" ry="2" />
<text x="1085.57" y="927.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10 samples, 0.04%)</title><rect x="220.8" y="997" width="0.5" height="15.0" fill="rgb(251,136,46)" rx="2" ry="2" />
<text x="223.82" y="1007.5" ></text>
</g>
<g >
<title>worker_thread (5 samples, 0.02%)</title><rect x="1132.9" y="1221" width="0.2" height="15.0" fill="rgb(220,209,30)" rx="2" ry="2" />
<text x="1135.91" y="1231.5" ></text>
</g>
<g >
<title>queue_work_on (5 samples, 0.02%)</title><rect x="1064.5" y="901" width="0.2" height="15.0" fill="rgb(253,199,46)" rx="2" ry="2" />
<text x="1067.48" y="911.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="488.1" y="1013" width="0.2" height="15.0" fill="rgb(223,104,35)" rx="2" ry="2" />
<text x="491.09" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.04%)</title><rect x="1069.6" y="1013" width="0.5" height="15.0" fill="rgb(208,136,42)" rx="2" ry="2" />
<text x="1072.57" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (18 samples, 0.07%)</title><rect x="220.5" y="1061" width="0.9" height="15.0" fill="rgb(205,91,48)" rx="2" ry="2" />
<text x="223.55" y="1071.5" ></text>
</g>
<g >
<title>alloc_pages_vma (33 samples, 0.13%)</title><rect x="39.8" y="901" width="1.5" height="15.0" fill="rgb(232,101,33)" rx="2" ry="2" />
<text x="42.83" y="911.5" ></text>
</g>
<g >
<title>HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::begin (3 samples, 0.01%)</title><rect x="124.5" y="1141" width="0.1" height="15.0" fill="rgb(215,200,17)" rx="2" ry="2" />
<text x="127.45" y="1151.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionNullBase&lt;true, DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::create (4 samples, 0.02%)</title><rect x="214.6" y="1125" width="0.1" height="15.0" fill="rgb(246,159,54)" rx="2" ry="2" />
<text x="217.56" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1106.0" y="901" width="0.2" height="15.0" fill="rgb(250,184,18)" rx="2" ry="2" />
<text x="1108.96" y="911.5" ></text>
</g>
<g >
<title>zap_page_range (6 samples, 0.02%)</title><rect x="509.0" y="821" width="0.2" height="15.0" fill="rgb(208,188,51)" rx="2" ry="2" />
<text x="511.97" y="831.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (106 samples, 0.40%)</title><rect x="1100.6" y="917" width="4.7" height="15.0" fill="rgb(214,38,37)" rx="2" ry="2" />
<text x="1103.56" y="927.5" ></text>
</g>
<g >
<title>native_flush_tlb (3 samples, 0.01%)</title><rect x="123.8" y="1061" width="0.1" height="15.0" fill="rgb(207,98,53)" rx="2" ry="2" />
<text x="126.78" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (18 samples, 0.07%)</title><rect x="204.8" y="1013" width="0.9" height="15.0" fill="rgb(220,148,8)" rx="2" ry="2" />
<text x="207.84" y="1023.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (68 samples, 0.26%)</title><rect x="1096.6" y="949" width="3.0" height="15.0" fill="rgb(231,87,54)" rx="2" ry="2" />
<text x="1099.56" y="959.5" ></text>
</g>
<g >
<title>clear_page_rep (10 samples, 0.04%)</title><rect x="119.0" y="981" width="0.4" height="15.0" fill="rgb(253,100,54)" rx="2" ry="2" />
<text x="121.96" y="991.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (5 samples, 0.02%)</title><rect x="1108.6" y="1013" width="0.2" height="15.0" fill="rgb(224,153,31)" rx="2" ry="2" />
<text x="1111.57" y="1023.5" ></text>
</g>
<g >
<title>ip6_xmit (9 samples, 0.03%)</title><rect x="1126.0" y="1061" width="0.4" height="15.0" fill="rgb(251,30,42)" rx="2" ry="2" />
<text x="1128.98" y="1071.5" ></text>
</g>
<g >
<title>ip6_xmit (5 samples, 0.02%)</title><rect x="1129.0" y="1109" width="0.3" height="15.0" fill="rgb(206,210,16)" rx="2" ry="2" />
<text x="1132.04" y="1119.5" ></text>
</g>
<g >
<title>vfs_read (101 samples, 0.39%)</title><rect x="1075.7" y="869" width="4.5" height="15.0" fill="rgb(254,73,51)" rx="2" ry="2" />
<text x="1078.68" y="879.5" ></text>
</g>
<g >
<title>swake_up_one (3 samples, 0.01%)</title><rect x="1151.6" y="1093" width="0.2" height="15.0" fill="rgb(252,170,25)" rx="2" ry="2" />
<text x="1154.62" y="1103.5" ></text>
</g>
<g >
<title>LZ4::decompress (27 samples, 0.10%)</title><rect x="1095.0" y="917" width="1.2" height="15.0" fill="rgb(217,86,19)" rx="2" ry="2" />
<text x="1098.03" y="927.5" ></text>
</g>
<g >
<title>update_blocked_averages (11 samples, 0.04%)</title><rect x="1137.5" y="1109" width="0.5" height="15.0" fill="rgb(223,49,14)" rx="2" ry="2" />
<text x="1140.54" y="1119.5" ></text>
</g>
<g >
<title>__x64_sys_execve (9 samples, 0.03%)</title><rect x="1189.3" y="1205" width="0.4" height="15.0" fill="rgb(222,228,30)" rx="2" ry="2" />
<text x="1192.28" y="1215.5" ></text>
</g>
<g >
<title>unmap_vmas (5 samples, 0.02%)</title><rect x="1189.5" y="1077" width="0.2" height="15.0" fill="rgb(210,54,28)" rx="2" ry="2" />
<text x="1192.46" y="1087.5" ></text>
</g>
<g >
<title>LZ4::decompress (53 samples, 0.20%)</title><rect x="1109.2" y="949" width="2.3" height="15.0" fill="rgb(253,139,26)" rx="2" ry="2" />
<text x="1112.16" y="959.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4 samples, 0.02%)</title><rect x="122.5" y="1077" width="0.2" height="15.0" fill="rgb(234,207,45)" rx="2" ry="2" />
<text x="125.52" y="1087.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (762 samples, 2.91%)</title><rect x="10.0" y="1141" width="34.3" height="15.0" fill="rgb(236,53,46)" rx="2" ry="2" />
<text x="13.04" y="1151.5" >DB..</text>
</g>
<g >
<title>arena_ralloc (575 samples, 2.19%)</title><rect x="328.4" y="1077" width="25.9" height="15.0" fill="rgb(217,165,19)" rx="2" ry="2" />
<text x="331.43" y="1087.5" >a..</text>
</g>
<g >
<title>arena_decay (20 samples, 0.08%)</title><rect x="328.7" y="1029" width="0.9" height="15.0" fill="rgb(224,220,31)" rx="2" ry="2" />
<text x="331.65" y="1039.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (15 samples, 0.06%)</title><rect x="189.8" y="1125" width="0.7" height="15.0" fill="rgb(254,102,49)" rx="2" ry="2" />
<text x="192.82" y="1135.5" ></text>
</g>
<g >
<title>task_tick_fair (17 samples, 0.06%)</title><rect x="1063.6" y="917" width="0.8" height="15.0" fill="rgb(211,106,49)" rx="2" ry="2" />
<text x="1066.63" y="927.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (218 samples, 0.83%)</title><rect x="1070.8" y="965" width="9.8" height="15.0" fill="rgb(216,121,28)" rx="2" ry="2" />
<text x="1073.83" y="975.5" ></text>
</g>
<g >
<title>handle_mm_fault (5 samples, 0.02%)</title><rect x="190.3" y="1077" width="0.2" height="15.0" fill="rgb(238,190,39)" rx="2" ry="2" />
<text x="193.27" y="1087.5" ></text>
</g>
<g >
<title>DB::ParserVariableArityOperatorList::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="405" width="0.3" height="15.0" fill="rgb(238,43,15)" rx="2" ry="2" />
<text x="517.59" y="415.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3 samples, 0.01%)</title><rect x="1134.0" y="1173" width="0.1" height="15.0" fill="rgb(230,98,2)" rx="2" ry="2" />
<text x="1136.99" y="1183.5" ></text>
</g>
<g >
<title>DB::ParserWithOptionalAlias::parseImpl (14 samples, 0.05%)</title><rect x="514.5" y="773" width="0.6" height="15.0" fill="rgb(237,202,47)" rx="2" ry="2" />
<text x="517.45" y="783.5" ></text>
</g>
<g >
<title>event_function (4 samples, 0.02%)</title><rect x="1139.9" y="917" width="0.2" height="15.0" fill="rgb(251,51,43)" rx="2" ry="2" />
<text x="1142.93" y="927.5" ></text>
</g>
<g >
<title>[clickhouse] (51 samples, 0.19%)</title><rect x="1129.3" y="1253" width="2.3" height="15.0" fill="rgb(247,16,25)" rx="2" ry="2" />
<text x="1132.31" y="1263.5" ></text>
</g>
<g >
<title>DB::AggregatedDataVariants::convertToTwoLevel (292 samples, 1.11%)</title><rect x="195.9" y="1157" width="13.2" height="15.0" fill="rgb(219,208,8)" rx="2" ry="2" />
<text x="198.94" y="1167.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (36 samples, 0.14%)</title><rect x="217.5" y="1109" width="1.6" height="15.0" fill="rgb(210,100,11)" rx="2" ry="2" />
<text x="220.49" y="1119.5" ></text>
</g>
<g >
<title>__GI___libc_open (6 samples, 0.02%)</title><rect x="1106.6" y="949" width="0.3" height="15.0" fill="rgb(207,53,34)" rx="2" ry="2" />
<text x="1109.64" y="959.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1188.1" y="1237" width="0.1" height="15.0" fill="rgb(207,34,15)" rx="2" ry="2" />
<text x="1191.07" y="1247.5" ></text>
</g>
<g >
<title>DB::MergeTreeBaseSelectBlockInputStream::readImpl (281 samples, 1.07%)</title><rect x="1108.5" y="1125" width="12.6" height="15.0" fill="rgb(237,183,6)" rx="2" ry="2" />
<text x="1111.48" y="1135.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (173 samples, 0.66%)</title><rect x="113.7" y="1109" width="7.8" height="15.0" fill="rgb(215,122,25)" rx="2" ry="2" />
<text x="116.70" y="1119.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (12 samples, 0.05%)</title><rect x="1100.6" y="885" width="0.5" height="15.0" fill="rgb(225,202,35)" rx="2" ry="2" />
<text x="1103.56" y="895.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (4 samples, 0.02%)</title><rect x="1186.0" y="1157" width="0.2" height="15.0" fill="rgb(244,197,12)" rx="2" ry="2" />
<text x="1189.00" y="1167.5" ></text>
</g>
<g >
<title>do_iter_read (31 samples, 0.12%)</title><rect x="1093.5" y="757" width="1.4" height="15.0" fill="rgb(245,119,47)" rx="2" ry="2" />
<text x="1096.50" y="767.5" ></text>
</g>
<g >
<title>__mod_node_page_state (3 samples, 0.01%)</title><rect x="397.3" y="1013" width="0.2" height="15.0" fill="rgb(231,133,41)" rx="2" ry="2" />
<text x="400.35" y="1023.5" ></text>
</g>
<g >
<title>memcpy (7 samples, 0.03%)</title><rect x="1116.7" y="997" width="0.3" height="15.0" fill="rgb(231,162,4)" rx="2" ry="2" />
<text x="1119.67" y="1007.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="202.5" y="1077" width="0.1" height="15.0" fill="rgb(231,169,21)" rx="2" ry="2" />
<text x="205.46" y="1087.5" ></text>
</g>
<g >
<title>path_openat (6 samples, 0.02%)</title><rect x="1106.6" y="869" width="0.3" height="15.0" fill="rgb(243,173,40)" rx="2" ry="2" />
<text x="1109.64" y="879.5" ></text>
</g>
<g >
<title>process_one_work (5 samples, 0.02%)</title><rect x="1136.4" y="1205" width="0.2" height="15.0" fill="rgb(250,141,49)" rx="2" ry="2" />
<text x="1139.37" y="1215.5" ></text>
</g>
<g >
<title>copy_user_generic_string (22 samples, 0.08%)</title><rect x="1084.7" y="693" width="1.0" height="15.0" fill="rgb(229,151,19)" rx="2" ry="2" />
<text x="1087.73" y="703.5" ></text>
</g>
<g >
<title>rcu_gp_kthread (78 samples, 0.30%)</title><rect x="1140.2" y="1221" width="3.5" height="15.0" fill="rgb(236,85,23)" rx="2" ry="2" />
<text x="1143.20" y="1231.5" ></text>
</g>
<g >
<title>poll (5 samples, 0.02%)</title><rect x="1187.2" y="1221" width="0.2" height="15.0" fill="rgb(236,87,13)" rx="2" ry="2" />
<text x="1190.21" y="1231.5" ></text>
</g>
<g >
<title>schedule (3 samples, 0.01%)</title><rect x="1133.0" y="1205" width="0.1" height="15.0" fill="rgb(232,81,49)" rx="2" ry="2" />
<text x="1136.00" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (9 samples, 0.03%)</title><rect x="104.3" y="997" width="0.4" height="15.0" fill="rgb(234,108,23)" rx="2" ry="2" />
<text x="107.34" y="1007.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (9 samples, 0.03%)</title><rect x="1126.0" y="1029" width="0.4" height="15.0" fill="rgb(213,194,35)" rx="2" ry="2" />
<text x="1128.98" y="1039.5" ></text>
</g>
<g >
<title>vfs_statx (7 samples, 0.03%)</title><rect x="1106.9" y="933" width="0.3" height="15.0" fill="rgb(232,27,21)" rx="2" ry="2" />
<text x="1109.91" y="943.5" ></text>
</g>
<g >
<title>DB::selectIndexImpl&lt;DB::ColumnVector&lt;unsigned char&gt; &gt; (93 samples, 0.35%)</title><rect x="525.7" y="1045" width="4.2" height="15.0" fill="rgb(224,212,2)" rx="2" ry="2" />
<text x="528.75" y="1055.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (20 samples, 0.08%)</title><rect x="514.4" y="965" width="0.9" height="15.0" fill="rgb(210,2,15)" rx="2" ry="2" />
<text x="517.41" y="975.5" ></text>
</g>
<g >
<title>update_blocked_averages (6 samples, 0.02%)</title><rect x="1143.4" y="1093" width="0.3" height="15.0" fill="rgb(251,227,11)" rx="2" ry="2" />
<text x="1146.44" y="1103.5" ></text>
</g>
<g >
<title>page_fault (6 samples, 0.02%)</title><rect x="1186.9" y="1237" width="0.3" height="15.0" fill="rgb(249,124,33)" rx="2" ry="2" />
<text x="1189.94" y="1247.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (16 samples, 0.06%)</title><rect x="204.9" y="997" width="0.8" height="15.0" fill="rgb(213,218,23)" rx="2" ry="2" />
<text x="207.93" y="1007.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::~IBlockInputStream (18 samples, 0.07%)</title><rect x="1123.6" y="965" width="0.9" height="15.0" fill="rgb(227,67,45)" rx="2" ry="2" />
<text x="1126.64" y="975.5" ></text>
</g>
<g >
<title>ioctl (5 samples, 0.02%)</title><rect x="1139.9" y="1157" width="0.2" height="15.0" fill="rgb(215,126,12)" rx="2" ry="2" />
<text x="1142.88" y="1167.5" ></text>
</g>
<g >
<title>swapper (939 samples, 3.58%)</title><rect x="1144.3" y="1269" width="42.3" height="15.0" fill="rgb(224,27,54)" rx="2" ry="2" />
<text x="1147.34" y="1279.5" >swa..</text>
</g>
<g >
<title>DB::MergeTreeThreadSelectBlockInputStream::getNewTask (56 samples, 0.21%)</title><rect x="1105.9" y="1077" width="2.5" height="15.0" fill="rgb(249,28,1)" rx="2" ry="2" />
<text x="1108.87" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (71 samples, 0.27%)</title><rect x="1113.2" y="933" width="3.2" height="15.0" fill="rgb(214,32,16)" rx="2" ry="2" />
<text x="1116.16" y="943.5" ></text>
</g>
<g >
<title>_raw_spin_lock (8 samples, 0.03%)</title><rect x="346.5" y="981" width="0.4" height="15.0" fill="rgb(254,125,16)" rx="2" ry="2" />
<text x="349.51" y="991.5" ></text>
</g>
<g >
<title>page_evictable (3 samples, 0.01%)</title><rect x="345.9" y="933" width="0.2" height="15.0" fill="rgb(248,43,26)" rx="2" ry="2" />
<text x="348.93" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1139.9" y="1141" width="0.2" height="15.0" fill="rgb(235,62,22)" rx="2" ry="2" />
<text x="1142.88" y="1151.5" ></text>
</g>
<g >
<title>find_busiest_group (3 samples, 0.01%)</title><rect x="1134.0" y="1141" width="0.1" height="15.0" fill="rgb(250,61,48)" rx="2" ry="2" />
<text x="1136.99" y="1151.5" ></text>
</g>
<g >
<title>large_palloc (6 samples, 0.02%)</title><rect x="506.0" y="965" width="0.3" height="15.0" fill="rgb(241,29,45)" rx="2" ry="2" />
<text x="509.00" y="975.5" ></text>
</g>
<g >
<title>[clickhouse] (10 samples, 0.04%)</title><rect x="331.4" y="1029" width="0.4" height="15.0" fill="rgb(208,90,50)" rx="2" ry="2" />
<text x="334.35" y="1039.5" ></text>
</g>
<g >
<title>__GI___libc_read (31 samples, 0.12%)</title><rect x="1093.5" y="869" width="1.4" height="15.0" fill="rgb(214,213,6)" rx="2" ry="2" />
<text x="1096.50" y="879.5" ></text>
</g>
<g >
<title>irq_work_interrupt (14 samples, 0.05%)</title><rect x="1153.3" y="1077" width="0.6" height="15.0" fill="rgb(253,137,10)" rx="2" ry="2" />
<text x="1156.29" y="1087.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (4 samples, 0.02%)</title><rect x="509.0" y="789" width="0.2" height="15.0" fill="rgb(254,66,16)" rx="2" ry="2" />
<text x="512.01" y="799.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_statistics (4 samples, 0.02%)</title><rect x="395.8" y="1013" width="0.2" height="15.0" fill="rgb(224,156,31)" rx="2" ry="2" />
<text x="398.78" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="1188.1" y="1173" width="0.1" height="15.0" fill="rgb(237,83,53)" rx="2" ry="2" />
<text x="1191.11" y="1183.5" ></text>
</g>
<g >
<title>down_read_trylock (210 samples, 0.80%)</title><rect x="363.8" y="1061" width="9.5" height="15.0" fill="rgb(247,182,32)" rx="2" ry="2" />
<text x="366.83" y="1071.5" ></text>
</g>
<g >
<title>realloc (4 samples, 0.02%)</title><rect x="1054.5" y="981" width="0.1" height="15.0" fill="rgb(235,16,0)" rx="2" ry="2" />
<text x="1057.45" y="991.5" ></text>
</g>
<g >
<title>clear_page_rep (261 samples, 1.00%)</title><rect x="383.6" y="981" width="11.7" height="15.0" fill="rgb(245,39,2)" rx="2" ry="2" />
<text x="386.58" y="991.5" ></text>
</g>
<g >
<title>__se_sys_futex (18 samples, 0.07%)</title><rect x="1124.9" y="1077" width="0.8" height="15.0" fill="rgb(224,101,27)" rx="2" ry="2" />
<text x="1127.86" y="1087.5" ></text>
</g>
<g >
<title>link_path_walk (5 samples, 0.02%)</title><rect x="1107.9" y="901" width="0.2" height="15.0" fill="rgb(227,103,52)" rx="2" ry="2" />
<text x="1110.85" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (15 samples, 0.06%)</title><rect x="1125.9" y="1221" width="0.7" height="15.0" fill="rgb(254,228,15)" rx="2" ry="2" />
<text x="1128.89" y="1231.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (7 samples, 0.03%)</title><rect x="1106.6" y="997" width="0.3" height="15.0" fill="rgb(215,169,30)" rx="2" ry="2" />
<text x="1109.59" y="1007.5" ></text>
</g>
<g >
<title>default_send_IPI_mask_sequence_phys (3 samples, 0.01%)</title><rect x="203.0" y="805" width="0.2" height="15.0" fill="rgb(234,39,21)" rx="2" ry="2" />
<text x="206.05" y="815.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::readData (251 samples, 0.96%)</title><rect x="1109.1" y="1029" width="11.3" height="15.0" fill="rgb(240,136,6)" rx="2" ry="2" />
<text x="1112.11" y="1039.5" ></text>
</g>
<g >
<title>DB::CreatingSetsBlockInputStream::~CreatingSetsBlockInputStream (18 samples, 0.07%)</title><rect x="1123.6" y="981" width="0.9" height="15.0" fill="rgb(224,147,24)" rx="2" ry="2" />
<text x="1126.64" y="991.5" ></text>
</g>
<g >
<title>alloc_pages_vma (19 samples, 0.07%)</title><rect x="111.4" y="981" width="0.9" height="15.0" fill="rgb(223,137,45)" rx="2" ry="2" />
<text x="114.40" y="991.5" ></text>
</g>
<g >
<title>[unknown] (26 samples, 0.10%)</title><rect x="1187.4" y="1253" width="1.2" height="15.0" fill="rgb(223,161,37)" rx="2" ry="2" />
<text x="1190.44" y="1263.5" ></text>
</g>
<g >
<title>schedule (26 samples, 0.10%)</title><rect x="1142.5" y="1189" width="1.2" height="15.0" fill="rgb(224,156,5)" rx="2" ry="2" />
<text x="1145.54" y="1199.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned char&gt;::deserializeBinaryBulk (34 samples, 0.13%)</title><rect x="1095.0" y="981" width="1.6" height="15.0" fill="rgb(217,151,5)" rx="2" ry="2" />
<text x="1098.03" y="991.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (81 samples, 0.31%)</title><rect x="1101.5" y="757" width="3.7" height="15.0" fill="rgb(210,166,31)" rx="2" ry="2" />
<text x="1104.51" y="767.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (31 samples, 0.12%)</title><rect x="1095.0" y="965" width="1.4" height="15.0" fill="rgb(227,82,46)" rx="2" ry="2" />
<text x="1098.03" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="509.0" y="869" width="0.2" height="15.0" fill="rgb(208,213,9)" rx="2" ry="2" />
<text x="511.97" y="879.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (12 samples, 0.05%)</title><rect x="328.8" y="837" width="0.5" height="15.0" fill="rgb(219,166,8)" rx="2" ry="2" />
<text x="331.79" y="847.5" ></text>
</g>
<g >
<title>release_pages (4 samples, 0.02%)</title><rect x="205.3" y="853" width="0.2" height="15.0" fill="rgb(218,184,50)" rx="2" ry="2" />
<text x="208.34" y="863.5" ></text>
</g>
<g >
<title>__se_sys_madvise (24 samples, 0.09%)</title><rect x="201.1" y="965" width="1.1" height="15.0" fill="rgb(242,93,20)" rx="2" ry="2" />
<text x="204.11" y="975.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (5 samples, 0.02%)</title><rect x="1092.8" y="885" width="0.3" height="15.0" fill="rgb(223,220,22)" rx="2" ry="2" />
<text x="1095.83" y="895.5" ></text>
</g>
<g >
<title>HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::resize (1,912 samples, 7.29%)</title><rect x="318.6" y="1125" width="86.0" height="15.0" fill="rgb(254,63,14)" rx="2" ry="2" />
<text x="321.58" y="1135.5" >HashTable&lt;..</text>
</g>
<g >
<title>dbs_work_handler (4 samples, 0.02%)</title><rect x="1134.2" y="1189" width="0.2" height="15.0" fill="rgb(218,182,12)" rx="2" ry="2" />
<text x="1137.21" y="1199.5" ></text>
</g>
<g >
<title>__se_sys_madvise (3 samples, 0.01%)</title><rect x="506.0" y="837" width="0.1" height="15.0" fill="rgb(215,46,54)" rx="2" ry="2" />
<text x="509.00" y="847.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (12 samples, 0.05%)</title><rect x="205.0" y="885" width="0.5" height="15.0" fill="rgb(245,46,32)" rx="2" ry="2" />
<text x="207.98" y="895.5" ></text>
</g>
<g >
<title>worker_thread (4 samples, 0.02%)</title><rect x="1135.9" y="1221" width="0.2" height="15.0" fill="rgb(253,145,17)" rx="2" ry="2" />
<text x="1138.92" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="331.2" y="997" width="0.2" height="15.0" fill="rgb(249,183,46)" rx="2" ry="2" />
<text x="334.22" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="1132.5" y="1221" width="0.3" height="15.0" fill="rgb(221,221,45)" rx="2" ry="2" />
<text x="1135.50" y="1231.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (762 samples, 2.91%)</title><rect x="10.0" y="1109" width="34.3" height="15.0" fill="rgb(217,133,17)" rx="2" ry="2" />
<text x="13.04" y="1119.5" >DB..</text>
</g>
<g >
<title>page_mapping (3 samples, 0.01%)</title><rect x="380.4" y="965" width="0.2" height="15.0" fill="rgb(252,66,26)" rx="2" ry="2" />
<text x="383.43" y="975.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (5 samples, 0.02%)</title><rect x="1118.1" y="981" width="0.2" height="15.0" fill="rgb(250,181,49)" rx="2" ry="2" />
<text x="1121.11" y="991.5" ></text>
</g>
<g >
<title>call_function_interrupt (5 samples, 0.02%)</title><rect x="121.7" y="1109" width="0.2" height="15.0" fill="rgb(239,182,0)" rx="2" ry="2" />
<text x="124.66" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (9 samples, 0.03%)</title><rect x="200.7" y="1109" width="0.4" height="15.0" fill="rgb(254,127,13)" rx="2" ry="2" />
<text x="203.71" y="1119.5" ></text>
</g>
<g >
<title>copyout (61 samples, 0.23%)</title><rect x="1101.6" y="709" width="2.8" height="15.0" fill="rgb(242,92,46)" rx="2" ry="2" />
<text x="1104.64" y="719.5" ></text>
</g>
<g >
<title>[clickhouse] (36 samples, 0.14%)</title><rect x="1093.3" y="949" width="1.6" height="15.0" fill="rgb(227,40,48)" rx="2" ry="2" />
<text x="1096.28" y="959.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (16 samples, 0.06%)</title><rect x="514.4" y="789" width="0.7" height="15.0" fill="rgb(234,26,51)" rx="2" ry="2" />
<text x="517.41" y="799.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (21 samples, 0.08%)</title><rect x="201.1" y="933" width="1.0" height="15.0" fill="rgb(241,191,1)" rx="2" ry="2" />
<text x="204.11" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (15 samples, 0.06%)</title><rect x="1106.5" y="1013" width="0.7" height="15.0" fill="rgb(207,17,13)" rx="2" ry="2" />
<text x="1109.55" y="1023.5" ></text>
</g>
<g >
<title>ksys_read (102 samples, 0.39%)</title><rect x="1075.6" y="885" width="4.6" height="15.0" fill="rgb(250,18,9)" rx="2" ry="2" />
<text x="1078.64" y="895.5" ></text>
</g>
<g >
<title>note_gp_changes (5 samples, 0.02%)</title><rect x="1151.3" y="1093" width="0.2" height="15.0" fill="rgb(254,45,27)" rx="2" ry="2" />
<text x="1154.31" y="1103.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (5 samples, 0.02%)</title><rect x="1120.7" y="1029" width="0.2" height="15.0" fill="rgb(207,200,7)" rx="2" ry="2" />
<text x="1123.67" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (9 samples, 0.03%)</title><rect x="330.8" y="997" width="0.4" height="15.0" fill="rgb(251,165,31)" rx="2" ry="2" />
<text x="333.81" y="1007.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (19 samples, 0.07%)</title><rect x="329.9" y="869" width="0.8" height="15.0" fill="rgb(230,118,26)" rx="2" ry="2" />
<text x="332.87" y="879.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (15 samples, 0.06%)</title><rect x="331.9" y="981" width="0.7" height="15.0" fill="rgb(240,181,54)" rx="2" ry="2" />
<text x="334.94" y="991.5" ></text>
</g>
<g >
<title>DB::ParserVariableArityOperatorList::parseImpl (9 samples, 0.03%)</title><rect x="514.5" y="661" width="0.4" height="15.0" fill="rgb(253,140,26)" rx="2" ry="2" />
<text x="517.54" y="671.5" ></text>
</g>
<g >
<title>copy_page_to_iter (79 samples, 0.30%)</title><rect x="1075.7" y="773" width="3.6" height="15.0" fill="rgb(232,167,1)" rx="2" ry="2" />
<text x="1078.73" y="783.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (3 samples, 0.01%)</title><rect x="124.3" y="1125" width="0.2" height="15.0" fill="rgb(218,219,4)" rx="2" ry="2" />
<text x="127.32" y="1135.5" ></text>
</g>
<g >
<title>__fput (4 samples, 0.02%)</title><rect x="1129.7" y="1125" width="0.2" height="15.0" fill="rgb(224,146,29)" rx="2" ry="2" />
<text x="1132.72" y="1135.5" ></text>
</g>
<g >
<title>DB::Block::erase (12 samples, 0.05%)</title><rect x="487.8" y="1109" width="0.5" height="15.0" fill="rgb(254,35,21)" rx="2" ry="2" />
<text x="490.78" y="1119.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3 samples, 0.01%)</title><rect x="206.2" y="997" width="0.2" height="15.0" fill="rgb(223,66,15)" rx="2" ry="2" />
<text x="209.24" y="1007.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (5 samples, 0.02%)</title><rect x="1116.0" y="725" width="0.3" height="15.0" fill="rgb(246,175,5)" rx="2" ry="2" />
<text x="1119.04" y="735.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (30 samples, 0.11%)</title><rect x="119.7" y="933" width="1.3" height="15.0" fill="rgb(221,23,9)" rx="2" ry="2" />
<text x="122.68" y="943.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (12 samples, 0.05%)</title><rect x="1123.9" y="661" width="0.6" height="15.0" fill="rgb(223,112,49)" rx="2" ry="2" />
<text x="1126.91" y="671.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (11 samples, 0.04%)</title><rect x="220.8" y="1013" width="0.5" height="15.0" fill="rgb(224,179,30)" rx="2" ry="2" />
<text x="223.77" y="1023.5" ></text>
</g>
<g >
<title>__handle_mm_fault (45 samples, 0.17%)</title><rect x="309.2" y="1061" width="2.0" height="15.0" fill="rgb(209,25,2)" rx="2" ry="2" />
<text x="312.22" y="1071.5" ></text>
</g>
<g >
<title>alloc_pages_vma (320 samples, 1.22%)</title><rect x="381.4" y="1029" width="14.4" height="15.0" fill="rgb(232,84,40)" rx="2" ry="2" />
<text x="384.38" y="1039.5" ></text>
</g>
<g >
<title>path_lookupat (6 samples, 0.02%)</title><rect x="1107.9" y="917" width="0.2" height="15.0" fill="rgb(222,173,2)" rx="2" ry="2" />
<text x="1110.85" y="927.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (4 samples, 0.02%)</title><rect x="1084.1" y="949" width="0.2" height="15.0" fill="rgb(228,136,4)" rx="2" ry="2" />
<text x="1087.10" y="959.5" ></text>
</g>
<g >
<title>arena_decay (24 samples, 0.09%)</title><rect x="201.1" y="1077" width="1.1" height="15.0" fill="rgb(236,65,17)" rx="2" ry="2" />
<text x="204.11" y="1087.5" ></text>
</g>
<g >
<title>find_busiest_group (4 samples, 0.02%)</title><rect x="1128.8" y="965" width="0.2" height="15.0" fill="rgb(249,5,9)" rx="2" ry="2" />
<text x="1131.82" y="975.5" ></text>
</g>
<g >
<title>ttwu_do_activate.isra.7 (6 samples, 0.02%)</title><rect x="1153.6" y="965" width="0.3" height="15.0" fill="rgb(230,223,27)" rx="2" ry="2" />
<text x="1156.65" y="975.5" ></text>
</g>
<g >
<title>kworker/58:1-ev (45 samples, 0.17%)</title><rect x="1136.1" y="1269" width="2.1" height="15.0" fill="rgb(211,5,27)" rx="2" ry="2" />
<text x="1139.15" y="1279.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="461.8" y="1077" width="0.1" height="15.0" fill="rgb(252,127,9)" rx="2" ry="2" />
<text x="464.77" y="1087.5" ></text>
</g>
<g >
<title>__netlink_lookup (3 samples, 0.01%)</title><rect x="1069.9" y="885" width="0.2" height="15.0" fill="rgb(221,110,18)" rx="2" ry="2" />
<text x="1072.93" y="895.5" ></text>
</g>
<g >
<title>irq_exit (110 samples, 0.42%)</title><rect x="1150.5" y="1141" width="5.0" height="15.0" fill="rgb(211,130,10)" rx="2" ry="2" />
<text x="1153.55" y="1151.5" ></text>
</g>
<g >
<title>update_process_times (14 samples, 0.05%)</title><rect x="404.7" y="1045" width="0.6" height="15.0" fill="rgb(237,96,13)" rx="2" ry="2" />
<text x="407.68" y="1055.5" ></text>
</g>
<g >
<title>[clickhouse] (16 samples, 0.06%)</title><rect x="331.9" y="1013" width="0.7" height="15.0" fill="rgb(245,217,7)" rx="2" ry="2" />
<text x="334.89" y="1023.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (9 samples, 0.03%)</title><rect x="1092.3" y="789" width="0.4" height="15.0" fill="rgb(207,152,36)" rx="2" ry="2" />
<text x="1095.33" y="799.5" ></text>
</g>
<g >
<title>malloc_default (3 samples, 0.01%)</title><rect x="1116.5" y="981" width="0.2" height="15.0" fill="rgb(242,228,13)" rx="2" ry="2" />
<text x="1119.53" y="991.5" ></text>
</g>
<g >
<title>DB::DataTypeFixedString::deserializeBinaryBulk (175 samples, 0.67%)</title><rect x="1109.1" y="1013" width="7.9" height="15.0" fill="rgb(215,183,46)" rx="2" ry="2" />
<text x="1112.11" y="1023.5" ></text>
</g>
<g >
<title>ip6_output (9 samples, 0.03%)</title><rect x="1126.0" y="1045" width="0.4" height="15.0" fill="rgb(248,116,34)" rx="2" ry="2" />
<text x="1128.98" y="1055.5" ></text>
</g>
<g >
<title>kworker/10:1-ev (15 samples, 0.06%)</title><rect x="1133.1" y="1269" width="0.7" height="15.0" fill="rgb(230,173,47)" rx="2" ry="2" />
<text x="1136.13" y="1279.5" ></text>
</g>
<g >
<title>DB::ColumnString::index (221 samples, 0.84%)</title><rect x="515.8" y="1061" width="9.9" height="15.0" fill="rgb(218,192,15)" rx="2" ry="2" />
<text x="518.76" y="1071.5" ></text>
</g>
<g >
<title>__madvise (5 samples, 0.02%)</title><rect x="487.1" y="1045" width="0.2" height="15.0" fill="rgb(210,91,10)" rx="2" ry="2" />
<text x="490.06" y="1055.5" ></text>
</g>
<g >
<title>arena_decay (7 samples, 0.03%)</title><rect x="208.6" y="1077" width="0.3" height="15.0" fill="rgb(247,126,5)" rx="2" ry="2" />
<text x="211.62" y="1087.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7 samples, 0.03%)</title><rect x="207.5" y="997" width="0.3" height="15.0" fill="rgb(236,212,26)" rx="2" ry="2" />
<text x="210.45" y="1007.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (9 samples, 0.03%)</title><rect x="1092.3" y="773" width="0.4" height="15.0" fill="rgb(243,27,44)" rx="2" ry="2" />
<text x="1095.33" y="783.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1139.9" y="1173" width="0.2" height="15.0" fill="rgb(222,55,45)" rx="2" ry="2" />
<text x="1142.88" y="1183.5" ></text>
</g>
<g >
<title>zap_page_range (4 samples, 0.02%)</title><rect x="1080.7" y="789" width="0.2" height="15.0" fill="rgb(246,62,5)" rx="2" ry="2" />
<text x="1083.68" y="799.5" ></text>
</g>
<g >
<title>__tick_nohz_idle_restart_tick (8 samples, 0.03%)</title><rect x="1185.9" y="1173" width="0.3" height="15.0" fill="rgb(218,75,33)" rx="2" ry="2" />
<text x="1188.86" y="1183.5" ></text>
</g>
<g >
<title>large_palloc (10 samples, 0.04%)</title><rect x="104.3" y="1045" width="0.5" height="15.0" fill="rgb(230,113,4)" rx="2" ry="2" />
<text x="107.34" y="1055.5" ></text>
</g>
<g >
<title>wp_page_copy (95 samples, 0.36%)</title><rect x="39.2" y="917" width="4.3" height="15.0" fill="rgb(237,186,54)" rx="2" ry="2" />
<text x="42.24" y="927.5" ></text>
</g>
<g >
<title>__sched_text_start (29 samples, 0.11%)</title><rect x="1130.2" y="1077" width="1.3" height="15.0" fill="rgb(219,19,29)" rx="2" ry="2" />
<text x="1133.17" y="1087.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (248 samples, 0.95%)</title><rect x="1172.2" y="1157" width="11.2" height="15.0" fill="rgb(214,220,40)" rx="2" ry="2" />
<text x="1175.23" y="1167.5" ></text>
</g>
<g >
<title>__se_sys_newstat (7 samples, 0.03%)</title><rect x="1106.9" y="949" width="0.3" height="15.0" fill="rgb(218,65,12)" rx="2" ry="2" />
<text x="1109.91" y="959.5" ></text>
</g>
<g >
<title>update_nohz_stats (14 samples, 0.05%)</title><rect x="1130.7" y="1013" width="0.6" height="15.0" fill="rgb(224,199,20)" rx="2" ry="2" />
<text x="1133.71" y="1023.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (5 samples, 0.02%)</title><rect x="1129.0" y="1077" width="0.3" height="15.0" fill="rgb(239,148,3)" rx="2" ry="2" />
<text x="1132.04" y="1087.5" ></text>
</g>
<g >
<title>__GI___libc_read (9 samples, 0.03%)</title><rect x="1092.3" y="917" width="0.4" height="15.0" fill="rgb(230,22,5)" rx="2" ry="2" />
<text x="1095.33" y="927.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="1093.3" y="837" width="0.2" height="15.0" fill="rgb(239,171,7)" rx="2" ry="2" />
<text x="1096.28" y="847.5" ></text>
</g>
<g >
<title>irq_work_run (12 samples, 0.05%)</title><rect x="1153.4" y="1045" width="0.5" height="15.0" fill="rgb(251,140,48)" rx="2" ry="2" />
<text x="1156.38" y="1055.5" ></text>
</g>
<g >
<title>DB::FunctionBuilderImpl::getReturnTypeWithoutLowCardinality (22 samples, 0.08%)</title><rect x="514.4" y="1045" width="1.0" height="15.0" fill="rgb(229,106,51)" rx="2" ry="2" />
<text x="517.36" y="1055.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (18 samples, 0.07%)</title><rect x="1123.6" y="1029" width="0.9" height="15.0" fill="rgb(252,165,9)" rx="2" ry="2" />
<text x="1126.64" y="1039.5" ></text>
</g>
<g >
<title>vfs_read (9 samples, 0.03%)</title><rect x="1092.3" y="853" width="0.4" height="15.0" fill="rgb(236,33,27)" rx="2" ry="2" />
<text x="1095.33" y="863.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (3 samples, 0.01%)</title><rect x="395.4" y="981" width="0.1" height="15.0" fill="rgb(241,171,34)" rx="2" ry="2" />
<text x="398.37" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1108.6" y="1029" width="0.2" height="15.0" fill="rgb(239,62,34)" rx="2" ry="2" />
<text x="1111.57" y="1039.5" ></text>
</g>
<g >
<title>free_unref_page_list (5 samples, 0.02%)</title><rect x="332.3" y="821" width="0.3" height="15.0" fill="rgb(224,128,44)" rx="2" ry="2" />
<text x="335.34" y="831.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (6 samples, 0.02%)</title><rect x="1145.1" y="1157" width="0.3" height="15.0" fill="rgb(249,153,7)" rx="2" ry="2" />
<text x="1148.10" y="1167.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="208.2" y="1109" width="0.2" height="15.0" fill="rgb(213,33,4)" rx="2" ry="2" />
<text x="211.22" y="1119.5" ></text>
</g>
<g >
<title>scheduler_tick (4 samples, 0.02%)</title><rect x="186.8" y="1013" width="0.2" height="15.0" fill="rgb(214,52,21)" rx="2" ry="2" />
<text x="189.80" y="1023.5" ></text>
</g>
<g >
<title>arena_tcache_fill_small (3 samples, 0.01%)</title><rect x="208.9" y="1077" width="0.2" height="15.0" fill="rgb(206,196,53)" rx="2" ry="2" />
<text x="211.94" y="1087.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (3 samples, 0.01%)</title><rect x="42.7" y="853" width="0.1" height="15.0" fill="rgb(220,97,31)" rx="2" ry="2" />
<text x="45.66" y="863.5" ></text>
</g>
<g >
<title>DB::DataTypeFactory::get (22 samples, 0.08%)</title><rect x="514.4" y="1013" width="1.0" height="15.0" fill="rgb(246,227,45)" rx="2" ry="2" />
<text x="517.36" y="1023.5" ></text>
</g>
<g >
<title>irq_exit (6 samples, 0.02%)</title><rect x="1064.5" y="997" width="0.3" height="15.0" fill="rgb(227,99,12)" rx="2" ry="2" />
<text x="1067.48" y="1007.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImplCase&lt;false, DB::AggregationMethodKeysFixed&lt;HashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;, false, false&gt; &gt; (280 samples, 1.07%)</title><rect x="209.1" y="1141" width="12.6" height="15.0" fill="rgb(236,33,12)" rx="2" ry="2" />
<text x="212.12" y="1151.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (4 samples, 0.02%)</title><rect x="1080.7" y="869" width="0.2" height="15.0" fill="rgb(212,69,6)" rx="2" ry="2" />
<text x="1083.68" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (37 samples, 0.14%)</title><rect x="202.7" y="965" width="1.7" height="15.0" fill="rgb(244,135,25)" rx="2" ry="2" />
<text x="205.73" y="975.5" ></text>
</g>
<g >
<title>kthread (15 samples, 0.06%)</title><rect x="1134.2" y="1237" width="0.7" height="15.0" fill="rgb(213,62,37)" rx="2" ry="2" />
<text x="1137.21" y="1247.5" ></text>
</g>
<g >
<title>__libc_send (15 samples, 0.06%)</title><rect x="1125.9" y="1253" width="0.7" height="15.0" fill="rgb(250,57,10)" rx="2" ry="2" />
<text x="1128.89" y="1263.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.03%)</title><rect x="1189.3" y="1221" width="0.4" height="15.0" fill="rgb(208,221,5)" rx="2" ry="2" />
<text x="1192.28" y="1231.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned char&gt;::deserializeBinaryBulk (22 samples, 0.08%)</title><rect x="1117.0" y="997" width="1.0" height="15.0" fill="rgb(252,223,30)" rx="2" ry="2" />
<text x="1120.03" y="1007.5" ></text>
</g>
<g >
<title>malloc_default (5 samples, 0.02%)</title><rect x="1080.7" y="949" width="0.2" height="15.0" fill="rgb(209,220,48)" rx="2" ry="2" />
<text x="1083.68" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.03%)</title><rect x="330.9" y="981" width="0.3" height="15.0" fill="rgb(254,28,1)" rx="2" ry="2" />
<text x="333.90" y="991.5" ></text>
</g>
<g >
<title>worker_thread (15 samples, 0.06%)</title><rect x="1133.1" y="1221" width="0.7" height="15.0" fill="rgb(205,177,39)" rx="2" ry="2" />
<text x="1136.13" y="1231.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (3 samples, 0.01%)</title><rect x="409.8" y="1125" width="0.1" height="15.0" fill="rgb(233,60,9)" rx="2" ry="2" />
<text x="412.77" y="1135.5" ></text>
</g>
<g >
<title>__lru_cache_add (6 samples, 0.02%)</title><rect x="118.4" y="1029" width="0.2" height="15.0" fill="rgb(206,165,22)" rx="2" ry="2" />
<text x="121.38" y="1039.5" ></text>
</g>
<g >
<title>try_to_unmap (26 samples, 0.10%)</title><rect x="112.4" y="949" width="1.2" height="15.0" fill="rgb(207,147,23)" rx="2" ry="2" />
<text x="115.39" y="959.5" ></text>
</g>
<g >
<title>large_palloc (3 samples, 0.01%)</title><rect x="1105.2" y="869" width="0.1" height="15.0" fill="rgb(222,46,7)" rx="2" ry="2" />
<text x="1108.20" y="879.5" ></text>
</g>
<g >
<title>irq_work_interrupt (3 samples, 0.01%)</title><rect x="1183.4" y="1173" width="0.1" height="15.0" fill="rgb(236,174,2)" rx="2" ry="2" />
<text x="1186.39" y="1183.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="341" width="0.3" height="15.0" fill="rgb(224,119,11)" rx="2" ry="2" />
<text x="517.59" y="351.5" ></text>
</g>
<g >
<title>__se_sys_madvise (16 samples, 0.06%)</title><rect x="204.9" y="933" width="0.8" height="15.0" fill="rgb(243,138,3)" rx="2" ry="2" />
<text x="207.93" y="943.5" ></text>
</g>
<g >
<title>_init (13 samples, 0.05%)</title><rect x="1188.7" y="1253" width="0.5" height="15.0" fill="rgb(224,140,53)" rx="2" ry="2" />
<text x="1191.65" y="1263.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::readRows (784 samples, 2.99%)</title><rect x="1070.3" y="1013" width="35.3" height="15.0" fill="rgb(206,36,8)" rx="2" ry="2" />
<text x="1073.29" y="1023.5" >DB..</text>
</g>
<g >
<title>enqueue_task_fair (6 samples, 0.02%)</title><rect x="1153.6" y="949" width="0.3" height="15.0" fill="rgb(213,81,12)" rx="2" ry="2" />
<text x="1156.65" y="959.5" ></text>
</g>
<g >
<title>dequeue_task_fair (5 samples, 0.02%)</title><rect x="1136.6" y="1173" width="0.3" height="15.0" fill="rgb(247,206,49)" rx="2" ry="2" />
<text x="1139.64" y="1183.5" ></text>
</g>
<g >
<title>do_epoll_create (4 samples, 0.02%)</title><rect x="1124.6" y="1029" width="0.2" height="15.0" fill="rgb(240,64,40)" rx="2" ry="2" />
<text x="1127.59" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.03%)</title><rect x="208.6" y="1045" width="0.3" height="15.0" fill="rgb(240,141,49)" rx="2" ry="2" />
<text x="211.62" y="1055.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertDefault (20 samples, 0.08%)</title><rect x="974.1" y="1029" width="0.9" height="15.0" fill="rgb(231,47,28)" rx="2" ry="2" />
<text x="977.06" y="1039.5" ></text>
</g>
<g >
<title>DB::ExpressionActions::execute (11,977 samples, 45.66%)</title><rect x="530.5" y="1109" width="538.8" height="15.0" fill="rgb(234,88,53)" rx="2" ry="2" />
<text x="533.47" y="1119.5" >DB::ExpressionActions::execute</text>
</g>
<g >
<title>page_fault (11 samples, 0.04%)</title><rect x="206.1" y="1061" width="0.5" height="15.0" fill="rgb(219,97,7)" rx="2" ry="2" />
<text x="209.06" y="1071.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (29 samples, 0.11%)</title><rect x="42.2" y="885" width="1.3" height="15.0" fill="rgb(238,0,47)" rx="2" ry="2" />
<text x="45.21" y="895.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt; &gt;::addFree (50 samples, 0.19%)</title><rect x="476.2" y="1141" width="2.3" height="15.0" fill="rgb(244,95,24)" rx="2" ry="2" />
<text x="479.21" y="1151.5" ></text>
</g>
<g >
<title>page_evictable (3 samples, 0.01%)</title><rect x="39.6" y="853" width="0.2" height="15.0" fill="rgb(244,10,49)" rx="2" ry="2" />
<text x="42.65" y="863.5" ></text>
</g>
<g >
<title>kthread (42 samples, 0.16%)</title><rect x="1136.3" y="1237" width="1.9" height="15.0" fill="rgb(237,184,11)" rx="2" ry="2" />
<text x="1139.28" y="1247.5" ></text>
</g>
<g >
<title>process_one_work (4 samples, 0.02%)</title><rect x="1138.3" y="1205" width="0.1" height="15.0" fill="rgb(254,54,7)" rx="2" ry="2" />
<text x="1141.26" y="1215.5" ></text>
</g>
<g >
<title>page_fault (7 samples, 0.03%)</title><rect x="1187.8" y="1221" width="0.3" height="15.0" fill="rgb(226,63,3)" rx="2" ry="2" />
<text x="1190.75" y="1231.5" ></text>
</g>
<g >
<title>extent_alloc_wrapper (9 samples, 0.03%)</title><rect x="330.8" y="1013" width="0.4" height="15.0" fill="rgb(218,49,4)" rx="2" ry="2" />
<text x="333.81" y="1023.5" ></text>
</g>
<g >
<title>unmap_page_range (17 samples, 0.06%)</title><rect x="1123.7" y="677" width="0.8" height="15.0" fill="rgb(245,140,51)" rx="2" ry="2" />
<text x="1126.69" y="687.5" ></text>
</g>
<g >
<title>swake_up_locked (3 samples, 0.01%)</title><rect x="1151.6" y="1077" width="0.2" height="15.0" fill="rgb(241,201,28)" rx="2" ry="2" />
<text x="1154.62" y="1087.5" ></text>
</g>
<g >
<title>large_dalloc (3 samples, 0.01%)</title><rect x="487.9" y="1029" width="0.1" height="15.0" fill="rgb(221,24,25)" rx="2" ry="2" />
<text x="490.91" y="1039.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (7 samples, 0.03%)</title><rect x="104.3" y="869" width="0.4" height="15.0" fill="rgb(221,76,11)" rx="2" ry="2" />
<text x="107.34" y="879.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1105.2" y="821" width="0.1" height="15.0" fill="rgb(218,155,16)" rx="2" ry="2" />
<text x="1108.20" y="831.5" ></text>
</g>
<g >
<title>call_function_interrupt (7 samples, 0.03%)</title><rect x="360.1" y="1093" width="0.3" height="15.0" fill="rgb(206,107,1)" rx="2" ry="2" />
<text x="363.05" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1106.3" y="949" width="0.1" height="15.0" fill="rgb(217,7,54)" rx="2" ry="2" />
<text x="1109.28" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (35 samples, 0.13%)</title><rect x="1130.0" y="1173" width="1.6" height="15.0" fill="rgb(219,30,19)" rx="2" ry="2" />
<text x="1133.03" y="1183.5" ></text>
</g>
<g >
<title>DB::ParserLambdaExpression::parseImpl (12 samples, 0.05%)</title><rect x="514.5" y="741" width="0.6" height="15.0" fill="rgb(207,188,21)" rx="2" ry="2" />
<text x="517.54" y="751.5" ></text>
</g>
<g >
<title>DB::ColumnString::serializeValueIntoArena (36 samples, 0.14%)</title><rect x="452.1" y="1125" width="1.6" height="15.0" fill="rgb(211,31,34)" rx="2" ry="2" />
<text x="455.10" y="1135.5" ></text>
</g>
<g >
<title>ksys_read (82 samples, 0.31%)</title><rect x="1101.5" y="837" width="3.7" height="15.0" fill="rgb(224,86,52)" rx="2" ry="2" />
<text x="1104.46" y="847.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (5 samples, 0.02%)</title><rect x="1150.0" y="1045" width="0.2" height="15.0" fill="rgb(218,55,18)" rx="2" ry="2" />
<text x="1152.96" y="1055.5" ></text>
</g>
<g >
<title>ret_from_fork (42 samples, 0.16%)</title><rect x="1136.3" y="1253" width="1.9" height="15.0" fill="rgb(215,94,10)" rx="2" ry="2" />
<text x="1139.28" y="1263.5" ></text>
</g>
<g >
<title>down_read_trylock (63 samples, 0.24%)</title><rect x="340.0" y="1013" width="2.9" height="15.0" fill="rgb(209,137,45)" rx="2" ry="2" />
<text x="343.03" y="1023.5" ></text>
</g>
<g >
<title>DB::CreatingSetsBlockInputStream::createOne (762 samples, 2.91%)</title><rect x="10.0" y="1061" width="34.3" height="15.0" fill="rgb(236,61,23)" rx="2" ry="2" />
<text x="13.04" y="1071.5" >DB..</text>
</g>
<g >
<title>__do_page_fault (28 samples, 0.11%)</title><rect x="220.3" y="1077" width="1.3" height="15.0" fill="rgb(240,173,6)" rx="2" ry="2" />
<text x="223.32" y="1087.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="1062.5" y="949" width="0.1" height="15.0" fill="rgb(253,61,39)" rx="2" ry="2" />
<text x="1065.50" y="959.5" ></text>
</g>
<g >
<title>__xstat64 (6 samples, 0.02%)</title><rect x="1107.9" y="1013" width="0.2" height="15.0" fill="rgb(229,201,43)" rx="2" ry="2" />
<text x="1110.85" y="1023.5" ></text>
</g>
<g >
<title>vfs_read (39 samples, 0.15%)</title><rect x="1118.5" y="853" width="1.8" height="15.0" fill="rgb(236,38,2)" rx="2" ry="2" />
<text x="1121.51" y="863.5" ></text>
</g>
<g >
<title>mem_cgroup_commit_charge (4 samples, 0.02%)</title><rect x="395.8" y="1029" width="0.2" height="15.0" fill="rgb(248,229,41)" rx="2" ry="2" />
<text x="398.78" y="1039.5" ></text>
</g>
<g >
<title>__vfs_read (31 samples, 0.12%)</title><rect x="1093.5" y="789" width="1.4" height="15.0" fill="rgb(249,66,43)" rx="2" ry="2" />
<text x="1096.50" y="799.5" ></text>
</g>
<g >
<title>alloc_pages_vma (7 samples, 0.03%)</title><rect x="207.5" y="1029" width="0.3" height="15.0" fill="rgb(218,71,50)" rx="2" ry="2" />
<text x="210.45" y="1039.5" ></text>
</g>
<g >
<title>Poco::ThreadImpl::runnableEntry (51 samples, 0.19%)</title><rect x="1129.3" y="1237" width="2.3" height="15.0" fill="rgb(226,25,27)" rx="2" ry="2" />
<text x="1132.31" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="506.0" y="869" width="0.1" height="15.0" fill="rgb(210,167,54)" rx="2" ry="2" />
<text x="509.00" y="879.5" ></text>
</g>
<g >
<title>netlink_sendmsg (11 samples, 0.04%)</title><rect x="1069.6" y="933" width="0.5" height="15.0" fill="rgb(209,207,40)" rx="2" ry="2" />
<text x="1072.57" y="943.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (3 samples, 0.01%)</title><rect x="397.5" y="1045" width="0.2" height="15.0" fill="rgb(245,88,2)" rx="2" ry="2" />
<text x="400.53" y="1055.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (12 samples, 0.05%)</title><rect x="1100.6" y="901" width="0.5" height="15.0" fill="rgb(231,23,54)" rx="2" ry="2" />
<text x="1103.56" y="911.5" ></text>
</g>
<g >
<title>copy_user_generic_string (7 samples, 0.03%)</title><rect x="1092.3" y="725" width="0.3" height="15.0" fill="rgb(240,163,17)" rx="2" ry="2" />
<text x="1095.33" y="735.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt;::add (6 samples, 0.02%)</title><rect x="214.7" y="1125" width="0.3" height="15.0" fill="rgb(249,219,4)" rx="2" ry="2" />
<text x="217.74" y="1135.5" ></text>
</g>
<g >
<title>std::vector&lt;DB::ColumnWithTypeAndName, std::allocator&lt;DB::ColumnWithTypeAndName&gt; &gt;::~vector (3 samples, 0.01%)</title><rect x="530.3" y="1109" width="0.2" height="15.0" fill="rgb(246,47,22)" rx="2" ry="2" />
<text x="533.34" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1107.9" y="981" width="0.2" height="15.0" fill="rgb(254,39,44)" rx="2" ry="2" />
<text x="1110.85" y="991.5" ></text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="1054.5" y="949" width="0.1" height="15.0" fill="rgb(229,178,41)" rx="2" ry="2" />
<text x="1057.50" y="959.5" ></text>
</g>
<g >
<title>find_busiest_group (17 samples, 0.06%)</title><rect x="1152.3" y="1077" width="0.8" height="15.0" fill="rgb(232,223,42)" rx="2" ry="2" />
<text x="1155.30" y="1087.5" ></text>
</g>
<g >
<title>LZ4::decompress (68 samples, 0.26%)</title><rect x="1096.6" y="917" width="3.0" height="15.0" fill="rgb(253,93,48)" rx="2" ry="2" />
<text x="1099.56" y="927.5" ></text>
</g>
<g >
<title>perf_event_task_tick (6 samples, 0.02%)</title><rect x="1149.9" y="1061" width="0.3" height="15.0" fill="rgb(235,177,10)" rx="2" ry="2" />
<text x="1152.92" y="1071.5" ></text>
</g>
<g >
<title>large_dalloc (10 samples, 0.04%)</title><rect x="122.1" y="1093" width="0.4" height="15.0" fill="rgb(206,42,25)" rx="2" ry="2" />
<text x="125.07" y="1103.5" ></text>
</g>
<g >
<title>dbs_update (3 samples, 0.01%)</title><rect x="1134.3" y="1157" width="0.1" height="15.0" fill="rgb(234,206,34)" rx="2" ry="2" />
<text x="1137.26" y="1167.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (7 samples, 0.03%)</title><rect x="186.8" y="1093" width="0.3" height="15.0" fill="rgb(220,139,38)" rx="2" ry="2" />
<text x="189.76" y="1103.5" ></text>
</g>
<g >
<title>x86_pmu_enable_all (4 samples, 0.02%)</title><rect x="1139.9" y="901" width="0.2" height="15.0" fill="rgb(215,142,29)" rx="2" ry="2" />
<text x="1142.93" y="911.5" ></text>
</g>
<g >
<title>__do_page_fault (13 samples, 0.05%)</title><rect x="218.5" y="1029" width="0.6" height="15.0" fill="rgb(217,86,3)" rx="2" ry="2" />
<text x="221.52" y="1039.5" ></text>
</g>
<g >
<title>__GI___libc_read (28 samples, 0.11%)</title><rect x="1084.7" y="885" width="1.2" height="15.0" fill="rgb(215,26,44)" rx="2" ry="2" />
<text x="1087.68" y="895.5" ></text>
</g>
<g >
<title>migrate_pages (29 samples, 0.11%)</title><rect x="112.3" y="965" width="1.3" height="15.0" fill="rgb(237,191,36)" rx="2" ry="2" />
<text x="115.26" y="975.5" ></text>
</g>
<g >
<title>__se_sys_madvise (6 samples, 0.02%)</title><rect x="509.0" y="837" width="0.2" height="15.0" fill="rgb(207,167,5)" rx="2" ry="2" />
<text x="511.97" y="847.5" ></text>
</g>
<g >
<title>up_read (3 samples, 0.01%)</title><rect x="206.4" y="1029" width="0.2" height="15.0" fill="rgb(241,45,48)" rx="2" ry="2" />
<text x="209.42" y="1039.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1106.4" y="933" width="0.1" height="15.0" fill="rgb(212,62,40)" rx="2" ry="2" />
<text x="1109.41" y="943.5" ></text>
</g>
<g >
<title>do_softirq (9 samples, 0.03%)</title><rect x="1126.0" y="997" width="0.4" height="15.0" fill="rgb(227,205,54)" rx="2" ry="2" />
<text x="1128.98" y="1007.5" ></text>
</g>
<g >
<title>DB::recursiveRemoveLowCardinality (317 samples, 1.21%)</title><rect x="515.7" y="1093" width="14.3" height="15.0" fill="rgb(235,68,19)" rx="2" ry="2" />
<text x="518.71" y="1103.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (9 samples, 0.03%)</title><rect x="351.8" y="965" width="0.4" height="15.0" fill="rgb(238,123,35)" rx="2" ry="2" />
<text x="354.78" y="975.5" ></text>
</g>
<g >
<title>realloc (581 samples, 2.22%)</title><rect x="328.3" y="1093" width="26.1" height="15.0" fill="rgb(252,173,54)" rx="2" ry="2" />
<text x="331.29" y="1103.5" >r..</text>
</g>
<g >
<title>do_munmap (17 samples, 0.06%)</title><rect x="1123.7" y="725" width="0.8" height="15.0" fill="rgb(211,108,1)" rx="2" ry="2" />
<text x="1126.69" y="735.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::index (316 samples, 1.20%)</title><rect x="515.7" y="1077" width="14.2" height="15.0" fill="rgb(232,46,9)" rx="2" ry="2" />
<text x="518.71" y="1087.5" ></text>
</g>
<g >
<title>DB::AsynchronousBlockInputStream::calculate (763 samples, 2.91%)</title><rect x="10.0" y="1173" width="34.3" height="15.0" fill="rgb(238,41,37)" rx="2" ry="2" />
<text x="13.00" y="1183.5" >DB..</text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (7 samples, 0.03%)</title><rect x="1106.6" y="965" width="0.3" height="15.0" fill="rgb(249,101,1)" rx="2" ry="2" />
<text x="1109.59" y="975.5" ></text>
</g>
<g >
<title>LZ4::decompress (12 samples, 0.05%)</title><rect x="1100.6" y="869" width="0.5" height="15.0" fill="rgb(217,210,43)" rx="2" ry="2" />
<text x="1103.56" y="879.5" ></text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::EqualsOp, DB::NameEquals&gt;::executeNumLeftType&lt;unsigned char&gt; (5 samples, 0.02%)</title><rect x="488.9" y="1077" width="0.3" height="15.0" fill="rgb(245,67,3)" rx="2" ry="2" />
<text x="491.95" y="1087.5" ></text>
</g>
<g >
<title>migrate_misplaced_page (29 samples, 0.11%)</title><rect x="112.3" y="981" width="1.3" height="15.0" fill="rgb(243,223,16)" rx="2" ry="2" />
<text x="115.26" y="991.5" ></text>
</g>
<g >
<title>copyout (78 samples, 0.30%)</title><rect x="1075.8" y="757" width="3.5" height="15.0" fill="rgb(236,19,11)" rx="2" ry="2" />
<text x="1078.77" y="767.5" ></text>
</g>
<g >
<title>clear_page_rep (22 samples, 0.08%)</title><rect x="310.0" y="997" width="1.0" height="15.0" fill="rgb(231,42,38)" rx="2" ry="2" />
<text x="313.03" y="1007.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="122.6" y="1061" width="0.1" height="15.0" fill="rgb(244,177,30)" rx="2" ry="2" />
<text x="125.56" y="1071.5" ></text>
</g>
<g >
<title>__switch_to (3 samples, 0.01%)</title><rect x="1064.8" y="1029" width="0.1" height="15.0" fill="rgb(221,28,13)" rx="2" ry="2" />
<text x="1067.75" y="1039.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::execute (926 samples, 3.53%)</title><rect x="488.6" y="1109" width="41.6" height="15.0" fill="rgb(246,121,43)" rx="2" ry="2" />
<text x="491.59" y="1119.5" >DB:..</text>
</g>
<g >
<title>__irqentry_text_start (4 samples, 0.02%)</title><rect x="461.8" y="1125" width="0.2" height="15.0" fill="rgb(221,126,26)" rx="2" ry="2" />
<text x="464.77" y="1135.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="332.6" y="965" width="0.1" height="15.0" fill="rgb(252,32,38)" rx="2" ry="2" />
<text x="335.61" y="975.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::index (93 samples, 0.35%)</title><rect x="525.7" y="1061" width="4.2" height="15.0" fill="rgb(220,94,4)" rx="2" ry="2" />
<text x="528.75" y="1071.5" ></text>
</g>
<g >
<title>DB::parseQuery (21 samples, 0.08%)</title><rect x="514.4" y="997" width="1.0" height="15.0" fill="rgb(251,81,39)" rx="2" ry="2" />
<text x="517.41" y="1007.5" ></text>
</g>
<g >
<title>__queue_work (5 samples, 0.02%)</title><rect x="1064.5" y="885" width="0.2" height="15.0" fill="rgb(237,41,44)" rx="2" ry="2" />
<text x="1067.48" y="895.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (3,357 samples, 12.80%)</title><rect x="44.4" y="1237" width="151.0" height="15.0" fill="rgb(250,132,16)" rx="2" ry="2" />
<text x="47.37" y="1247.5" >ThreadPoolImpl&lt;std:..</text>
</g>
<g >
<title>HashTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::iterator_base&lt;HashTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::iterator, false&gt;::operator++ (3 samples, 0.01%)</title><rect x="129.5" y="1141" width="0.2" height="15.0" fill="rgb(222,204,7)" rx="2" ry="2" />
<text x="132.53" y="1151.5" ></text>
</g>
<g >
<title>TCPHandler (66 samples, 0.25%)</title><rect x="1123.6" y="1269" width="3.0" height="15.0" fill="rgb(231,48,30)" rx="2" ry="2" />
<text x="1126.60" y="1279.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_statistics (3 samples, 0.01%)</title><rect x="351.5" y="965" width="0.1" height="15.0" fill="rgb(209,46,24)" rx="2" ry="2" />
<text x="354.51" y="975.5" ></text>
</g>
<g >
<title>calloc (10 samples, 0.04%)</title><rect x="208.6" y="1109" width="0.5" height="15.0" fill="rgb(221,153,51)" rx="2" ry="2" />
<text x="211.62" y="1119.5" ></text>
</g>
<g >
<title>update_nohz_stats (13 samples, 0.05%)</title><rect x="1143.1" y="1109" width="0.6" height="15.0" fill="rgb(215,13,8)" rx="2" ry="2" />
<text x="1146.12" y="1119.5" ></text>
</g>
<g >
<title>release_pages (6 samples, 0.02%)</title><rect x="332.3" y="837" width="0.3" height="15.0" fill="rgb(237,199,9)" rx="2" ry="2" />
<text x="335.30" y="847.5" ></text>
</g>
<g >
<title>copyout (51 samples, 0.19%)</title><rect x="1113.3" y="789" width="2.3" height="15.0" fill="rgb(224,165,15)" rx="2" ry="2" />
<text x="1116.29" y="799.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::DelayedStream::finalize (258 samples, 0.98%)</title><rect x="1108.8" y="1061" width="11.6" height="15.0" fill="rgb(226,83,20)" rx="2" ry="2" />
<text x="1111.80" y="1071.5" ></text>
</g>
<g >
<title>[unknown] (9 samples, 0.03%)</title><rect x="1128.6" y="1253" width="0.4" height="15.0" fill="rgb(231,35,19)" rx="2" ry="2" />
<text x="1131.59" y="1263.5" ></text>
</g>
<g >
<title>find_busiest_group (14 samples, 0.05%)</title><rect x="1125.0" y="949" width="0.7" height="15.0" fill="rgb(236,140,0)" rx="2" ry="2" />
<text x="1128.04" y="959.5" ></text>
</g>
<g >
<title>zap_page_range (22 samples, 0.08%)</title><rect x="329.8" y="901" width="1.0" height="15.0" fill="rgb(232,76,24)" rx="2" ry="2" />
<text x="332.82" y="911.5" ></text>
</g>
<g >
<title>[clickhouse] (14 samples, 0.05%)</title><rect x="1091.7" y="917" width="0.6" height="15.0" fill="rgb(252,153,1)" rx="2" ry="2" />
<text x="1094.70" y="927.5" ></text>
</g>
<g >
<title>__se_sys_poll (5 samples, 0.02%)</title><rect x="1187.2" y="1173" width="0.2" height="15.0" fill="rgb(222,141,27)" rx="2" ry="2" />
<text x="1190.21" y="1183.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (8 samples, 0.03%)</title><rect x="122.5" y="1109" width="0.4" height="15.0" fill="rgb(237,66,35)" rx="2" ry="2" />
<text x="125.52" y="1119.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (3 samples, 0.01%)</title><rect x="203.0" y="821" width="0.2" height="15.0" fill="rgb(251,167,54)" rx="2" ry="2" />
<text x="206.05" y="831.5" ></text>
</g>
<g >
<title>__irqentry_text_start (3 samples, 0.01%)</title><rect x="338.0" y="1045" width="0.1" height="15.0" fill="rgb(225,110,26)" rx="2" ry="2" />
<text x="341.01" y="1055.5" ></text>
</g>
<g >
<title>Poco::Net::TCPServerDispatcher::run (51 samples, 0.19%)</title><rect x="1123.6" y="1205" width="2.3" height="15.0" fill="rgb(205,184,41)" rx="2" ry="2" />
<text x="1126.60" y="1215.5" ></text>
</g>
<g >
<title>__GI___libc_read (7 samples, 0.03%)</title><rect x="1099.8" y="933" width="0.3" height="15.0" fill="rgb(205,68,23)" rx="2" ry="2" />
<text x="1102.75" y="943.5" ></text>
</g>
<g >
<title>__se_sys_madvise (4 samples, 0.02%)</title><rect x="1080.7" y="805" width="0.2" height="15.0" fill="rgb(253,136,27)" rx="2" ry="2" />
<text x="1083.68" y="815.5" ></text>
</g>
<g >
<title>acpi_idle_enter (11 samples, 0.04%)</title><rect x="1145.4" y="1173" width="0.5" height="15.0" fill="rgb(220,201,2)" rx="2" ry="2" />
<text x="1148.37" y="1183.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (14 samples, 0.05%)</title><rect x="1187.4" y="1237" width="0.7" height="15.0" fill="rgb(251,188,0)" rx="2" ry="2" />
<text x="1190.44" y="1247.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (71 samples, 0.27%)</title><rect x="1113.2" y="837" width="3.2" height="15.0" fill="rgb(220,117,23)" rx="2" ry="2" />
<text x="1116.16" y="847.5" ></text>
</g>
<g >
<title>copy_page_to_iter (52 samples, 0.20%)</title><rect x="1113.2" y="805" width="2.4" height="15.0" fill="rgb(236,185,26)" rx="2" ry="2" />
<text x="1116.25" y="815.5" ></text>
</g>
<g >
<title>copy_user_generic_string (78 samples, 0.30%)</title><rect x="1075.8" y="741" width="3.5" height="15.0" fill="rgb(221,223,38)" rx="2" ry="2" />
<text x="1078.77" y="751.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="1105.2" y="837" width="0.1" height="15.0" fill="rgb(208,184,9)" rx="2" ry="2" />
<text x="1108.20" y="847.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (28 samples, 0.11%)</title><rect x="1084.7" y="901" width="1.2" height="15.0" fill="rgb(221,178,7)" rx="2" ry="2" />
<text x="1087.68" y="911.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (3 samples, 0.01%)</title><rect x="208.0" y="1093" width="0.2" height="15.0" fill="rgb(250,10,13)" rx="2" ry="2" />
<text x="211.04" y="1103.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (18 samples, 0.07%)</title><rect x="1123.6" y="933" width="0.9" height="15.0" fill="rgb(245,62,19)" rx="2" ry="2" />
<text x="1126.64" y="943.5" ></text>
</g>
<g >
<title>large_dalloc (3 samples, 0.01%)</title><rect x="508.8" y="965" width="0.2" height="15.0" fill="rgb(229,43,37)" rx="2" ry="2" />
<text x="511.83" y="975.5" ></text>
</g>
<g >
<title>error_entry (29 samples, 0.11%)</title><rect x="360.4" y="1093" width="1.3" height="15.0" fill="rgb(216,112,17)" rx="2" ry="2" />
<text x="363.37" y="1103.5" ></text>
</g>
<g >
<title>__default_send_IPI_dest_field (3 samples, 0.01%)</title><rect x="203.0" y="789" width="0.2" height="15.0" fill="rgb(249,29,54)" rx="2" ry="2" />
<text x="206.05" y="799.5" ></text>
</g>
<g >
<title>ThreadFromGlobalPool::ThreadFromGlobalPool&lt;void ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::scheduleImpl&lt;void&gt; (3,357 samples, 12.80%)</title><rect x="44.4" y="1221" width="151.0" height="15.0" fill="rgb(246,47,30)" rx="2" ry="2" />
<text x="47.37" y="1231.5" >ThreadFromGlobalPoo..</text>
</g>
<g >
<title>DB::MergingAndConvertingBlockInputStream::thread (3,354 samples, 12.79%)</title><rect x="44.5" y="1173" width="150.9" height="15.0" fill="rgb(241,72,27)" rx="2" ry="2" />
<text x="47.46" y="1183.5" >DB::MergingAndConve..</text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (3 samples, 0.01%)</title><rect x="1094.9" y="949" width="0.1" height="15.0" fill="rgb(212,4,4)" rx="2" ry="2" />
<text x="1097.89" y="959.5" ></text>
</g>
<g >
<title>num_to_str (3 samples, 0.01%)</title><rect x="1132.6" y="1093" width="0.2" height="15.0" fill="rgb(248,26,32)" rx="2" ry="2" />
<text x="1135.64" y="1103.5" ></text>
</g>
<g >
<title>irq_work_run (4 samples, 0.02%)</title><rect x="1183.2" y="1141" width="0.2" height="15.0" fill="rgb(254,126,49)" rx="2" ry="2" />
<text x="1186.21" y="1151.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 0.06%)</title><rect x="1127.3" y="1253" width="0.8" height="15.0" fill="rgb(219,24,17)" rx="2" ry="2" />
<text x="1130.33" y="1263.5" ></text>
</g>
<g >
<title>DB::Aggregator::mergeBucketImpl&lt;DB::AggregationMethodKeysFixed&lt;TwoLevelHashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt;, false, false&gt; &gt; (1,885 samples, 7.19%)</title><rect x="44.5" y="1157" width="84.8" height="15.0" fill="rgb(218,23,22)" rx="2" ry="2" />
<text x="47.46" y="1167.5" >DB::Aggre..</text>
</g>
<g >
<title>do_syscall_64 (24 samples, 0.09%)</title><rect x="201.1" y="981" width="1.1" height="15.0" fill="rgb(227,102,51)" rx="2" ry="2" />
<text x="204.11" y="991.5" ></text>
</g>
<g >
<title>__default_send_IPI_dest_field (7 samples, 0.03%)</title><rect x="113.2" y="821" width="0.3" height="15.0" fill="rgb(241,24,33)" rx="2" ry="2" />
<text x="116.20" y="831.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5 samples, 0.02%)</title><rect x="1054.8" y="965" width="0.2" height="15.0" fill="rgb(206,68,10)" rx="2" ry="2" />
<text x="1057.76" y="975.5" ></text>
</g>
<g >
<title>realloc (67 samples, 0.26%)</title><rect x="505.7" y="1013" width="3.0" height="15.0" fill="rgb(207,206,35)" rx="2" ry="2" />
<text x="508.73" y="1023.5" ></text>
</g>
<g >
<title>large_dalloc (3 samples, 0.01%)</title><rect x="505.9" y="965" width="0.1" height="15.0" fill="rgb(231,128,44)" rx="2" ry="2" />
<text x="508.86" y="975.5" ></text>
</g>
<g >
<title>ptep_clear_flush (25 samples, 0.10%)</title><rect x="112.4" y="901" width="1.2" height="15.0" fill="rgb(205,125,2)" rx="2" ry="2" />
<text x="115.44" y="911.5" ></text>
</g>
<g >
<title>__do_page_fault (6 samples, 0.02%)</title><rect x="1186.9" y="1221" width="0.3" height="15.0" fill="rgb(237,114,0)" rx="2" ry="2" />
<text x="1189.94" y="1231.5" ></text>
</g>
<g >
<title>do_iter_read (101 samples, 0.39%)</title><rect x="1075.7" y="821" width="4.5" height="15.0" fill="rgb(226,18,2)" rx="2" ry="2" />
<text x="1078.68" y="831.5" ></text>
</g>
<g >
<title>__irqentry_text_start (3 samples, 0.01%)</title><rect x="363.7" y="1061" width="0.1" height="15.0" fill="rgb(209,17,27)" rx="2" ry="2" />
<text x="366.65" y="1071.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (7 samples, 0.03%)</title><rect x="41.7" y="885" width="0.3" height="15.0" fill="rgb(220,123,16)" rx="2" ry="2" />
<text x="44.67" y="895.5" ></text>
</g>
<g >
<title>update_blocked_averages (3 samples, 0.01%)</title><rect x="1133.6" y="1109" width="0.2" height="15.0" fill="rgb(206,161,48)" rx="2" ry="2" />
<text x="1136.63" y="1119.5" ></text>
</g>
<g >
<title>__do_page_fault (66 samples, 0.25%)</title><rect x="110.7" y="1029" width="3.0" height="15.0" fill="rgb(247,92,22)" rx="2" ry="2" />
<text x="113.68" y="1039.5" ></text>
</g>
<g >
<title>vfs_read (71 samples, 0.27%)</title><rect x="1113.2" y="901" width="3.2" height="15.0" fill="rgb(208,126,26)" rx="2" ry="2" />
<text x="1116.16" y="911.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (3 samples, 0.01%)</title><rect x="123.8" y="1077" width="0.1" height="15.0" fill="rgb(251,139,15)" rx="2" ry="2" />
<text x="126.78" y="1087.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (4 samples, 0.02%)</title><rect x="1093.3" y="885" width="0.2" height="15.0" fill="rgb(251,1,43)" rx="2" ry="2" />
<text x="1096.28" y="895.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="208.2" y="1093" width="0.2" height="15.0" fill="rgb(220,143,39)" rx="2" ry="2" />
<text x="211.22" y="1103.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="354.3" y="1029" width="0.1" height="15.0" fill="rgb(234,29,35)" rx="2" ry="2" />
<text x="357.30" y="1039.5" ></text>
</g>
<g >
<title>DB::Join::MapsTemplate&lt;DB::JoinStuff::WithFlags&lt;DB::RowRef, false&gt; &gt;::~MapsTemplate (17 samples, 0.06%)</title><rect x="1123.7" y="821" width="0.8" height="15.0" fill="rgb(223,131,33)" rx="2" ry="2" />
<text x="1126.69" y="831.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4 samples, 0.02%)</title><rect x="373.0" y="997" width="0.1" height="15.0" fill="rgb(252,16,24)" rx="2" ry="2" />
<text x="375.97" y="1007.5" ></text>
</g>
<g >
<title>[clickhouse] (68 samples, 0.26%)</title><rect x="1096.6" y="901" width="3.0" height="15.0" fill="rgb(254,223,0)" rx="2" ry="2" />
<text x="1099.56" y="911.5" ></text>
</g>
<g >
<title>_init (6 samples, 0.02%)</title><rect x="1188.3" y="1237" width="0.3" height="15.0" fill="rgb(220,77,28)" rx="2" ry="2" />
<text x="1191.29" y="1247.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (4 samples, 0.02%)</title><rect x="488.1" y="981" width="0.2" height="15.0" fill="rgb(253,84,34)" rx="2" ry="2" />
<text x="491.09" y="991.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (41 samples, 0.16%)</title><rect x="1062.9" y="1013" width="1.9" height="15.0" fill="rgb(223,161,37)" rx="2" ry="2" />
<text x="1065.91" y="1023.5" ></text>
</g>
<g >
<title>__vfs_read (7 samples, 0.03%)</title><rect x="1132.5" y="1173" width="0.3" height="15.0" fill="rgb(217,97,19)" rx="2" ry="2" />
<text x="1135.50" y="1183.5" ></text>
</g>
<g >
<title>pick_next_task_fair (26 samples, 0.10%)</title><rect x="1130.3" y="1061" width="1.1" height="15.0" fill="rgb(217,135,8)" rx="2" ry="2" />
<text x="1133.26" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1080.6" y="965" width="0.3" height="15.0" fill="rgb(252,92,28)" rx="2" ry="2" />
<text x="1083.63" y="975.5" ></text>
</g>
<g >
<title>[clickhouse] (763 samples, 2.91%)</title><rect x="10.0" y="1253" width="34.3" height="15.0" fill="rgb(252,75,17)" rx="2" ry="2" />
<text x="13.00" y="1263.5" >[c..</text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="1119.9" y="661" width="0.1" height="15.0" fill="rgb(206,218,21)" rx="2" ry="2" />
<text x="1122.91" y="671.5" ></text>
</g>
<g >
<title>pick_next_task_fair (27 samples, 0.10%)</title><rect x="1137.0" y="1173" width="1.2" height="15.0" fill="rgb(236,100,44)" rx="2" ry="2" />
<text x="1139.96" y="1183.5" ></text>
</g>
<g >
<title>ip6_input (8 samples, 0.03%)</title><rect x="1126.0" y="885" width="0.4" height="15.0" fill="rgb(217,2,43)" rx="2" ry="2" />
<text x="1129.03" y="895.5" ></text>
</g>
<g >
<title>try_charge (8 samples, 0.03%)</title><rect x="396.9" y="997" width="0.4" height="15.0" fill="rgb(252,93,20)" rx="2" ry="2" />
<text x="399.90" y="1007.5" ></text>
</g>
<g >
<title>zap_page_range (36 samples, 0.14%)</title><rect x="202.8" y="917" width="1.6" height="15.0" fill="rgb(253,35,4)" rx="2" ry="2" />
<text x="205.78" y="927.5" ></text>
</g>
<g >
<title>arena_ralloc (3 samples, 0.01%)</title><rect x="1054.5" y="965" width="0.1" height="15.0" fill="rgb(243,222,46)" rx="2" ry="2" />
<text x="1057.50" y="975.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImpl&lt;DB::AggregationMethodSerialized&lt;TwoLevelHashMapTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt; &gt; &gt; (1,693 samples, 6.45%)</title><rect x="410.4" y="1157" width="76.2" height="15.0" fill="rgb(206,21,51)" rx="2" ry="2" />
<text x="413.40" y="1167.5" >DB::Aggr..</text>
</g>
<g >
<title>__vfs_read (39 samples, 0.15%)</title><rect x="1118.5" y="837" width="1.8" height="15.0" fill="rgb(245,134,9)" rx="2" ry="2" />
<text x="1121.51" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="487.1" y="1013" width="0.2" height="15.0" fill="rgb(230,185,11)" rx="2" ry="2" />
<text x="490.06" y="1023.5" ></text>
</g>
<g >
<title>tick_sched_timer (5 samples, 0.02%)</title><rect x="186.8" y="1045" width="0.2" height="15.0" fill="rgb(244,73,0)" rx="2" ry="2" />
<text x="189.76" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1108.6" y="1045" width="0.2" height="15.0" fill="rgb(206,211,36)" rx="2" ry="2" />
<text x="1111.57" y="1055.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (3 samples, 0.01%)</title><rect x="1139.7" y="1253" width="0.2" height="15.0" fill="rgb(240,206,8)" rx="2" ry="2" />
<text x="1142.75" y="1263.5" ></text>
</g>
<g >
<title>DB::FunctionBuilderImpl::getReturnType (22 samples, 0.08%)</title><rect x="514.4" y="1061" width="1.0" height="15.0" fill="rgb(241,116,35)" rx="2" ry="2" />
<text x="517.36" y="1071.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="486.7" y="1157" width="0.2" height="15.0" fill="rgb(210,69,21)" rx="2" ry="2" />
<text x="489.74" y="1167.5" ></text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::EqualsOp, DB::NameEquals&gt;::executeImpl (5 samples, 0.02%)</title><rect x="488.9" y="1093" width="0.3" height="15.0" fill="rgb(236,195,31)" rx="2" ry="2" />
<text x="491.95" y="1103.5" ></text>
</g>
<g >
<title>load_balance (4 samples, 0.02%)</title><rect x="1142.2" y="1157" width="0.2" height="15.0" fill="rgb(251,181,53)" rx="2" ry="2" />
<text x="1145.22" y="1167.5" ></text>
</g>
<g >
<title>arena_ralloc (36 samples, 0.14%)</title><rect x="217.5" y="1077" width="1.6" height="15.0" fill="rgb(216,59,53)" rx="2" ry="2" />
<text x="220.49" y="1087.5" ></text>
</g>
<g >
<title>worker_thread (4 samples, 0.02%)</title><rect x="1133.9" y="1221" width="0.2" height="15.0" fill="rgb(239,181,42)" rx="2" ry="2" />
<text x="1136.94" y="1231.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (20 samples, 0.08%)</title><rect x="514.4" y="901" width="0.9" height="15.0" fill="rgb(254,186,19)" rx="2" ry="2" />
<text x="517.41" y="911.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (9 samples, 0.03%)</title><rect x="113.2" y="853" width="0.4" height="15.0" fill="rgb(222,116,35)" rx="2" ry="2" />
<text x="116.16" y="863.5" ></text>
</g>
<g >
<title>smp_call_function_many (7 samples, 0.03%)</title><rect x="332.0" y="821" width="0.3" height="15.0" fill="rgb(254,76,22)" rx="2" ry="2" />
<text x="334.98" y="831.5" ></text>
</g>
<g >
<title>update_process_times (13 samples, 0.05%)</title><rect x="1149.6" y="1093" width="0.6" height="15.0" fill="rgb(246,222,37)" rx="2" ry="2" />
<text x="1152.60" y="1103.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromPocoSocket::poll (8 samples, 0.03%)</title><rect x="1124.5" y="1109" width="0.4" height="15.0" fill="rgb(233,130,48)" rx="2" ry="2" />
<text x="1127.50" y="1119.5" ></text>
</g>
<g >
<title>process_backlog (4 samples, 0.02%)</title><rect x="1129.1" y="981" width="0.2" height="15.0" fill="rgb(210,83,51)" rx="2" ry="2" />
<text x="1132.09" y="991.5" ></text>
</g>
<g >
<title>DB::tryParseQuery (21 samples, 0.08%)</title><rect x="514.4" y="981" width="1.0" height="15.0" fill="rgb(218,1,52)" rx="2" ry="2" />
<text x="517.41" y="991.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (32 samples, 0.12%)</title><rect x="1084.6" y="917" width="1.4" height="15.0" fill="rgb(216,202,17)" rx="2" ry="2" />
<text x="1087.59" y="927.5" ></text>
</g>
<g >
<title>shmem_getpage (5 samples, 0.02%)</title><rect x="1085.7" y="725" width="0.2" height="15.0" fill="rgb(249,140,15)" rx="2" ry="2" />
<text x="1088.72" y="735.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::DelayedStream::finalize (784 samples, 2.99%)</title><rect x="1070.3" y="1029" width="35.3" height="15.0" fill="rgb(246,8,5)" rx="2" ry="2" />
<text x="1073.29" y="1039.5" >DB..</text>
</g>
<g >
<title>try_to_wake_up (8 samples, 0.03%)</title><rect x="1155.0" y="1061" width="0.4" height="15.0" fill="rgb(236,46,25)" rx="2" ry="2" />
<text x="1158.04" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="506.0" y="917" width="0.1" height="15.0" fill="rgb(254,135,2)" rx="2" ry="2" />
<text x="509.00" y="927.5" ></text>
</g>
<g >
<title>execve (9 samples, 0.03%)</title><rect x="1189.3" y="1253" width="0.4" height="15.0" fill="rgb(242,16,32)" rx="2" ry="2" />
<text x="1192.28" y="1263.5" ></text>
</g>
<g >
<title>up_read (5 samples, 0.02%)</title><rect x="207.8" y="1061" width="0.2" height="15.0" fill="rgb(225,33,30)" rx="2" ry="2" />
<text x="210.81" y="1071.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (21 samples, 0.08%)</title><rect x="1079.3" y="757" width="0.9" height="15.0" fill="rgb(219,57,43)" rx="2" ry="2" />
<text x="1082.28" y="767.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="203.3" y="837" width="0.1" height="15.0" fill="rgb(222,40,20)" rx="2" ry="2" />
<text x="206.32" y="847.5" ></text>
</g>
<g >
<title>page_fault (30 samples, 0.11%)</title><rect x="220.2" y="1093" width="1.4" height="15.0" fill="rgb(207,227,16)" rx="2" ry="2" />
<text x="223.23" y="1103.5" ></text>
</g>
<g >
<title>kthread (78 samples, 0.30%)</title><rect x="1140.2" y="1237" width="3.5" height="15.0" fill="rgb(223,82,21)" rx="2" ry="2" />
<text x="1143.20" y="1247.5" ></text>
</g>
<g >
<title>genl_family_rcv_msg (4 samples, 0.02%)</title><rect x="1069.7" y="853" width="0.2" height="15.0" fill="rgb(215,31,42)" rx="2" ry="2" />
<text x="1072.75" y="863.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (762 samples, 2.91%)</title><rect x="10.0" y="1093" width="34.3" height="15.0" fill="rgb(214,182,33)" rx="2" ry="2" />
<text x="13.04" y="1103.5" >DB..</text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="354.3" y="1077" width="0.1" height="15.0" fill="rgb(249,34,29)" rx="2" ry="2" />
<text x="357.30" y="1087.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (13 samples, 0.05%)</title><rect x="500.7" y="1061" width="0.6" height="15.0" fill="rgb(247,104,31)" rx="2" ry="2" />
<text x="503.69" y="1071.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (3 samples, 0.01%)</title><rect x="1106.4" y="981" width="0.1" height="15.0" fill="rgb(253,158,17)" rx="2" ry="2" />
<text x="1109.41" y="991.5" ></text>
</g>
<g >
<title>DB::ColumnFixedString::insertData (30 samples, 0.11%)</title><rect x="188.5" y="1125" width="1.3" height="15.0" fill="rgb(244,121,6)" rx="2" ry="2" />
<text x="191.47" y="1135.5" ></text>
</g>
<g >
<title>od_dbs_update (4 samples, 0.02%)</title><rect x="1134.2" y="1173" width="0.2" height="15.0" fill="rgb(248,16,23)" rx="2" ry="2" />
<text x="1137.21" y="1183.5" ></text>
</g>
<g >
<title>DB::ColumnLowCardinality::Index::insertPositionsRange (15 samples, 0.06%)</title><rect x="1081.7" y="949" width="0.7" height="15.0" fill="rgb(214,150,13)" rx="2" ry="2" />
<text x="1084.71" y="959.5" ></text>
</g>
<g >
<title>page_fault (73 samples, 0.28%)</title><rect x="308.4" y="1109" width="3.3" height="15.0" fill="rgb(232,30,16)" rx="2" ry="2" />
<text x="311.41" y="1119.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::addStreams (48 samples, 0.18%)</title><rect x="1106.0" y="1045" width="2.1" height="15.0" fill="rgb(244,191,54)" rx="2" ry="2" />
<text x="1108.96" y="1055.5" ></text>
</g>
<g >
<title>secondary_startup_64 (924 samples, 3.52%)</title><rect x="1145.0" y="1253" width="41.6" height="15.0" fill="rgb(208,118,50)" rx="2" ry="2" />
<text x="1148.01" y="1263.5" >sec..</text>
</g>
<g >
<title>update_blocked_averages (8 samples, 0.03%)</title><rect x="1131.0" y="997" width="0.3" height="15.0" fill="rgb(218,105,3)" rx="2" ry="2" />
<text x="1133.98" y="1007.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::addStreams (9 samples, 0.03%)</title><rect x="1120.5" y="1077" width="0.4" height="15.0" fill="rgb(214,8,38)" rx="2" ry="2" />
<text x="1123.54" y="1087.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (9 samples, 0.03%)</title><rect x="201.1" y="885" width="0.4" height="15.0" fill="rgb(236,27,12)" rx="2" ry="2" />
<text x="204.11" y="895.5" ></text>
</g>
<g >
<title>sync_regs (6 samples, 0.02%)</title><rect x="338.4" y="1029" width="0.3" height="15.0" fill="rgb(238,220,18)" rx="2" ry="2" />
<text x="341.42" y="1039.5" ></text>
</g>
<g >
<title>update_process_times (31 samples, 0.12%)</title><rect x="1063.0" y="949" width="1.4" height="15.0" fill="rgb(238,174,10)" rx="2" ry="2" />
<text x="1066.00" y="959.5" ></text>
</g>
<g >
<title>memcpy (475 samples, 1.81%)</title><rect x="332.8" y="1061" width="21.4" height="15.0" fill="rgb(238,63,14)" rx="2" ry="2" />
<text x="335.84" y="1071.5" >m..</text>
</g>
<g >
<title>start_kernel (85 samples, 0.32%)</title><rect x="1145.0" y="1237" width="3.8" height="15.0" fill="rgb(217,112,48)" rx="2" ry="2" />
<text x="1148.01" y="1247.5" ></text>
</g>
<g >
<title>do_sys_open (8 samples, 0.03%)</title><rect x="1107.3" y="917" width="0.4" height="15.0" fill="rgb(218,214,36)" rx="2" ry="2" />
<text x="1110.31" y="927.5" ></text>
</g>
<g >
<title>ksys_read (7 samples, 0.03%)</title><rect x="1132.5" y="1205" width="0.3" height="15.0" fill="rgb(213,160,35)" rx="2" ry="2" />
<text x="1135.50" y="1215.5" ></text>
</g>
<g >
<title>alloc_pages_vma (25 samples, 0.10%)</title><rect x="309.9" y="1045" width="1.2" height="15.0" fill="rgb(210,136,8)" rx="2" ry="2" />
<text x="312.94" y="1055.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (8 samples, 0.03%)</title><rect x="1065.2" y="981" width="0.4" height="15.0" fill="rgb(227,122,13)" rx="2" ry="2" />
<text x="1068.20" y="991.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4 samples, 0.02%)</title><rect x="1062.5" y="981" width="0.1" height="15.0" fill="rgb(219,156,0)" rx="2" ry="2" />
<text x="1065.46" y="991.5" ></text>
</g>
<g >
<title>exit_mmap (9 samples, 0.03%)</title><rect x="1189.3" y="1093" width="0.4" height="15.0" fill="rgb(208,21,34)" rx="2" ry="2" />
<text x="1192.28" y="1103.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (5 samples, 0.02%)</title><rect x="1080.0" y="693" width="0.2" height="15.0" fill="rgb(214,15,22)" rx="2" ry="2" />
<text x="1082.96" y="703.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1128.8" y="1125" width="0.2" height="15.0" fill="rgb(207,121,17)" rx="2" ry="2" />
<text x="1131.82" y="1135.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionCount&gt;::addFree (28 samples, 0.11%)</title><rect x="466.3" y="1141" width="1.3" height="15.0" fill="rgb(245,72,39)" rx="2" ry="2" />
<text x="469.32" y="1151.5" ></text>
</g>
<g >
<title>copy_page_to_iter (25 samples, 0.10%)</title><rect x="1093.5" y="709" width="1.2" height="15.0" fill="rgb(250,46,45)" rx="2" ry="2" />
<text x="1096.54" y="719.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1105.2" y="805" width="0.1" height="15.0" fill="rgb(209,164,17)" rx="2" ry="2" />
<text x="1108.20" y="815.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (5 samples, 0.02%)</title><rect x="1118.1" y="949" width="0.2" height="15.0" fill="rgb(220,3,10)" rx="2" ry="2" />
<text x="1121.11" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1120.7" y="981" width="0.2" height="15.0" fill="rgb(243,179,34)" rx="2" ry="2" />
<text x="1123.67" y="991.5" ></text>
</g>
<g >
<title>[unknown] (15 samples, 0.06%)</title><rect x="1131.8" y="1253" width="0.7" height="15.0" fill="rgb(252,34,44)" rx="2" ry="2" />
<text x="1134.79" y="1263.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (4 samples, 0.02%)</title><rect x="203.7" y="805" width="0.2" height="15.0" fill="rgb(237,204,6)" rx="2" ry="2" />
<text x="206.72" y="815.5" ></text>
</g>
<g >
<title>ovl_read_iter (31 samples, 0.12%)</title><rect x="1093.5" y="773" width="1.4" height="15.0" fill="rgb(242,219,36)" rx="2" ry="2" />
<text x="1096.50" y="783.5" ></text>
</g>
<g >
<title>__irqentry_text_start (45 samples, 0.17%)</title><rect x="1062.7" y="1029" width="2.1" height="15.0" fill="rgb(219,0,37)" rx="2" ry="2" />
<text x="1065.73" y="1039.5" ></text>
</g>
<g >
<title>memcpy (26 samples, 0.10%)</title><rect x="408.1" y="1141" width="1.2" height="15.0" fill="rgb(240,107,53)" rx="2" ry="2" />
<text x="411.15" y="1151.5" ></text>
</g>
<g >
<title>find_lock_entry (15 samples, 0.06%)</title><rect x="1104.4" y="693" width="0.7" height="15.0" fill="rgb(223,96,30)" rx="2" ry="2" />
<text x="1107.43" y="703.5" ></text>
</g>
<g >
<title>DB::DataTypeLowCardinality::enumerateStreams (13 samples, 0.05%)</title><rect x="1106.0" y="1029" width="0.5" height="15.0" fill="rgb(242,174,52)" rx="2" ry="2" />
<text x="1108.96" y="1039.5" ></text>
</g>
<g >
<title>DB::ProcessListEntry::~ProcessListEntry (20 samples, 0.08%)</title><rect x="1123.6" y="1093" width="0.9" height="15.0" fill="rgb(248,57,38)" rx="2" ry="2" />
<text x="1126.60" y="1103.5" ></text>
</g>
<g >
<title>scheduler_tick (11 samples, 0.04%)</title><rect x="404.8" y="1029" width="0.5" height="15.0" fill="rgb(253,185,29)" rx="2" ry="2" />
<text x="407.82" y="1039.5" ></text>
</g>
<g >
<title>link_path_walk (3 samples, 0.01%)</title><rect x="1108.1" y="933" width="0.2" height="15.0" fill="rgb(242,12,32)" rx="2" ry="2" />
<text x="1111.12" y="943.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="1062.5" y="997" width="0.1" height="15.0" fill="rgb(227,26,17)" rx="2" ry="2" />
<text x="1065.46" y="1007.5" ></text>
</g>
<g >
<title>tcp_v6_do_rcv (5 samples, 0.02%)</title><rect x="1126.2" y="837" width="0.2" height="15.0" fill="rgb(247,120,32)" rx="2" ry="2" />
<text x="1129.16" y="847.5" ></text>
</g>
<g >
<title>[clickhouse] (14 samples, 0.05%)</title><rect x="121.9" y="1125" width="0.6" height="15.0" fill="rgb(229,78,52)" rx="2" ry="2" />
<text x="124.89" y="1135.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (6 samples, 0.02%)</title><rect x="329.1" y="805" width="0.2" height="15.0" fill="rgb(251,136,10)" rx="2" ry="2" />
<text x="332.06" y="815.5" ></text>
</g>
<g >
<title>force_qs_rnp (42 samples, 0.16%)</title><rect x="1140.2" y="1205" width="1.9" height="15.0" fill="rgb(209,1,12)" rx="2" ry="2" />
<text x="1143.24" y="1215.5" ></text>
</g>
<g >
<title>DB::Aggregator::destroyImpl&lt;DB::AggregationMethodKeysFixed&lt;TwoLevelHashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt;, false, false&gt;, HashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt; &gt; (75 samples, 0.29%)</title><rect x="190.7" y="1141" width="3.3" height="15.0" fill="rgb(218,77,46)" rx="2" ry="2" />
<text x="193.67" y="1151.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (3 samples, 0.01%)</title><rect x="104.5" y="805" width="0.2" height="15.0" fill="rgb(206,84,42)" rx="2" ry="2" />
<text x="107.52" y="815.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (9 samples, 0.03%)</title><rect x="514.5" y="629" width="0.4" height="15.0" fill="rgb(207,63,32)" rx="2" ry="2" />
<text x="517.54" y="639.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (15 samples, 0.06%)</title><rect x="120.4" y="901" width="0.6" height="15.0" fill="rgb(223,27,23)" rx="2" ry="2" />
<text x="123.36" y="911.5" ></text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (5 samples, 0.02%)</title><rect x="1120.7" y="1013" width="0.2" height="15.0" fill="rgb(235,5,51)" rx="2" ry="2" />
<text x="1123.67" y="1023.5" ></text>
</g>
<g >
<title>DB::Block::has (3 samples, 0.01%)</title><rect x="488.3" y="1109" width="0.2" height="15.0" fill="rgb(223,196,32)" rx="2" ry="2" />
<text x="491.32" y="1119.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (244 samples, 0.93%)</title><rect x="1172.2" y="1141" width="11.0" height="15.0" fill="rgb(247,149,47)" rx="2" ry="2" />
<text x="1175.23" y="1151.5" ></text>
</g>
<g >
<title>call_timer_fn (9 samples, 0.03%)</title><rect x="1155.0" y="1077" width="0.4" height="15.0" fill="rgb(236,63,7)" rx="2" ry="2" />
<text x="1158.00" y="1087.5" ></text>
</g>
<g >
<title>rebalance_domains (37 samples, 0.14%)</title><rect x="1146.5" y="1109" width="1.7" height="15.0" fill="rgb(220,204,47)" rx="2" ry="2" />
<text x="1149.50" y="1119.5" ></text>
</g>
<g >
<title>__pagevec_lru_add_fn (14 samples, 0.05%)</title><rect x="345.4" y="949" width="0.7" height="15.0" fill="rgb(242,181,14)" rx="2" ry="2" />
<text x="348.43" y="959.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (8 samples, 0.03%)</title><rect x="514.6" y="485" width="0.3" height="15.0" fill="rgb(209,186,5)" rx="2" ry="2" />
<text x="517.59" y="495.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="1080.7" y="885" width="0.2" height="15.0" fill="rgb(249,144,46)" rx="2" ry="2" />
<text x="1083.68" y="895.5" ></text>
</g>
<g >
<title>[libevent-2.0.so.5.1.9] (5 samples, 0.02%)</title><rect x="1187.2" y="1253" width="0.2" height="15.0" fill="rgb(237,208,42)" rx="2" ry="2" />
<text x="1190.21" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="208.9" y="1061" width="0.2" height="15.0" fill="rgb(222,25,9)" rx="2" ry="2" />
<text x="211.94" y="1071.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="437" width="0.3" height="15.0" fill="rgb(215,148,14)" rx="2" ry="2" />
<text x="517.59" y="447.5" ></text>
</g>
<g >
<title>netlink_lookup (3 samples, 0.01%)</title><rect x="1069.9" y="901" width="0.2" height="15.0" fill="rgb(221,129,13)" rx="2" ry="2" />
<text x="1072.93" y="911.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (5 samples, 0.02%)</title><rect x="208.6" y="917" width="0.2" height="15.0" fill="rgb(217,25,42)" rx="2" ry="2" />
<text x="211.62" y="927.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (5 samples, 0.02%)</title><rect x="1094.7" y="693" width="0.2" height="15.0" fill="rgb(221,67,28)" rx="2" ry="2" />
<text x="1097.67" y="703.5" ></text>
</g>
<g >
<title>DB::MergeTreeBaseSelectBlockInputStream::readFromPart (268 samples, 1.02%)</title><rect x="1108.5" y="1109" width="12.0" height="15.0" fill="rgb(221,193,19)" rx="2" ry="2" />
<text x="1111.48" y="1119.5" ></text>
</g>
<g >
<title>HashTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::begin (4 samples, 0.02%)</title><rect x="129.4" y="1141" width="0.1" height="15.0" fill="rgb(207,46,50)" rx="2" ry="2" />
<text x="132.35" y="1151.5" ></text>
</g>
<g >
<title>do_iter_read (7 samples, 0.03%)</title><rect x="1099.8" y="821" width="0.3" height="15.0" fill="rgb(245,173,34)" rx="2" ry="2" />
<text x="1102.75" y="831.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImpl&lt;DB::AggregationMethodKeysFixed&lt;TwoLevelHashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt;, false, false&gt; &gt; (4,162 samples, 15.87%)</title><rect x="222.1" y="1157" width="187.2" height="15.0" fill="rgb(247,86,8)" rx="2" ry="2" />
<text x="225.08" y="1167.5" >DB::Aggregator::executeI..</text>
</g>
<g >
<title>cpumask_any_but (4 samples, 0.02%)</title><rect x="42.4" y="869" width="0.2" height="15.0" fill="rgb(209,34,9)" rx="2" ry="2" />
<text x="45.39" y="879.5" ></text>
</g>
<g >
<title>smp_call_function_many (18 samples, 0.07%)</title><rect x="329.9" y="821" width="0.8" height="15.0" fill="rgb(251,141,46)" rx="2" ry="2" />
<text x="332.87" y="831.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (91 samples, 0.35%)</title><rect x="1101.1" y="901" width="4.1" height="15.0" fill="rgb(206,26,42)" rx="2" ry="2" />
<text x="1104.10" y="911.5" ></text>
</g>
<g >
<title>[clickhouse] (20 samples, 0.08%)</title><rect x="328.7" y="1013" width="0.9" height="15.0" fill="rgb(205,77,35)" rx="2" ry="2" />
<text x="331.65" y="1023.5" ></text>
</g>
<g >
<title>down_read_trylock (11 samples, 0.04%)</title><rect x="308.6" y="1077" width="0.5" height="15.0" fill="rgb(239,10,4)" rx="2" ry="2" />
<text x="311.59" y="1087.5" ></text>
</g>
<g >
<title>DB::Client::process (8 samples, 0.03%)</title><rect x="1128.6" y="1189" width="0.4" height="15.0" fill="rgb(246,139,19)" rx="2" ry="2" />
<text x="1131.64" y="1199.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::readData (773 samples, 2.95%)</title><rect x="1070.7" y="997" width="34.8" height="15.0" fill="rgb(212,64,21)" rx="2" ry="2" />
<text x="1073.74" y="1007.5" >DB..</text>
</g>
<g >
<title>DB::Block::insert (5 samples, 0.02%)</title><rect x="1070.5" y="997" width="0.2" height="15.0" fill="rgb(214,189,44)" rx="2" ry="2" />
<text x="1073.51" y="1007.5" ></text>
</g>
<g >
<title>get_page_from_freelist (307 samples, 1.17%)</title><rect x="381.7" y="997" width="13.8" height="15.0" fill="rgb(247,53,22)" rx="2" ry="2" />
<text x="384.69" y="1007.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="329.4" y="965" width="0.2" height="15.0" fill="rgb(207,147,38)" rx="2" ry="2" />
<text x="332.42" y="975.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (106 samples, 0.40%)</title><rect x="1100.6" y="933" width="4.7" height="15.0" fill="rgb(247,75,50)" rx="2" ry="2" />
<text x="1103.56" y="943.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (762 samples, 2.91%)</title><rect x="10.0" y="1125" width="34.3" height="15.0" fill="rgb(209,196,2)" rx="2" ry="2" />
<text x="13.04" y="1135.5" >DB..</text>
</g>
<g >
<title>ret_from_fork (23 samples, 0.09%)</title><rect x="1138.3" y="1253" width="1.0" height="15.0" fill="rgb(249,121,28)" rx="2" ry="2" />
<text x="1141.26" y="1263.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (7 samples, 0.03%)</title><rect x="207.5" y="1013" width="0.3" height="15.0" fill="rgb(233,91,30)" rx="2" ry="2" />
<text x="210.45" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.03%)</title><rect x="1101.1" y="885" width="0.3" height="15.0" fill="rgb(208,6,18)" rx="2" ry="2" />
<text x="1104.10" y="895.5" ></text>
</g>
<g >
<title>__vfs_read (28 samples, 0.11%)</title><rect x="1084.7" y="805" width="1.2" height="15.0" fill="rgb(245,165,32)" rx="2" ry="2" />
<text x="1087.68" y="815.5" ></text>
</g>
<g >
<title>inode_permission (3 samples, 0.01%)</title><rect x="1106.9" y="869" width="0.1" height="15.0" fill="rgb(244,68,24)" rx="2" ry="2" />
<text x="1109.91" y="879.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (4 samples, 0.02%)</title><rect x="1129.1" y="1061" width="0.2" height="15.0" fill="rgb(224,150,41)" rx="2" ry="2" />
<text x="1132.09" y="1071.5" ></text>
</g>
<g >
<title>__libc_start_main (5 samples, 0.02%)</title><rect x="1139.9" y="1237" width="0.2" height="15.0" fill="rgb(249,181,17)" rx="2" ry="2" />
<text x="1142.88" y="1247.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (6 samples, 0.02%)</title><rect x="1086.2" y="917" width="0.2" height="15.0" fill="rgb(243,148,0)" rx="2" ry="2" />
<text x="1089.17" y="927.5" ></text>
</g>
<g >
<title>__handle_mm_fault (7 samples, 0.03%)</title><rect x="1187.8" y="1173" width="0.3" height="15.0" fill="rgb(249,150,10)" rx="2" ry="2" />
<text x="1190.75" y="1183.5" ></text>
</g>
<g >
<title>copyout (36 samples, 0.14%)</title><rect x="1118.6" y="741" width="1.6" height="15.0" fill="rgb(247,190,48)" rx="2" ry="2" />
<text x="1121.56" y="751.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.02%)</title><rect x="373.0" y="1029" width="0.1" height="15.0" fill="rgb(244,153,32)" rx="2" ry="2" />
<text x="375.97" y="1039.5" ></text>
</g>
<g >
<title>arena_decay (39 samples, 0.15%)</title><rect x="202.7" y="1045" width="1.7" height="15.0" fill="rgb(249,40,16)" rx="2" ry="2" />
<text x="205.69" y="1055.5" ></text>
</g>
<g >
<title>smp_call_function_many (8 samples, 0.03%)</title><rect x="205.0" y="837" width="0.3" height="15.0" fill="rgb(216,73,34)" rx="2" ry="2" />
<text x="207.98" y="847.5" ></text>
</g>
<g >
<title>page_fault (139 samples, 0.53%)</title><rect x="37.4" y="997" width="6.3" height="15.0" fill="rgb(207,155,39)" rx="2" ry="2" />
<text x="40.44" y="1007.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1187.2" y="1237" width="0.2" height="15.0" fill="rgb(252,117,19)" rx="2" ry="2" />
<text x="1190.21" y="1247.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4 samples, 0.02%)</title><rect x="1062.5" y="965" width="0.1" height="15.0" fill="rgb(246,207,47)" rx="2" ry="2" />
<text x="1065.46" y="975.5" ></text>
</g>
<g >
<title>__switch_to (3 samples, 0.01%)</title><rect x="1144.5" y="1253" width="0.1" height="15.0" fill="rgb(239,85,29)" rx="2" ry="2" />
<text x="1147.47" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.06%)</title><rect x="331.9" y="949" width="0.7" height="15.0" fill="rgb(240,212,14)" rx="2" ry="2" />
<text x="334.94" y="959.5" ></text>
</g>
<g >
<title>filename_lookup (5 samples, 0.02%)</title><rect x="1106.9" y="917" width="0.2" height="15.0" fill="rgb(209,41,38)" rx="2" ry="2" />
<text x="1109.91" y="927.5" ></text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::GreaterOp, DB::NameGreater&gt;::executeNumLeftType&lt;unsigned long&gt; (7 samples, 0.03%)</title><rect x="10.4" y="853" width="0.3" height="15.0" fill="rgb(209,30,35)" rx="2" ry="2" />
<text x="13.36" y="863.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned char&gt;::deserializeBinaryBulk (12 samples, 0.05%)</title><rect x="1086.2" y="965" width="0.5" height="15.0" fill="rgb(231,104,30)" rx="2" ry="2" />
<text x="1089.17" y="975.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (41 samples, 0.16%)</title><rect x="1118.4" y="933" width="1.9" height="15.0" fill="rgb(206,129,7)" rx="2" ry="2" />
<text x="1121.42" y="943.5" ></text>
</g>
<g >
<title>__default_send_IPI_dest_field (4 samples, 0.02%)</title><rect x="329.1" y="773" width="0.1" height="15.0" fill="rgb(225,91,44)" rx="2" ry="2" />
<text x="332.06" y="783.5" ></text>
</g>
<g >
<title>__sched_text_start (3 samples, 0.01%)</title><rect x="1133.0" y="1189" width="0.1" height="15.0" fill="rgb(233,222,41)" rx="2" ry="2" />
<text x="1136.00" y="1199.5" ></text>
</g>
<g >
<title>free (7 samples, 0.03%)</title><rect x="487.1" y="1141" width="0.3" height="15.0" fill="rgb(241,18,27)" rx="2" ry="2" />
<text x="490.06" y="1151.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (8 samples, 0.03%)</title><rect x="1117.0" y="981" width="0.4" height="15.0" fill="rgb(221,197,52)" rx="2" ry="2" />
<text x="1120.03" y="991.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="197" width="0.3" height="15.0" fill="rgb(235,170,28)" rx="2" ry="2" />
<text x="517.59" y="207.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (9 samples, 0.03%)</title><rect x="1062.0" y="997" width="0.4" height="15.0" fill="rgb(236,215,15)" rx="2" ry="2" />
<text x="1064.96" y="1007.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (9 samples, 0.03%)</title><rect x="202.8" y="853" width="0.4" height="15.0" fill="rgb(242,176,11)" rx="2" ry="2" />
<text x="205.78" y="863.5" ></text>
</g>
<g >
<title>extents_alloc (9 samples, 0.03%)</title><rect x="331.4" y="1013" width="0.4" height="15.0" fill="rgb(227,195,22)" rx="2" ry="2" />
<text x="334.40" y="1023.5" ></text>
</g>
<g >
<title>ttwu_do_activate.isra.7 (4 samples, 0.02%)</title><rect x="1155.2" y="1045" width="0.2" height="15.0" fill="rgb(206,187,15)" rx="2" ry="2" />
<text x="1158.22" y="1055.5" ></text>
</g>
<g >
<title>ksys_read (7 samples, 0.03%)</title><rect x="1099.8" y="885" width="0.3" height="15.0" fill="rgb(209,198,29)" rx="2" ry="2" />
<text x="1102.75" y="895.5" ></text>
</g>
<g >
<title>DB::IDataType::deserializeBinaryBulkWithMultipleStreams (109 samples, 0.42%)</title><rect x="1100.5" y="981" width="4.9" height="15.0" fill="rgb(222,226,31)" rx="2" ry="2" />
<text x="1103.52" y="991.5" ></text>
</g>
<g >
<title>[clickhouse] (10 samples, 0.04%)</title><rect x="1106.0" y="997" width="0.4" height="15.0" fill="rgb(251,72,7)" rx="2" ry="2" />
<text x="1108.96" y="1007.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionNullBase&lt;true, DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::insertResultInto (1,157 samples, 4.41%)</title><rect x="136.0" y="1125" width="52.0" height="15.0" fill="rgb(235,221,51)" rx="2" ry="2" />
<text x="138.97" y="1135.5" >DB::A..</text>
</g>
<g >
<title>large_ralloc (3 samples, 0.01%)</title><rect x="1062.1" y="949" width="0.1" height="15.0" fill="rgb(210,83,23)" rx="2" ry="2" />
<text x="1065.05" y="959.5" ></text>
</g>
<g >
<title>link_path_walk (3 samples, 0.01%)</title><rect x="1106.4" y="853" width="0.1" height="15.0" fill="rgb(247,5,49)" rx="2" ry="2" />
<text x="1109.41" y="863.5" ></text>
</g>
<g >
<title>DB::ParserExpressionElement::parseImpl (6 samples, 0.02%)</title><rect x="514.6" y="53" width="0.3" height="15.0" fill="rgb(225,72,52)" rx="2" ry="2" />
<text x="517.63" y="63.5" ></text>
</g>
<g >
<title>event_function_call (5 samples, 0.02%)</title><rect x="1139.9" y="997" width="0.2" height="15.0" fill="rgb(246,178,32)" rx="2" ry="2" />
<text x="1142.88" y="1007.5" ></text>
</g>
<g >
<title>__madvise (22 samples, 0.08%)</title><rect x="329.8" y="965" width="1.0" height="15.0" fill="rgb(229,58,39)" rx="2" ry="2" />
<text x="332.82" y="975.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (6 samples, 0.02%)</title><rect x="104.4" y="853" width="0.3" height="15.0" fill="rgb(225,52,26)" rx="2" ry="2" />
<text x="107.39" y="863.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="208.9" y="1045" width="0.2" height="15.0" fill="rgb(239,102,36)" rx="2" ry="2" />
<text x="211.94" y="1055.5" ></text>
</g>
<g >
<title>schedule (14 samples, 0.05%)</title><rect x="1133.2" y="1205" width="0.6" height="15.0" fill="rgb(236,66,38)" rx="2" ry="2" />
<text x="1136.18" y="1215.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (8 samples, 0.03%)</title><rect x="201.7" y="853" width="0.4" height="15.0" fill="rgb(214,225,22)" rx="2" ry="2" />
<text x="204.70" y="863.5" ></text>
</g>
<g >
<title>LZ4::decompress (4 samples, 0.02%)</title><rect x="1093.3" y="853" width="0.2" height="15.0" fill="rgb(238,106,23)" rx="2" ry="2" />
<text x="1096.28" y="863.5" ></text>
</g>
<g >
<title>tmux (6 samples, 0.02%)</title><rect x="1189.7" y="1269" width="0.3" height="15.0" fill="rgb(206,67,39)" rx="2" ry="2" />
<text x="1192.73" y="1279.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (9 samples, 0.03%)</title><rect x="514.5" y="693" width="0.4" height="15.0" fill="rgb(254,140,35)" rx="2" ry="2" />
<text x="517.54" y="703.5" ></text>
</g>
<g >
<title>task_work_run (5 samples, 0.02%)</title><rect x="1129.7" y="1141" width="0.2" height="15.0" fill="rgb(219,56,25)" rx="2" ry="2" />
<text x="1132.72" y="1151.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (16 samples, 0.06%)</title><rect x="328.7" y="981" width="0.7" height="15.0" fill="rgb(215,21,3)" rx="2" ry="2" />
<text x="331.70" y="991.5" ></text>
</g>
<g >
<title>vm_munmap (17 samples, 0.06%)</title><rect x="1123.7" y="741" width="0.8" height="15.0" fill="rgb(210,65,12)" rx="2" ry="2" />
<text x="1126.69" y="751.5" ></text>
</g>
<g >
<title>find_busiest_group (26 samples, 0.10%)</title><rect x="1146.9" y="1077" width="1.2" height="15.0" fill="rgb(251,76,10)" rx="2" ry="2" />
<text x="1149.95" y="1087.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (8 samples, 0.03%)</title><rect x="514.6" y="501" width="0.3" height="15.0" fill="rgb(211,88,19)" rx="2" ry="2" />
<text x="517.59" y="511.5" ></text>
</g>
<g >
<title>kworker/18:0-ev (16 samples, 0.06%)</title><rect x="1134.2" y="1269" width="0.7" height="15.0" fill="rgb(242,87,19)" rx="2" ry="2" />
<text x="1137.17" y="1279.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (6 samples, 0.02%)</title><rect x="352.2" y="981" width="0.3" height="15.0" fill="rgb(212,139,44)" rx="2" ry="2" />
<text x="355.18" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="208.6" y="981" width="0.3" height="15.0" fill="rgb(249,72,20)" rx="2" ry="2" />
<text x="211.62" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.06%)</title><rect x="1123.7" y="773" width="0.8" height="15.0" fill="rgb(238,148,28)" rx="2" ry="2" />
<text x="1126.69" y="783.5" ></text>
</g>
<g >
<title>realloc (209 samples, 0.80%)</title><rect x="104.3" y="1093" width="9.4" height="15.0" fill="rgb(215,155,49)" rx="2" ry="2" />
<text x="107.25" y="1103.5" ></text>
</g>
<g >
<title>worker_thread (23 samples, 0.09%)</title><rect x="1138.3" y="1221" width="1.0" height="15.0" fill="rgb(252,46,0)" rx="2" ry="2" />
<text x="1141.26" y="1231.5" ></text>
</g>
<g >
<title>kworker/0:2-eve (5 samples, 0.02%)</title><rect x="1132.9" y="1269" width="0.2" height="15.0" fill="rgb(225,176,12)" rx="2" ry="2" />
<text x="1135.91" y="1279.5" ></text>
</g>
<g >
<title>perf_event_task_tick (3 samples, 0.01%)</title><rect x="1063.5" y="917" width="0.1" height="15.0" fill="rgb(253,4,30)" rx="2" ry="2" />
<text x="1066.49" y="927.5" ></text>
</g>
<g >
<title>handle_mm_fault (7 samples, 0.03%)</title><rect x="1187.8" y="1189" width="0.3" height="15.0" fill="rgb(247,68,3)" rx="2" ry="2" />
<text x="1190.75" y="1199.5" ></text>
</g>
<g >
<title>DB::Aggregator::prepareBlockAndFill&lt;DB::Block DB::Aggregator::convertOneBucketToBlock&lt;DB::AggregationMethodKeysFixed&lt;TwoLevelHashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt;, false, false&gt; &gt; (1,455 samples, 5.55%)</title><rect x="129.7" y="1157" width="65.5" height="15.0" fill="rgb(253,56,32)" rx="2" ry="2" />
<text x="132.71" y="1167.5" >DB::Agg..</text>
</g>
<g >
<title>perf_ioctl (5 samples, 0.02%)</title><rect x="1139.9" y="1045" width="0.2" height="15.0" fill="rgb(244,47,21)" rx="2" ry="2" />
<text x="1142.88" y="1055.5" ></text>
</g>
<g >
<title>memcpy (47 samples, 0.18%)</title><rect x="506.5" y="981" width="2.2" height="15.0" fill="rgb(212,90,25)" rx="2" ry="2" />
<text x="509.54" y="991.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (164 samples, 0.63%)</title><rect x="1109.2" y="997" width="7.3" height="15.0" fill="rgb(244,100,30)" rx="2" ry="2" />
<text x="1112.16" y="1007.5" ></text>
</g>
<g >
<title>llist_reverse_order (3 samples, 0.01%)</title><rect x="124.0" y="1077" width="0.1" height="15.0" fill="rgb(218,149,25)" rx="2" ry="2" />
<text x="126.96" y="1087.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.03%)</title><rect x="1117.0" y="917" width="0.3" height="15.0" fill="rgb(223,174,37)" rx="2" ry="2" />
<text x="1120.03" y="927.5" ></text>
</g>
<g >
<title>wp_page_copy (3 samples, 0.01%)</title><rect x="1188.1" y="1125" width="0.1" height="15.0" fill="rgb(224,58,47)" rx="2" ry="2" />
<text x="1191.11" y="1135.5" ></text>
</g>
<g >
<title>LZ4::decompress (110 samples, 0.42%)</title><rect x="1086.7" y="901" width="5.0" height="15.0" fill="rgb(207,109,43)" rx="2" ry="2" />
<text x="1089.71" y="911.5" ></text>
</g>
<g >
<title>__madvise (37 samples, 0.14%)</title><rect x="202.7" y="981" width="1.7" height="15.0" fill="rgb(236,59,44)" rx="2" ry="2" />
<text x="205.73" y="991.5" ></text>
</g>
<g >
<title>TwoLevelHashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;, 8ul&gt;::TwoLevelHashTable&lt;HashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt; &gt; (269 samples, 1.03%)</title><rect x="196.1" y="1141" width="12.1" height="15.0" fill="rgb(218,41,37)" rx="2" ry="2" />
<text x="199.07" y="1151.5" ></text>
</g>
<g >
<title>do_iter_read (28 samples, 0.11%)</title><rect x="1084.7" y="773" width="1.2" height="15.0" fill="rgb(234,26,49)" rx="2" ry="2" />
<text x="1087.68" y="783.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="421" width="0.3" height="15.0" fill="rgb(231,36,51)" rx="2" ry="2" />
<text x="517.59" y="431.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="506.1" y="933" width="0.2" height="15.0" fill="rgb(218,51,46)" rx="2" ry="2" />
<text x="509.13" y="943.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (3 samples, 0.01%)</title><rect x="1094.9" y="933" width="0.1" height="15.0" fill="rgb(221,15,34)" rx="2" ry="2" />
<text x="1097.89" y="943.5" ></text>
</g>
<g >
<title>dequeue_entity (5 samples, 0.02%)</title><rect x="1136.6" y="1157" width="0.3" height="15.0" fill="rgb(253,124,29)" rx="2" ry="2" />
<text x="1139.64" y="1167.5" ></text>
</g>
<g >
<title>net_rx_action (4 samples, 0.02%)</title><rect x="1129.1" y="997" width="0.2" height="15.0" fill="rgb(243,64,42)" rx="2" ry="2" />
<text x="1132.09" y="1007.5" ></text>
</g>
<g >
<title>do_task_stat (6 samples, 0.02%)</title><rect x="1132.5" y="1125" width="0.3" height="15.0" fill="rgb(249,69,27)" rx="2" ry="2" />
<text x="1135.55" y="1135.5" ></text>
</g>
<g >
<title>vfs_read (7 samples, 0.03%)</title><rect x="1132.5" y="1189" width="0.3" height="15.0" fill="rgb(253,172,10)" rx="2" ry="2" />
<text x="1135.50" y="1199.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::execute (3 samples, 0.01%)</title><rect x="515.5" y="1061" width="0.1" height="15.0" fill="rgb(216,9,9)" rx="2" ry="2" />
<text x="518.49" y="1071.5" ></text>
</g>
<g >
<title>mem_cgroup_commit_charge (4 samples, 0.02%)</title><rect x="351.5" y="981" width="0.1" height="15.0" fill="rgb(206,144,7)" rx="2" ry="2" />
<text x="354.46" y="991.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned long&gt;::deserializeBinaryBulk (146 samples, 0.56%)</title><rect x="1086.7" y="965" width="6.6" height="15.0" fill="rgb(254,20,30)" rx="2" ry="2" />
<text x="1089.71" y="975.5" ></text>
</g>
<g >
<title>__default_send_IPI_dest_field (3 samples, 0.01%)</title><rect x="330.5" y="773" width="0.1" height="15.0" fill="rgb(218,208,31)" rx="2" ry="2" />
<text x="333.45" y="783.5" ></text>
</g>
<g >
<title>DB::ThreadStatus::updatePerformanceCounters (5 samples, 0.02%)</title><rect x="1108.6" y="1077" width="0.2" height="15.0" fill="rgb(209,192,48)" rx="2" ry="2" />
<text x="1111.57" y="1087.5" ></text>
</g>
<g >
<title>__do_page_fault (80 samples, 0.31%)</title><rect x="117.8" y="1077" width="3.6" height="15.0" fill="rgb(233,197,25)" rx="2" ry="2" />
<text x="120.84" y="1087.5" ></text>
</g>
<g >
<title>[clickhouse] (12 samples, 0.05%)</title><rect x="1100.6" y="853" width="0.5" height="15.0" fill="rgb(242,99,51)" rx="2" ry="2" />
<text x="1103.56" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="1099.8" y="917" width="0.3" height="15.0" fill="rgb(208,47,49)" rx="2" ry="2" />
<text x="1102.75" y="927.5" ></text>
</g>
<g >
<title>handle_mm_fault (47 samples, 0.18%)</title><rect x="309.1" y="1077" width="2.1" height="15.0" fill="rgb(248,33,2)" rx="2" ry="2" />
<text x="312.13" y="1087.5" ></text>
</g>
<g >
<title>load_balance (25 samples, 0.10%)</title><rect x="1142.6" y="1141" width="1.1" height="15.0" fill="rgb(211,123,42)" rx="2" ry="2" />
<text x="1145.58" y="1151.5" ></text>
</g>
<g >
<title>expire_timers (9 samples, 0.03%)</title><rect x="1155.0" y="1093" width="0.4" height="15.0" fill="rgb(232,113,6)" rx="2" ry="2" />
<text x="1158.00" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (12 samples, 0.05%)</title><rect x="1186.7" y="1253" width="0.5" height="15.0" fill="rgb(254,32,24)" rx="2" ry="2" />
<text x="1189.67" y="1263.5" ></text>
</g>
<g >
<title>find_next_bit (4 samples, 0.02%)</title><rect x="42.4" y="837" width="0.2" height="15.0" fill="rgb(237,169,0)" rx="2" ry="2" />
<text x="45.39" y="847.5" ></text>
</g>
<g >
<title>memcpy (9 samples, 0.03%)</title><rect x="1080.2" y="949" width="0.4" height="15.0" fill="rgb(209,73,46)" rx="2" ry="2" />
<text x="1083.23" y="959.5" ></text>
</g>
<g >
<title>do_filp_open (6 samples, 0.02%)</title><rect x="1106.6" y="885" width="0.3" height="15.0" fill="rgb(232,49,3)" rx="2" ry="2" />
<text x="1109.64" y="895.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (8 samples, 0.03%)</title><rect x="514.6" y="469" width="0.3" height="15.0" fill="rgb(231,126,52)" rx="2" ry="2" />
<text x="517.59" y="479.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionNullBase&lt;true, DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::create (115 samples, 0.44%)</title><rect x="306.5" y="1125" width="5.2" height="15.0" fill="rgb(229,129,38)" rx="2" ry="2" />
<text x="309.52" y="1135.5" ></text>
</g>
<g >
<title>kthread (15 samples, 0.06%)</title><rect x="1133.1" y="1237" width="0.7" height="15.0" fill="rgb(205,188,49)" rx="2" ry="2" />
<text x="1136.13" y="1247.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (3 samples, 0.01%)</title><rect x="203.3" y="821" width="0.1" height="15.0" fill="rgb(247,168,17)" rx="2" ry="2" />
<text x="206.32" y="831.5" ></text>
</g>
<g >
<title>__wake_up_common (3 samples, 0.01%)</title><rect x="1126.2" y="741" width="0.1" height="15.0" fill="rgb(210,189,38)" rx="2" ry="2" />
<text x="1129.21" y="751.5" ></text>
</g>
<g >
<title>tcp_sendmsg (15 samples, 0.06%)</title><rect x="1125.9" y="1157" width="0.7" height="15.0" fill="rgb(240,51,0)" rx="2" ry="2" />
<text x="1128.89" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="1080.7" y="901" width="0.2" height="15.0" fill="rgb(253,94,45)" rx="2" ry="2" />
<text x="1083.68" y="911.5" ></text>
</g>
<g >
<title>ThreadFromGlobalPool::ThreadFromGlobalPool&lt;DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::process (20,580 samples, 78.46%)</title><rect x="195.5" y="1221" width="925.9" height="15.0" fill="rgb(221,49,6)" rx="2" ry="2" />
<text x="198.53" y="1231.5" >ThreadFromGlobalPool::ThreadFromGlobalPool&lt;DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::process</text>
</g>
<g >
<title>memcpy (20 samples, 0.08%)</title><rect x="205.7" y="1077" width="0.9" height="15.0" fill="rgb(243,79,36)" rx="2" ry="2" />
<text x="208.65" y="1087.5" ></text>
</g>
<g >
<title>__lru_cache_add (4 samples, 0.02%)</title><rect x="207.3" y="1029" width="0.2" height="15.0" fill="rgb(225,80,30)" rx="2" ry="2" />
<text x="210.27" y="1039.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (7 samples, 0.03%)</title><rect x="1117.0" y="965" width="0.3" height="15.0" fill="rgb(243,157,25)" rx="2" ry="2" />
<text x="1120.03" y="975.5" ></text>
</g>
<g >
<title>menu_select (26 samples, 0.10%)</title><rect x="1184.0" y="1189" width="1.1" height="15.0" fill="rgb(237,52,20)" rx="2" ry="2" />
<text x="1186.97" y="1199.5" ></text>
</g>
<g >
<title>irq_work_interrupt (5 samples, 0.02%)</title><rect x="1064.5" y="965" width="0.2" height="15.0" fill="rgb(234,16,52)" rx="2" ry="2" />
<text x="1067.48" y="975.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (19 samples, 0.07%)</title><rect x="111.4" y="965" width="0.9" height="15.0" fill="rgb(237,119,7)" rx="2" ry="2" />
<text x="114.40" y="975.5" ></text>
</g>
<g >
<title>__lru_cache_add (12 samples, 0.05%)</title><rect x="39.3" y="901" width="0.5" height="15.0" fill="rgb(218,106,4)" rx="2" ry="2" />
<text x="42.29" y="911.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.02%)</title><rect x="1128.8" y="1029" width="0.2" height="15.0" fill="rgb(222,226,15)" rx="2" ry="2" />
<text x="1131.82" y="1039.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertRangeFrom (13 samples, 0.05%)</title><rect x="1081.7" y="933" width="0.6" height="15.0" fill="rgb(244,114,19)" rx="2" ry="2" />
<text x="1084.71" y="943.5" ></text>
</g>
<g >
<title>netlink_rcv_skb (4 samples, 0.02%)</title><rect x="1069.7" y="885" width="0.2" height="15.0" fill="rgb(237,2,39)" rx="2" ry="2" />
<text x="1072.75" y="895.5" ></text>
</g>
<g >
<title>DB::CreatingSetsBlockInputStream::readPrefixImpl (762 samples, 2.91%)</title><rect x="10.0" y="1077" width="34.3" height="15.0" fill="rgb(252,66,23)" rx="2" ry="2" />
<text x="13.04" y="1087.5" >DB..</text>
</g>
<g >
<title>DB::ColumnFixedString::insertData (15 samples, 0.06%)</title><rect x="194.1" y="1141" width="0.7" height="15.0" fill="rgb(230,198,46)" rx="2" ry="2" />
<text x="197.14" y="1151.5" ></text>
</g>
<g >
<title>[unknown] (42 samples, 0.16%)</title><rect x="1121.6" y="1253" width="1.9" height="15.0" fill="rgb(251,221,29)" rx="2" ry="2" />
<text x="1124.57" y="1263.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="201.0" y="1077" width="0.1" height="15.0" fill="rgb(220,28,42)" rx="2" ry="2" />
<text x="203.98" y="1087.5" ></text>
</g>
<g >
<title>do_sys_open (4 samples, 0.02%)</title><rect x="1120.7" y="949" width="0.2" height="15.0" fill="rgb(229,13,38)" rx="2" ry="2" />
<text x="1123.67" y="959.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (7 samples, 0.03%)</title><rect x="104.3" y="885" width="0.4" height="15.0" fill="rgb(218,97,15)" rx="2" ry="2" />
<text x="107.34" y="895.5" ></text>
</g>
<g >
<title>update_blocked_averages (11 samples, 0.04%)</title><rect x="1138.8" y="1109" width="0.5" height="15.0" fill="rgb(234,215,32)" rx="2" ry="2" />
<text x="1141.76" y="1119.5" ></text>
</g>
<g >
<title>__GI___libc_open (8 samples, 0.03%)</title><rect x="1107.3" y="965" width="0.4" height="15.0" fill="rgb(219,61,14)" rx="2" ry="2" />
<text x="1110.31" y="975.5" ></text>
</g>
<g >
<title>DB::BlockIO::operator= (20 samples, 0.08%)</title><rect x="1123.6" y="1125" width="0.9" height="15.0" fill="rgb(217,15,52)" rx="2" ry="2" />
<text x="1126.60" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (24 samples, 0.09%)</title><rect x="201.1" y="997" width="1.1" height="15.0" fill="rgb(241,123,25)" rx="2" ry="2" />
<text x="204.11" y="1007.5" ></text>
</g>
<g >
<title>alloc_pages_vma (102 samples, 0.39%)</title><rect x="346.9" y="981" width="4.6" height="15.0" fill="rgb(231,172,23)" rx="2" ry="2" />
<text x="349.87" y="991.5" ></text>
</g>
<g >
<title>smp_call_function_many (3 samples, 0.01%)</title><rect x="208.6" y="869" width="0.2" height="15.0" fill="rgb(233,197,40)" rx="2" ry="2" />
<text x="211.62" y="879.5" ></text>
</g>
<g >
<title>realloc (71 samples, 0.27%)</title><rect x="508.7" y="1013" width="3.2" height="15.0" fill="rgb(220,129,40)" rx="2" ry="2" />
<text x="511.74" y="1023.5" ></text>
</g>
<g >
<title>alloc_pages_vma (6 samples, 0.02%)</title><rect x="218.7" y="981" width="0.3" height="15.0" fill="rgb(234,30,22)" rx="2" ry="2" />
<text x="221.70" y="991.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6 samples, 0.02%)</title><rect x="218.7" y="949" width="0.3" height="15.0" fill="rgb(217,63,7)" rx="2" ry="2" />
<text x="221.70" y="959.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (10 samples, 0.04%)</title><rect x="1125.9" y="1093" width="0.5" height="15.0" fill="rgb(213,70,1)" rx="2" ry="2" />
<text x="1128.94" y="1103.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (20,580 samples, 78.46%)</title><rect x="195.5" y="1237" width="925.9" height="15.0" fill="rgb(252,48,5)" rx="2" ry="2" />
<text x="198.53" y="1247.5" >ThreadPoolImpl&lt;std::thread&gt;::worker</text>
</g>
<g >
<title>tcp_v6_rcv (8 samples, 0.03%)</title><rect x="1126.0" y="853" width="0.4" height="15.0" fill="rgb(253,48,13)" rx="2" ry="2" />
<text x="1129.03" y="863.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionNullBase&lt;true, DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::destroy (14 samples, 0.05%)</title><rect x="129.7" y="1141" width="0.6" height="15.0" fill="rgb(253,170,18)" rx="2" ry="2" />
<text x="132.71" y="1151.5" ></text>
</g>
<g >
<title>reschedule_interrupt (5 samples, 0.02%)</title><rect x="1183.5" y="1173" width="0.2" height="15.0" fill="rgb(236,130,28)" rx="2" ry="2" />
<text x="1186.52" y="1183.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="309" width="0.3" height="15.0" fill="rgb(212,63,45)" rx="2" ry="2" />
<text x="517.59" y="319.5" ></text>
</g>
<g >
<title>ret_from_fork (78 samples, 0.30%)</title><rect x="1140.2" y="1253" width="3.5" height="15.0" fill="rgb(237,158,54)" rx="2" ry="2" />
<text x="1143.20" y="1263.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (52 samples, 0.20%)</title><rect x="316.2" y="1125" width="2.4" height="15.0" fill="rgb(249,40,32)" rx="2" ry="2" />
<text x="319.24" y="1135.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (10 samples, 0.04%)</title><rect x="1125.9" y="1077" width="0.5" height="15.0" fill="rgb(243,190,12)" rx="2" ry="2" />
<text x="1128.94" y="1087.5" ></text>
</g>
<g >
<title>find_busiest_group (19 samples, 0.07%)</title><rect x="1137.2" y="1141" width="0.8" height="15.0" fill="rgb(246,208,15)" rx="2" ry="2" />
<text x="1140.18" y="1151.5" ></text>
</g>
<g >
<title>load_balance (21 samples, 0.08%)</title><rect x="1130.4" y="1045" width="0.9" height="15.0" fill="rgb(224,17,12)" rx="2" ry="2" />
<text x="1133.39" y="1055.5" ></text>
</g>
<g >
<title>free_unref_page_list (6 samples, 0.02%)</title><rect x="1124.2" y="629" width="0.3" height="15.0" fill="rgb(228,54,54)" rx="2" ry="2" />
<text x="1127.18" y="639.5" ></text>
</g>
<g >
<title>up_read (3 samples, 0.01%)</title><rect x="219.0" y="1013" width="0.1" height="15.0" fill="rgb(228,3,30)" rx="2" ry="2" />
<text x="221.97" y="1023.5" ></text>
</g>
<g >
<title>DB::ParserTernaryOperatorExpression::parseImpl (10 samples, 0.04%)</title><rect x="514.5" y="709" width="0.5" height="15.0" fill="rgb(239,170,46)" rx="2" ry="2" />
<text x="517.54" y="719.5" ></text>
</g>
<g >
<title>cpu_startup_entry (839 samples, 3.20%)</title><rect x="1148.8" y="1221" width="37.8" height="15.0" fill="rgb(211,97,42)" rx="2" ry="2" />
<text x="1151.84" y="1231.5" >cpu..</text>
</g>
<g >
<title>do_wp_page (3 samples, 0.01%)</title><rect x="1188.1" y="1141" width="0.1" height="15.0" fill="rgb(222,115,41)" rx="2" ry="2" />
<text x="1191.11" y="1151.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge_delay (12 samples, 0.05%)</title><rect x="351.6" y="981" width="0.6" height="15.0" fill="rgb(250,39,25)" rx="2" ry="2" />
<text x="354.64" y="991.5" ></text>
</g>
<g >
<title>source_load (8 samples, 0.03%)</title><rect x="1147.7" y="1061" width="0.3" height="15.0" fill="rgb(233,67,36)" rx="2" ry="2" />
<text x="1150.67" y="1071.5" ></text>
</g>
<g >
<title>do_sys_open (6 samples, 0.02%)</title><rect x="1106.6" y="901" width="0.3" height="15.0" fill="rgb(209,150,10)" rx="2" ry="2" />
<text x="1109.64" y="911.5" ></text>
</g>
<g >
<title>ovl_read_iter (7 samples, 0.03%)</title><rect x="1099.8" y="837" width="0.3" height="15.0" fill="rgb(221,93,8)" rx="2" ry="2" />
<text x="1102.75" y="847.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13 samples, 0.05%)</title><rect x="118.8" y="997" width="0.6" height="15.0" fill="rgb(210,135,34)" rx="2" ry="2" />
<text x="121.83" y="1007.5" ></text>
</g>
<g >
<title>load_balance (24 samples, 0.09%)</title><rect x="1137.0" y="1157" width="1.0" height="15.0" fill="rgb(211,22,15)" rx="2" ry="2" />
<text x="1139.96" y="1167.5" ></text>
</g>
<g >
<title>path_lookupat (5 samples, 0.02%)</title><rect x="1106.9" y="901" width="0.2" height="15.0" fill="rgb(240,27,31)" rx="2" ry="2" />
<text x="1109.91" y="911.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionNullBase&lt;true, DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::isState (4 samples, 0.02%)</title><rect x="130.7" y="1141" width="0.1" height="15.0" fill="rgb(232,112,19)" rx="2" ry="2" />
<text x="133.66" y="1151.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge_delay (29 samples, 0.11%)</title><rect x="396.0" y="1029" width="1.3" height="15.0" fill="rgb(205,49,29)" rx="2" ry="2" />
<text x="398.96" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1086.2" y="885" width="0.2" height="15.0" fill="rgb(212,47,40)" rx="2" ry="2" />
<text x="1089.17" y="895.5" ></text>
</g>
<g >
<title>__lru_cache_add (5 samples, 0.02%)</title><rect x="309.6" y="1045" width="0.2" height="15.0" fill="rgb(212,119,18)" rx="2" ry="2" />
<text x="312.62" y="1055.5" ></text>
</g>
<g >
<title>ksys_read (31 samples, 0.12%)</title><rect x="1093.5" y="821" width="1.4" height="15.0" fill="rgb(218,105,54)" rx="2" ry="2" />
<text x="1096.50" y="831.5" ></text>
</g>
<g >
<title>do_filp_open (3 samples, 0.01%)</title><rect x="1106.4" y="885" width="0.1" height="15.0" fill="rgb(231,99,32)" rx="2" ry="2" />
<text x="1109.41" y="895.5" ></text>
</g>
<g >
<title>DB::OwnFormattingChannel::logExtended (3 samples, 0.01%)</title><rect x="195.9" y="1109" width="0.2" height="15.0" fill="rgb(236,23,18)" rx="2" ry="2" />
<text x="198.94" y="1119.5" ></text>
</g>
<g >
<title>ipv6_rcv (8 samples, 0.03%)</title><rect x="1126.0" y="901" width="0.4" height="15.0" fill="rgb(246,92,41)" rx="2" ry="2" />
<text x="1129.03" y="911.5" ></text>
</g>
<g >
<title>update_blocked_averages (22 samples, 0.08%)</title><rect x="1153.9" y="1093" width="1.0" height="15.0" fill="rgb(245,12,12)" rx="2" ry="2" />
<text x="1156.92" y="1103.5" ></text>
</g>
<g >
<title>copy_page_to_iter (7 samples, 0.03%)</title><rect x="1092.3" y="757" width="0.3" height="15.0" fill="rgb(237,151,16)" rx="2" ry="2" />
<text x="1095.33" y="767.5" ></text>
</g>
<g >
<title>up_read (38 samples, 0.14%)</title><rect x="352.5" y="1013" width="1.7" height="15.0" fill="rgb(211,11,37)" rx="2" ry="2" />
<text x="355.45" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1129.7" y="1189" width="0.2" height="15.0" fill="rgb(232,63,14)" rx="2" ry="2" />
<text x="1132.67" y="1199.5" ></text>
</g>
<g >
<title>large_ralloc (98 samples, 0.37%)</title><rect x="328.4" y="1061" width="4.4" height="15.0" fill="rgb(208,102,2)" rx="2" ry="2" />
<text x="331.43" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (110 samples, 0.42%)</title><rect x="1086.7" y="885" width="5.0" height="15.0" fill="rgb(224,203,15)" rx="2" ry="2" />
<text x="1089.71" y="895.5" ></text>
</g>
<g >
<title>do_idle (839 samples, 3.20%)</title><rect x="1148.8" y="1205" width="37.8" height="15.0" fill="rgb(222,220,13)" rx="2" ry="2" />
<text x="1151.84" y="1215.5" >do_..</text>
</g>
<g >
<title>__GI___libc_close (8 samples, 0.03%)</title><rect x="1129.6" y="1205" width="0.3" height="15.0" fill="rgb(241,41,40)" rx="2" ry="2" />
<text x="1132.58" y="1215.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImplCase&lt;false, DB::AggregationMethodKeysFixed&lt;TwoLevelHashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt;, false, false&gt; &gt; (4,097 samples, 15.62%)</title><rect x="222.1" y="1141" width="184.3" height="15.0" fill="rgb(215,165,43)" rx="2" ry="2" />
<text x="225.12" y="1151.5" >DB::Aggregator::executeI..</text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="461.8" y="1045" width="0.1" height="15.0" fill="rgb(229,25,46)" rx="2" ry="2" />
<text x="464.77" y="1055.5" ></text>
</g>
<g >
<title>source_load (5 samples, 0.02%)</title><rect x="1152.7" y="1061" width="0.3" height="15.0" fill="rgb(248,19,6)" rx="2" ry="2" />
<text x="1155.75" y="1071.5" ></text>
</g>
<g >
<title>ptep_clear_flush (31 samples, 0.12%)</title><rect x="42.1" y="901" width="1.4" height="15.0" fill="rgb(206,5,35)" rx="2" ry="2" />
<text x="45.12" y="911.5" ></text>
</g>
<g >
<title>rmap_walk_anon (31 samples, 0.12%)</title><rect x="119.6" y="981" width="1.4" height="15.0" fill="rgb(210,200,5)" rx="2" ry="2" />
<text x="122.64" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (102 samples, 0.39%)</title><rect x="1075.6" y="901" width="4.6" height="15.0" fill="rgb(228,93,31)" rx="2" ry="2" />
<text x="1078.64" y="911.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (32 samples, 0.12%)</title><rect x="1093.5" y="885" width="1.4" height="15.0" fill="rgb(245,107,33)" rx="2" ry="2" />
<text x="1096.45" y="895.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (7 samples, 0.03%)</title><rect x="1106.0" y="981" width="0.3" height="15.0" fill="rgb(207,119,2)" rx="2" ry="2" />
<text x="1108.96" y="991.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1108.1" y="1029" width="0.2" height="15.0" fill="rgb(206,45,27)" rx="2" ry="2" />
<text x="1111.12" y="1039.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionNullBase&lt;true, DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::insertResultInto (7 samples, 0.03%)</title><rect x="130.3" y="1141" width="0.4" height="15.0" fill="rgb(223,94,50)" rx="2" ry="2" />
<text x="133.34" y="1151.5" ></text>
</g>
<g >
<title>kthread (4 samples, 0.02%)</title><rect x="1133.9" y="1237" width="0.2" height="15.0" fill="rgb(243,195,20)" rx="2" ry="2" />
<text x="1136.94" y="1247.5" ></text>
</g>
<g >
<title>[clickhouse] (35 samples, 0.13%)</title><rect x="1084.5" y="965" width="1.5" height="15.0" fill="rgb(243,18,50)" rx="2" ry="2" />
<text x="1087.46" y="975.5" ></text>
</g>
<g >
<title>path_openat (4 samples, 0.02%)</title><rect x="1120.7" y="917" width="0.2" height="15.0" fill="rgb(248,179,53)" rx="2" ry="2" />
<text x="1123.67" y="927.5" ></text>
</g>
<g >
<title>find_busiest_group (9 samples, 0.03%)</title><rect x="1134.4" y="1141" width="0.4" height="15.0" fill="rgb(240,115,4)" rx="2" ry="2" />
<text x="1137.39" y="1151.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (3 samples, 0.01%)</title><rect x="506.0" y="901" width="0.1" height="15.0" fill="rgb(229,150,53)" rx="2" ry="2" />
<text x="509.00" y="911.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (5 samples, 0.02%)</title><rect x="487.1" y="949" width="0.2" height="15.0" fill="rgb(250,125,2)" rx="2" ry="2" />
<text x="490.06" y="959.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (11 samples, 0.04%)</title><rect x="1081.7" y="901" width="0.5" height="15.0" fill="rgb(226,81,10)" rx="2" ry="2" />
<text x="1084.71" y="911.5" ></text>
</g>
<g >
<title>try_to_wake_up (8 samples, 0.03%)</title><rect x="1153.6" y="981" width="0.3" height="15.0" fill="rgb(233,126,37)" rx="2" ry="2" />
<text x="1156.56" y="991.5" ></text>
</g>
<g >
<title>cpuidle_governor_latency_req (5 samples, 0.02%)</title><rect x="1184.5" y="1173" width="0.2" height="15.0" fill="rgb(232,20,34)" rx="2" ry="2" />
<text x="1187.51" y="1183.5" ></text>
</g>
<g >
<title>kthread (4 samples, 0.02%)</title><rect x="1135.6" y="1237" width="0.2" height="15.0" fill="rgb(227,21,45)" rx="2" ry="2" />
<text x="1138.61" y="1247.5" ></text>
</g>
<g >
<title>__sched_text_start (34 samples, 0.13%)</title><rect x="1136.6" y="1189" width="1.6" height="15.0" fill="rgb(217,35,5)" rx="2" ry="2" />
<text x="1139.64" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (102 samples, 0.39%)</title><rect x="478.5" y="1141" width="4.6" height="15.0" fill="rgb(216,159,14)" rx="2" ry="2" />
<text x="481.46" y="1151.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (6 samples, 0.02%)</title><rect x="514.6" y="133" width="0.3" height="15.0" fill="rgb(242,60,43)" rx="2" ry="2" />
<text x="517.63" y="143.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (3 samples, 0.01%)</title><rect x="351.3" y="933" width="0.1" height="15.0" fill="rgb(254,175,35)" rx="2" ry="2" />
<text x="354.28" y="943.5" ></text>
</g>
<g >
<title>tick_sched_timer (4 samples, 0.02%)</title><rect x="373.0" y="981" width="0.1" height="15.0" fill="rgb(228,58,8)" rx="2" ry="2" />
<text x="375.97" y="991.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (248 samples, 0.95%)</title><rect x="1172.2" y="1173" width="11.2" height="15.0" fill="rgb(240,223,7)" rx="2" ry="2" />
<text x="1175.23" y="1183.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (4 samples, 0.02%)</title><rect x="1127.2" y="1253" width="0.1" height="15.0" fill="rgb(210,9,15)" rx="2" ry="2" />
<text x="1130.15" y="1263.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::MergeTreeReader (53 samples, 0.20%)</title><rect x="1105.9" y="1061" width="2.4" height="15.0" fill="rgb(232,202,32)" rx="2" ry="2" />
<text x="1108.92" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="506.1" y="917" width="0.2" height="15.0" fill="rgb(228,115,51)" rx="2" ry="2" />
<text x="509.13" y="927.5" ></text>
</g>
<g >
<title>ret_from_fork (4 samples, 0.02%)</title><rect x="1135.9" y="1253" width="0.2" height="15.0" fill="rgb(215,18,45)" rx="2" ry="2" />
<text x="1138.92" y="1263.5" ></text>
</g>
<g >
<title>proc_reg_read (3 samples, 0.01%)</title><rect x="1128.3" y="1157" width="0.1" height="15.0" fill="rgb(245,31,11)" rx="2" ry="2" />
<text x="1131.28" y="1167.5" ></text>
</g>
<g >
<title>realloc (7 samples, 0.03%)</title><rect x="1062.1" y="981" width="0.3" height="15.0" fill="rgb(221,9,49)" rx="2" ry="2" />
<text x="1065.05" y="991.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1139.9" y="1221" width="0.2" height="15.0" fill="rgb(252,43,38)" rx="2" ry="2" />
<text x="1142.88" y="1231.5" ></text>
</g>
<g >
<title>update_blocked_averages (3 samples, 0.01%)</title><rect x="1134.7" y="1109" width="0.1" height="15.0" fill="rgb(216,194,51)" rx="2" ry="2" />
<text x="1137.66" y="1119.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (13 samples, 0.05%)</title><rect x="123.5" y="1093" width="0.6" height="15.0" fill="rgb(245,123,51)" rx="2" ry="2" />
<text x="126.51" y="1103.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="373.0" y="965" width="0.1" height="15.0" fill="rgb(249,91,4)" rx="2" ry="2" />
<text x="376.01" y="975.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (6 samples, 0.02%)</title><rect x="514.6" y="85" width="0.3" height="15.0" fill="rgb(228,28,40)" rx="2" ry="2" />
<text x="517.63" y="95.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (49 samples, 0.19%)</title><rect x="1070.8" y="933" width="2.2" height="15.0" fill="rgb(210,177,45)" rx="2" ry="2" />
<text x="1073.83" y="943.5" ></text>
</g>
<g >
<title>HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::iterator_base&lt;HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::iterator, false&gt;::operator++ (104 samples, 0.40%)</title><rect x="124.6" y="1141" width="4.7" height="15.0" fill="rgb(234,155,28)" rx="2" ry="2" />
<text x="127.59" y="1151.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (3 samples, 0.01%)</title><rect x="506.1" y="949" width="0.2" height="15.0" fill="rgb(239,226,17)" rx="2" ry="2" />
<text x="509.13" y="959.5" ></text>
</g>
<g >
<title>HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::resize (137 samples, 0.52%)</title><rect x="215.5" y="1125" width="6.1" height="15.0" fill="rgb(219,212,12)" rx="2" ry="2" />
<text x="218.46" y="1135.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertFrom (1,788 samples, 6.82%)</title><rect x="975.0" y="1029" width="80.4" height="15.0" fill="rgb(209,179,25)" rx="2" ry="2" />
<text x="977.96" y="1039.5" >DB::Colum..</text>
</g>
<g >
<title>dbs_work_handler (4 samples, 0.02%)</title><rect x="1136.4" y="1189" width="0.2" height="15.0" fill="rgb(219,175,34)" rx="2" ry="2" />
<text x="1139.42" y="1199.5" ></text>
</g>
<g >
<title>DB::ColumnLowCardinality::~ColumnLowCardinality (3 samples, 0.01%)</title><rect x="487.9" y="1077" width="0.1" height="15.0" fill="rgb(218,17,9)" rx="2" ry="2" />
<text x="490.91" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="509.0" y="853" width="0.2" height="15.0" fill="rgb(218,202,21)" rx="2" ry="2" />
<text x="511.97" y="863.5" ></text>
</g>
<g >
<title>smp_call_function_many (24 samples, 0.09%)</title><rect x="112.5" y="869" width="1.1" height="15.0" fill="rgb(217,53,34)" rx="2" ry="2" />
<text x="115.48" y="879.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="332.6" y="981" width="0.2" height="15.0" fill="rgb(245,229,9)" rx="2" ry="2" />
<text x="335.61" y="991.5" ></text>
</g>
<g >
<title>sh (7 samples, 0.03%)</title><rect x="1143.9" y="1269" width="0.3" height="15.0" fill="rgb(243,227,37)" rx="2" ry="2" />
<text x="1146.89" y="1279.5" ></text>
</g>
<g >
<title>schedule_idle (13 samples, 0.05%)</title><rect x="1185.2" y="1189" width="0.6" height="15.0" fill="rgb(253,26,26)" rx="2" ry="2" />
<text x="1188.23" y="1199.5" ></text>
</g>
<g >
<title>zap_page_range (5 samples, 0.02%)</title><rect x="487.1" y="981" width="0.2" height="15.0" fill="rgb(206,77,8)" rx="2" ry="2" />
<text x="490.06" y="991.5" ></text>
</g>
<g >
<title>DB::Block::insert (6 samples, 0.02%)</title><rect x="1108.8" y="1029" width="0.3" height="15.0" fill="rgb(227,7,19)" rx="2" ry="2" />
<text x="1111.80" y="1039.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (10 samples, 0.04%)</title><rect x="514.5" y="725" width="0.5" height="15.0" fill="rgb(230,126,5)" rx="2" ry="2" />
<text x="517.54" y="735.5" ></text>
</g>
<g >
<title>DB::ThreadStatus::updatePerformanceCounters (14 samples, 0.05%)</title><rect x="1069.4" y="1045" width="0.7" height="15.0" fill="rgb(209,104,53)" rx="2" ry="2" />
<text x="1072.43" y="1055.5" ></text>
</g>
<g >
<title>irq_exit (5 samples, 0.02%)</title><rect x="1145.1" y="1141" width="0.3" height="15.0" fill="rgb(237,80,44)" rx="2" ry="2" />
<text x="1148.15" y="1151.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.03%)</title><rect x="331.4" y="997" width="0.3" height="15.0" fill="rgb(222,176,9)" rx="2" ry="2" />
<text x="334.40" y="1007.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (105 samples, 0.40%)</title><rect x="1150.7" y="1125" width="4.7" height="15.0" fill="rgb(250,91,27)" rx="2" ry="2" />
<text x="1153.73" y="1135.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (3 samples, 0.01%)</title><rect x="1080.7" y="757" width="0.1" height="15.0" fill="rgb(225,124,14)" rx="2" ry="2" />
<text x="1083.68" y="767.5" ></text>
</g>
<g >
<title>ep_poll (34 samples, 0.13%)</title><rect x="1130.0" y="1125" width="1.6" height="15.0" fill="rgb(226,156,23)" rx="2" ry="2" />
<text x="1133.03" y="1135.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (5 samples, 0.02%)</title><rect x="487.1" y="1061" width="0.2" height="15.0" fill="rgb(250,67,15)" rx="2" ry="2" />
<text x="490.06" y="1071.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (3 samples, 0.01%)</title><rect x="488.1" y="869" width="0.1" height="15.0" fill="rgb(210,92,52)" rx="2" ry="2" />
<text x="491.09" y="879.5" ></text>
</g>
<g >
<title>handle_mm_fault (6 samples, 0.02%)</title><rect x="1186.9" y="1205" width="0.3" height="15.0" fill="rgb(251,208,15)" rx="2" ry="2" />
<text x="1189.94" y="1215.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (11 samples, 0.04%)</title><rect x="187.3" y="1093" width="0.4" height="15.0" fill="rgb(210,13,7)" rx="2" ry="2" />
<text x="190.25" y="1103.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (6 samples, 0.02%)</title><rect x="514.6" y="149" width="0.3" height="15.0" fill="rgb(225,192,1)" rx="2" ry="2" />
<text x="517.63" y="159.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt;::insertResultInto (8 samples, 0.03%)</title><rect x="186.4" y="1109" width="0.3" height="15.0" fill="rgb(210,117,29)" rx="2" ry="2" />
<text x="189.35" y="1119.5" ></text>
</g>
<g >
<title>set_next_entity (5 samples, 0.02%)</title><rect x="1185.6" y="1141" width="0.2" height="15.0" fill="rgb(214,228,10)" rx="2" ry="2" />
<text x="1188.59" y="1151.5" ></text>
</g>
<g >
<title>update_nohz_stats (4 samples, 0.02%)</title><rect x="1142.2" y="1125" width="0.2" height="15.0" fill="rgb(207,222,29)" rx="2" ry="2" />
<text x="1145.22" y="1135.5" ></text>
</g>
<g >
<title>DB::Aggregator::mergeBucketImpl&lt;DB::AggregationMethodSerialized&lt;TwoLevelHashMapTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt; &gt; &gt; (10 samples, 0.04%)</title><rect x="129.3" y="1157" width="0.4" height="15.0" fill="rgb(219,142,28)" rx="2" ry="2" />
<text x="132.26" y="1167.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (9 samples, 0.03%)</title><rect x="1185.9" y="1189" width="0.4" height="15.0" fill="rgb(212,199,38)" rx="2" ry="2" />
<text x="1188.86" y="1199.5" ></text>
</g>
<g >
<title>__GI___libc_open (3 samples, 0.01%)</title><rect x="1106.4" y="949" width="0.1" height="15.0" fill="rgb(251,189,54)" rx="2" ry="2" />
<text x="1109.41" y="959.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (14,082 samples, 53.69%)</title><rect x="487.6" y="1173" width="633.5" height="15.0" fill="rgb(237,86,16)" rx="2" ry="2" />
<text x="490.60" y="1183.5" >DB::IBlockInputStream::read</text>
</g>
<g >
<title>mmput (9 samples, 0.03%)</title><rect x="1189.3" y="1109" width="0.4" height="15.0" fill="rgb(212,45,53)" rx="2" ry="2" />
<text x="1192.28" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (31 samples, 0.12%)</title><rect x="1093.5" y="837" width="1.4" height="15.0" fill="rgb(222,210,50)" rx="2" ry="2" />
<text x="1096.50" y="847.5" ></text>
</g>
<g >
<title>ksys_read (9 samples, 0.03%)</title><rect x="1092.3" y="869" width="0.4" height="15.0" fill="rgb(251,193,7)" rx="2" ry="2" />
<text x="1095.33" y="879.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (5 samples, 0.02%)</title><rect x="404.0" y="1093" width="0.2" height="15.0" fill="rgb(222,17,29)" rx="2" ry="2" />
<text x="406.96" y="1103.5" ></text>
</g>
<g >
<title>tcache_alloc_small_hard (26 samples, 0.10%)</title><rect x="201.1" y="1093" width="1.2" height="15.0" fill="rgb(242,225,51)" rx="2" ry="2" />
<text x="204.11" y="1103.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (16 samples, 0.06%)</title><rect x="10.0" y="981" width="0.8" height="15.0" fill="rgb(232,194,41)" rx="2" ry="2" />
<text x="13.04" y="991.5" ></text>
</g>
<g >
<title>sync_regs (4 samples, 0.02%)</title><rect x="37.1" y="981" width="0.2" height="15.0" fill="rgb(240,143,40)" rx="2" ry="2" />
<text x="40.08" y="991.5" ></text>
</g>
<g >
<title>DB::IDataType::deserializeBinaryBulkWithMultipleStreams (45 samples, 0.17%)</title><rect x="1118.3" y="1013" width="2.1" height="15.0" fill="rgb(248,198,18)" rx="2" ry="2" />
<text x="1121.33" y="1023.5" ></text>
</g>
<g >
<title>memcpy (50 samples, 0.19%)</title><rect x="509.5" y="981" width="2.3" height="15.0" fill="rgb(211,203,22)" rx="2" ry="2" />
<text x="512.51" y="991.5" ></text>
</g>
<g >
<title>arena_decay (4 samples, 0.02%)</title><rect x="1080.7" y="917" width="0.2" height="15.0" fill="rgb(211,152,31)" rx="2" ry="2" />
<text x="1083.68" y="927.5" ></text>
</g>
<g >
<title>memcpy (8 samples, 0.03%)</title><rect x="44.0" y="1029" width="0.3" height="15.0" fill="rgb(235,178,51)" rx="2" ry="2" />
<text x="46.97" y="1039.5" ></text>
</g>
<g >
<title>do_epoll_wait (35 samples, 0.13%)</title><rect x="1130.0" y="1141" width="1.6" height="15.0" fill="rgb(206,194,36)" rx="2" ry="2" />
<text x="1133.03" y="1151.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1187.2" y="1205" width="0.2" height="15.0" fill="rgb(244,85,26)" rx="2" ry="2" />
<text x="1190.21" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1105.2" y="901" width="0.1" height="15.0" fill="rgb(223,132,46)" rx="2" ry="2" />
<text x="1108.20" y="911.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (4 samples, 0.02%)</title><rect x="205.3" y="869" width="0.2" height="15.0" fill="rgb(210,140,18)" rx="2" ry="2" />
<text x="208.34" y="879.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (6 samples, 0.02%)</title><rect x="1086.2" y="933" width="0.2" height="15.0" fill="rgb(211,149,8)" rx="2" ry="2" />
<text x="1089.17" y="943.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned short&gt;::serializeValueIntoArena (49 samples, 0.19%)</title><rect x="453.7" y="1125" width="2.2" height="15.0" fill="rgb(234,153,49)" rx="2" ry="2" />
<text x="456.72" y="1135.5" ></text>
</g>
<g >
<title>extent_alloc_wrapper (3 samples, 0.01%)</title><rect x="204.5" y="1029" width="0.1" height="15.0" fill="rgb(239,70,7)" rx="2" ry="2" />
<text x="207.48" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (18 samples, 0.07%)</title><rect x="204.8" y="1029" width="0.9" height="15.0" fill="rgb(233,9,0)" rx="2" ry="2" />
<text x="207.84" y="1039.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (20 samples, 0.08%)</title><rect x="514.4" y="933" width="0.9" height="15.0" fill="rgb(228,14,22)" rx="2" ry="2" />
<text x="517.41" y="943.5" ></text>
</g>
<g >
<title>DB::Aggregator::createAggregateStates (4 samples, 0.02%)</title><rect x="215.0" y="1125" width="0.2" height="15.0" fill="rgb(236,36,27)" rx="2" ry="2" />
<text x="218.01" y="1135.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (5 samples, 0.02%)</title><rect x="332.3" y="805" width="0.3" height="15.0" fill="rgb(251,67,46)" rx="2" ry="2" />
<text x="335.34" y="815.5" ></text>
</g>
<g >
<title>release_pages (3 samples, 0.01%)</title><rect x="509.1" y="757" width="0.1" height="15.0" fill="rgb(207,217,35)" rx="2" ry="2" />
<text x="512.06" y="767.5" ></text>
</g>
<g >
<title>load_balance (23 samples, 0.09%)</title><rect x="1152.1" y="1093" width="1.1" height="15.0" fill="rgb(251,143,21)" rx="2" ry="2" />
<text x="1155.12" y="1103.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="487.1" y="1077" width="0.2" height="15.0" fill="rgb(237,130,10)" rx="2" ry="2" />
<text x="490.06" y="1087.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (3 samples, 0.01%)</title><rect x="1094.9" y="917" width="0.1" height="15.0" fill="rgb(226,92,37)" rx="2" ry="2" />
<text x="1097.89" y="927.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (5 samples, 0.02%)</title><rect x="1085.7" y="709" width="0.2" height="15.0" fill="rgb(223,63,6)" rx="2" ry="2" />
<text x="1088.72" y="719.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="487.1" y="1093" width="0.2" height="15.0" fill="rgb(224,79,24)" rx="2" ry="2" />
<text x="490.06" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="1099.8" y="901" width="0.3" height="15.0" fill="rgb(243,60,31)" rx="2" ry="2" />
<text x="1102.75" y="911.5" ></text>
</g>
<g >
<title>sync_regs (3 samples, 0.01%)</title><rect x="308.3" y="1093" width="0.1" height="15.0" fill="rgb(212,17,38)" rx="2" ry="2" />
<text x="311.27" y="1103.5" ></text>
</g>
<g >
<title>flush_old_exec (9 samples, 0.03%)</title><rect x="1189.3" y="1125" width="0.4" height="15.0" fill="rgb(252,66,7)" rx="2" ry="2" />
<text x="1192.28" y="1135.5" ></text>
</g>
<g >
<title>DB::ColumnString::serializeValueIntoArena (72 samples, 0.27%)</title><rect x="446.1" y="1109" width="3.2" height="15.0" fill="rgb(219,165,39)" rx="2" ry="2" />
<text x="449.07" y="1119.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (16 samples, 0.06%)</title><rect x="1153.2" y="1093" width="0.7" height="15.0" fill="rgb(216,68,0)" rx="2" ry="2" />
<text x="1156.20" y="1103.5" ></text>
</g>
<g >
<title>large_dalloc (25 samples, 0.10%)</title><rect x="328.6" y="1045" width="1.1" height="15.0" fill="rgb(240,82,10)" rx="2" ry="2" />
<text x="331.61" y="1055.5" ></text>
</g>
<g >
<title>__se_sys_madvise (37 samples, 0.14%)</title><rect x="202.7" y="933" width="1.7" height="15.0" fill="rgb(226,62,37)" rx="2" ry="2" />
<text x="205.73" y="943.5" ></text>
</g>
<g >
<title>pick_next_task_fair (4 samples, 0.02%)</title><rect x="1142.2" y="1173" width="0.2" height="15.0" fill="rgb(209,37,18)" rx="2" ry="2" />
<text x="1145.22" y="1183.5" ></text>
</g>
<g >
<title>__handle_mm_fault (211 samples, 0.80%)</title><rect x="343.0" y="997" width="9.5" height="15.0" fill="rgb(237,132,7)" rx="2" ry="2" />
<text x="345.96" y="1007.5" ></text>
</g>
<g >
<title>kworker/49:0-ev (4 samples, 0.02%)</title><rect x="1135.6" y="1269" width="0.2" height="15.0" fill="rgb(217,138,41)" rx="2" ry="2" />
<text x="1138.61" y="1279.5" ></text>
</g>
<g >
<title>free_unref_page_list (9 samples, 0.03%)</title><rect x="201.7" y="869" width="0.4" height="15.0" fill="rgb(240,178,35)" rx="2" ry="2" />
<text x="204.65" y="879.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (19 samples, 0.07%)</title><rect x="514.4" y="869" width="0.9" height="15.0" fill="rgb(250,169,21)" rx="2" ry="2" />
<text x="517.41" y="879.5" ></text>
</g>
<g >
<title>find_get_entry (9 samples, 0.03%)</title><rect x="1115.9" y="757" width="0.4" height="15.0" fill="rgb(229,198,2)" rx="2" ry="2" />
<text x="1118.86" y="767.5" ></text>
</g>
<g >
<title>DB::FunctionIf::executeImpl (6 samples, 0.02%)</title><rect x="10.1" y="885" width="0.3" height="15.0" fill="rgb(235,183,8)" rx="2" ry="2" />
<text x="13.09" y="895.5" ></text>
</g>
<g >
<title>shmem_getpage (15 samples, 0.06%)</title><rect x="1104.4" y="725" width="0.7" height="15.0" fill="rgb(206,83,13)" rx="2" ry="2" />
<text x="1107.43" y="735.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (37 samples, 0.14%)</title><rect x="202.7" y="997" width="1.7" height="15.0" fill="rgb(222,101,49)" rx="2" ry="2" />
<text x="205.73" y="1007.5" ></text>
</g>
<g >
<title>irq_enter (3 samples, 0.01%)</title><rect x="1150.4" y="1141" width="0.1" height="15.0" fill="rgb(245,143,15)" rx="2" ry="2" />
<text x="1153.41" y="1151.5" ></text>
</g>
<g >
<title>ret_from_fork (15 samples, 0.06%)</title><rect x="1134.2" y="1253" width="0.7" height="15.0" fill="rgb(233,28,20)" rx="2" ry="2" />
<text x="1137.21" y="1263.5" ></text>
</g>
<g >
<title>malloc_default (4 samples, 0.02%)</title><rect x="536.4" y="1013" width="0.2" height="15.0" fill="rgb(235,17,26)" rx="2" ry="2" />
<text x="539.41" y="1023.5" ></text>
</g>
<g >
<title>down_read_trylock (4 samples, 0.02%)</title><rect x="206.9" y="1061" width="0.1" height="15.0" fill="rgb(235,179,6)" rx="2" ry="2" />
<text x="209.87" y="1071.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (20 samples, 0.08%)</title><rect x="329.8" y="885" width="0.9" height="15.0" fill="rgb(233,123,16)" rx="2" ry="2" />
<text x="332.82" y="895.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (9 samples, 0.03%)</title><rect x="1189.3" y="1173" width="0.4" height="15.0" fill="rgb(214,110,45)" rx="2" ry="2" />
<text x="1192.28" y="1183.5" ></text>
</g>
<g >
<title>irq_work_run (3 samples, 0.01%)</title><rect x="1183.4" y="1141" width="0.1" height="15.0" fill="rgb(225,158,0)" rx="2" ry="2" />
<text x="1186.39" y="1151.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (159 samples, 0.61%)</title><rect x="1073.1" y="949" width="7.1" height="15.0" fill="rgb(218,113,23)" rx="2" ry="2" />
<text x="1076.08" y="959.5" ></text>
</g>
<g >
<title>tcache_alloc_small_hard (10 samples, 0.04%)</title><rect x="208.6" y="1093" width="0.5" height="15.0" fill="rgb(240,56,24)" rx="2" ry="2" />
<text x="211.62" y="1103.5" ></text>
</g>
<g >
<title>tcache_bin_flush_large (21 samples, 0.08%)</title><rect x="331.9" y="1045" width="0.9" height="15.0" fill="rgb(208,49,17)" rx="2" ry="2" />
<text x="334.89" y="1055.5" ></text>
</g>
<g >
<title>page_fault (7 samples, 0.03%)</title><rect x="1119.9" y="709" width="0.3" height="15.0" fill="rgb(211,140,52)" rx="2" ry="2" />
<text x="1122.86" y="719.5" ></text>
</g>
<g >
<title>ksys_read (28 samples, 0.11%)</title><rect x="1084.7" y="837" width="1.2" height="15.0" fill="rgb(245,16,0)" rx="2" ry="2" />
<text x="1087.68" y="847.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (35 samples, 0.13%)</title><rect x="1130.0" y="1157" width="1.6" height="15.0" fill="rgb(248,149,0)" rx="2" ry="2" />
<text x="1133.03" y="1167.5" ></text>
</g>
<g >
<title>copy_user_generic_string (50 samples, 0.19%)</title><rect x="1113.3" y="773" width="2.3" height="15.0" fill="rgb(243,219,1)" rx="2" ry="2" />
<text x="1116.34" y="783.5" ></text>
</g>
<g >
<title>arena_ralloc (11 samples, 0.04%)</title><rect x="1081.7" y="869" width="0.5" height="15.0" fill="rgb(233,91,47)" rx="2" ry="2" />
<text x="1084.71" y="879.5" ></text>
</g>
<g >
<title>ovl_read_iter (71 samples, 0.27%)</title><rect x="1113.2" y="869" width="3.2" height="15.0" fill="rgb(237,59,20)" rx="2" ry="2" />
<text x="1116.16" y="879.5" ></text>
</g>
<g >
<title>find_busiest_group (18 samples, 0.07%)</title><rect x="1130.5" y="1029" width="0.8" height="15.0" fill="rgb(211,143,42)" rx="2" ry="2" />
<text x="1133.53" y="1039.5" ></text>
</g>
<g >
<title>__madvise (15 samples, 0.06%)</title><rect x="331.9" y="965" width="0.7" height="15.0" fill="rgb(247,28,3)" rx="2" ry="2" />
<text x="334.94" y="975.5" ></text>
</g>
<g >
<title>__sys_sendto (5 samples, 0.02%)</title><rect x="1108.6" y="997" width="0.2" height="15.0" fill="rgb(231,126,16)" rx="2" ry="2" />
<text x="1111.57" y="1007.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::~ColumnNullable (3 samples, 0.01%)</title><rect x="530.1" y="1077" width="0.1" height="15.0" fill="rgb(250,149,8)" rx="2" ry="2" />
<text x="533.11" y="1087.5" ></text>
</g>
<g >
<title>get_page_from_freelist (96 samples, 0.37%)</title><rect x="347.1" y="949" width="4.3" height="15.0" fill="rgb(254,70,43)" rx="2" ry="2" />
<text x="350.10" y="959.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (7 samples, 0.03%)</title><rect x="1099.8" y="789" width="0.3" height="15.0" fill="rgb(234,106,42)" rx="2" ry="2" />
<text x="1102.75" y="799.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::worker (763 samples, 2.91%)</title><rect x="10.0" y="1205" width="34.3" height="15.0" fill="rgb(252,195,17)" rx="2" ry="2" />
<text x="13.00" y="1215.5" >Th..</text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1106.4" y="917" width="0.1" height="15.0" fill="rgb(217,120,44)" rx="2" ry="2" />
<text x="1109.41" y="927.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (15 samples, 0.06%)</title><rect x="1104.4" y="709" width="0.7" height="15.0" fill="rgb(250,163,23)" rx="2" ry="2" />
<text x="1107.43" y="719.5" ></text>
</g>
<g >
<title>DB::ColumnFixedString::~ColumnFixedString (3 samples, 0.01%)</title><rect x="530.3" y="1093" width="0.2" height="15.0" fill="rgb(225,104,19)" rx="2" ry="2" />
<text x="533.34" y="1103.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (12,848 samples, 48.98%)</title><rect x="530.5" y="1125" width="578.0" height="15.0" fill="rgb(206,214,19)" rx="2" ry="2" />
<text x="533.47" y="1135.5" >DB::ExpressionBlockInputStream::readImpl</text>
</g>
<g >
<title>DB::QueryState::reset (20 samples, 0.08%)</title><rect x="1123.6" y="1141" width="0.9" height="15.0" fill="rgb(218,102,28)" rx="2" ry="2" />
<text x="1126.60" y="1151.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (14 samples, 0.05%)</title><rect x="405.6" y="1109" width="0.7" height="15.0" fill="rgb(250,104,17)" rx="2" ry="2" />
<text x="408.63" y="1119.5" ></text>
</g>
<g >
<title>try_to_wake_up (3 samples, 0.01%)</title><rect x="1126.2" y="725" width="0.1" height="15.0" fill="rgb(213,140,24)" rx="2" ry="2" />
<text x="1129.21" y="735.5" ></text>
</g>
<g >
<title>radix_tree_lookup_slot (5 samples, 0.02%)</title><rect x="1080.0" y="709" width="0.2" height="15.0" fill="rgb(208,47,25)" rx="2" ry="2" />
<text x="1082.96" y="719.5" ></text>
</g>
<g >
<title>DB::TCPHandler::processOrdinaryQuery (28 samples, 0.11%)</title><rect x="1124.5" y="1141" width="1.3" height="15.0" fill="rgb(234,17,47)" rx="2" ry="2" />
<text x="1127.50" y="1151.5" ></text>
</g>
<g >
<title>handle_mm_fault (542 samples, 2.07%)</title><rect x="373.3" y="1061" width="24.4" height="15.0" fill="rgb(250,108,16)" rx="2" ry="2" />
<text x="376.33" y="1071.5" >h..</text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (34 samples, 0.13%)</title><rect x="1082.6" y="933" width="1.5" height="15.0" fill="rgb(207,198,50)" rx="2" ry="2" />
<text x="1085.57" y="943.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (4 samples, 0.02%)</title><rect x="1129.1" y="1029" width="0.2" height="15.0" fill="rgb(220,57,14)" rx="2" ry="2" />
<text x="1132.09" y="1039.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (22 samples, 0.08%)</title><rect x="1149.2" y="1125" width="1.0" height="15.0" fill="rgb(235,20,23)" rx="2" ry="2" />
<text x="1152.20" y="1135.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (6 samples, 0.02%)</title><rect x="1129.0" y="1141" width="0.3" height="15.0" fill="rgb(250,103,17)" rx="2" ry="2" />
<text x="1132.00" y="1151.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1092.8" y="933" width="0.3" height="15.0" fill="rgb(230,80,32)" rx="2" ry="2" />
<text x="1095.78" y="943.5" ></text>
</g>
<g >
<title>handle_mm_fault (8 samples, 0.03%)</title><rect x="218.6" y="1013" width="0.4" height="15.0" fill="rgb(208,23,48)" rx="2" ry="2" />
<text x="221.61" y="1023.5" ></text>
</g>
<g >
<title>opendir (3 samples, 0.01%)</title><rect x="1132.2" y="1237" width="0.2" height="15.0" fill="rgb(239,160,25)" rx="2" ry="2" />
<text x="1135.23" y="1247.5" ></text>
</g>
<g >
<title>call_function_interrupt (5 samples, 0.02%)</title><rect x="338.1" y="1045" width="0.3" height="15.0" fill="rgb(230,43,34)" rx="2" ry="2" />
<text x="341.15" y="1055.5" ></text>
</g>
<g >
<title>zap_page_range (7 samples, 0.03%)</title><rect x="208.6" y="949" width="0.3" height="15.0" fill="rgb(207,26,46)" rx="2" ry="2" />
<text x="211.62" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1106.6" y="933" width="0.3" height="15.0" fill="rgb(232,14,9)" rx="2" ry="2" />
<text x="1109.64" y="943.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (6 samples, 0.02%)</title><rect x="328.0" y="1093" width="0.3" height="15.0" fill="rgb(251,218,27)" rx="2" ry="2" />
<text x="331.02" y="1103.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::readRows (258 samples, 0.98%)</title><rect x="1108.8" y="1045" width="11.6" height="15.0" fill="rgb(248,39,24)" rx="2" ry="2" />
<text x="1111.80" y="1055.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (44 samples, 0.17%)</title><rect x="1118.4" y="981" width="2.0" height="15.0" fill="rgb(233,76,43)" rx="2" ry="2" />
<text x="1121.38" y="991.5" ></text>
</g>
<g >
<title>pick_next_task_fair (26 samples, 0.10%)</title><rect x="1142.5" y="1157" width="1.2" height="15.0" fill="rgb(208,216,37)" rx="2" ry="2" />
<text x="1145.54" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1132.1" y="1221" width="0.1" height="15.0" fill="rgb(217,63,10)" rx="2" ry="2" />
<text x="1135.05" y="1231.5" ></text>
</g>
<g >
<title>__madvise (16 samples, 0.06%)</title><rect x="204.9" y="981" width="0.8" height="15.0" fill="rgb(232,73,7)" rx="2" ry="2" />
<text x="207.93" y="991.5" ></text>
</g>
<g >
<title>DB::Block::cloneWithoutColumns (4 samples, 0.02%)</title><rect x="488.7" y="1093" width="0.2" height="15.0" fill="rgb(244,86,6)" rx="2" ry="2" />
<text x="491.68" y="1103.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (7 samples, 0.03%)</title><rect x="208.6" y="1029" width="0.3" height="15.0" fill="rgb(249,113,24)" rx="2" ry="2" />
<text x="211.62" y="1039.5" ></text>
</g>
<g >
<title>DB::ParserIdentifierWithOptionalParameters::parseImpl (20 samples, 0.08%)</title><rect x="514.4" y="949" width="0.9" height="15.0" fill="rgb(240,11,12)" rx="2" ry="2" />
<text x="517.41" y="959.5" ></text>
</g>
<g >
<title>all (26,229 samples, 100%)</title><rect x="10.0" y="1285" width="1180.0" height="15.0" fill="rgb(251,178,30)" rx="2" ry="2" />
<text x="13.00" y="1295.5" ></text>
</g>
<g >
<title>try_to_wake_up (3 samples, 0.01%)</title><rect x="1064.5" y="869" width="0.2" height="15.0" fill="rgb(229,139,31)" rx="2" ry="2" />
<text x="1067.53" y="879.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (15 samples, 0.06%)</title><rect x="1115.7" y="789" width="0.7" height="15.0" fill="rgb(236,20,48)" rx="2" ry="2" />
<text x="1118.68" y="799.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (36 samples, 0.14%)</title><rect x="1093.3" y="901" width="1.6" height="15.0" fill="rgb(211,140,9)" rx="2" ry="2" />
<text x="1096.28" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1108.1" y="1013" width="0.2" height="15.0" fill="rgb(220,12,16)" rx="2" ry="2" />
<text x="1111.12" y="1023.5" ></text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (6 samples, 0.02%)</title><rect x="1106.0" y="949" width="0.2" height="15.0" fill="rgb(217,13,30)" rx="2" ry="2" />
<text x="1108.96" y="959.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="277" width="0.3" height="15.0" fill="rgb(216,73,4)" rx="2" ry="2" />
<text x="517.59" y="287.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (23 samples, 0.09%)</title><rect x="329.8" y="981" width="1.0" height="15.0" fill="rgb(240,178,13)" rx="2" ry="2" />
<text x="332.78" y="991.5" ></text>
</g>
<g >
<title>enqueue_entity (3 samples, 0.01%)</title><rect x="1155.3" y="1013" width="0.1" height="15.0" fill="rgb(246,178,25)" rx="2" ry="2" />
<text x="1158.27" y="1023.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (16 samples, 0.06%)</title><rect x="514.4" y="805" width="0.7" height="15.0" fill="rgb(232,170,11)" rx="2" ry="2" />
<text x="517.41" y="815.5" ></text>
</g>
<g >
<title>copy_page_to_iter (7 samples, 0.03%)</title><rect x="1099.8" y="773" width="0.3" height="15.0" fill="rgb(241,121,10)" rx="2" ry="2" />
<text x="1102.75" y="783.5" ></text>
</g>
<g >
<title>copyout (7 samples, 0.03%)</title><rect x="1092.3" y="741" width="0.3" height="15.0" fill="rgb(219,211,9)" rx="2" ry="2" />
<text x="1095.33" y="751.5" ></text>
</g>
<g >
<title>DB::callOnBasicType&lt;unsigned char, true, true, true, false, DB::FunctionIf::executeImpl (6 samples, 0.02%)</title><rect x="10.1" y="869" width="0.3" height="15.0" fill="rgb(217,20,2)" rx="2" ry="2" />
<text x="13.09" y="879.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (3 samples, 0.01%)</title><rect x="1081.8" y="821" width="0.1" height="15.0" fill="rgb(228,173,23)" rx="2" ry="2" />
<text x="1084.80" y="831.5" ></text>
</g>
<g >
<title>ThreadFromGlobalPool::ThreadFromGlobalPool&lt;void ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::scheduleImpl&lt;void&gt; (763 samples, 2.91%)</title><rect x="10.0" y="1221" width="34.3" height="15.0" fill="rgb(208,208,2)" rx="2" ry="2" />
<text x="13.00" y="1231.5" >Th..</text>
</g>
<g >
<title>__se_sys_newstat (3 samples, 0.01%)</title><rect x="1106.3" y="933" width="0.1" height="15.0" fill="rgb(228,136,9)" rx="2" ry="2" />
<text x="1109.28" y="943.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8 samples, 0.03%)</title><rect x="218.6" y="997" width="0.4" height="15.0" fill="rgb(224,44,22)" rx="2" ry="2" />
<text x="221.61" y="1007.5" ></text>
</g>
<g >
<title>lsb_release (7 samples, 0.03%)</title><rect x="1139.4" y="1269" width="0.3" height="15.0" fill="rgb(248,6,49)" rx="2" ry="2" />
<text x="1142.39" y="1279.5" ></text>
</g>
<g >
<title>DB::ParserList::parseImpl (16 samples, 0.06%)</title><rect x="514.4" y="821" width="0.7" height="15.0" fill="rgb(230,150,27)" rx="2" ry="2" />
<text x="517.41" y="831.5" ></text>
</g>
<g >
<title>proc_single_show (6 samples, 0.02%)</title><rect x="1132.5" y="1141" width="0.3" height="15.0" fill="rgb(234,122,12)" rx="2" ry="2" />
<text x="1135.55" y="1151.5" ></text>
</g>
<g >
<title>ip6_input_finish (8 samples, 0.03%)</title><rect x="1126.0" y="869" width="0.4" height="15.0" fill="rgb(236,138,27)" rx="2" ry="2" />
<text x="1129.03" y="879.5" ></text>
</g>
<g >
<title>arena_extents_dirty_dalloc (6 samples, 0.02%)</title><rect x="122.2" y="1077" width="0.3" height="15.0" fill="rgb(229,187,32)" rx="2" ry="2" />
<text x="125.25" y="1087.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (30 samples, 0.11%)</title><rect x="202.8" y="885" width="1.3" height="15.0" fill="rgb(241,144,52)" rx="2" ry="2" />
<text x="205.78" y="895.5" ></text>
</g>
<g >
<title>ovl_read_iter (39 samples, 0.15%)</title><rect x="1118.5" y="821" width="1.8" height="15.0" fill="rgb(241,120,46)" rx="2" ry="2" />
<text x="1121.51" y="831.5" ></text>
</g>
<g >
<title>kmem_cache_free (3 samples, 0.01%)</title><rect x="1151.2" y="1093" width="0.1" height="15.0" fill="rgb(210,19,48)" rx="2" ry="2" />
<text x="1154.18" y="1103.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (91 samples, 0.35%)</title><rect x="202.5" y="1109" width="4.1" height="15.0" fill="rgb(247,70,47)" rx="2" ry="2" />
<text x="205.46" y="1119.5" ></text>
</g>
<g >
<title>smp_call_function_many (9 samples, 0.03%)</title><rect x="42.8" y="869" width="0.4" height="15.0" fill="rgb(238,160,9)" rx="2" ry="2" />
<text x="45.80" y="879.5" ></text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="501.1" y="1013" width="0.1" height="15.0" fill="rgb(219,1,12)" rx="2" ry="2" />
<text x="504.09" y="1023.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (99 samples, 0.38%)</title><rect x="347.0" y="965" width="4.4" height="15.0" fill="rgb(247,159,25)" rx="2" ry="2" />
<text x="349.96" y="975.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (3 samples, 0.01%)</title><rect x="1118.1" y="933" width="0.1" height="15.0" fill="rgb(254,32,35)" rx="2" ry="2" />
<text x="1121.11" y="943.5" ></text>
</g>
<g >
<title>__irqentry_text_start (7 samples, 0.03%)</title><rect x="186.8" y="1109" width="0.3" height="15.0" fill="rgb(245,98,18)" rx="2" ry="2" />
<text x="189.76" y="1119.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (3 samples, 0.01%)</title><rect x="509.3" y="965" width="0.2" height="15.0" fill="rgb(225,133,40)" rx="2" ry="2" />
<text x="512.33" y="975.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="122.3" y="1045" width="0.2" height="15.0" fill="rgb(216,159,53)" rx="2" ry="2" />
<text x="125.29" y="1055.5" ></text>
</g>
<g >
<title>path_openat (8 samples, 0.03%)</title><rect x="1107.3" y="885" width="0.4" height="15.0" fill="rgb(219,26,7)" rx="2" ry="2" />
<text x="1110.31" y="895.5" ></text>
</g>
<g >
<title>smp_irq_work_interrupt (3 samples, 0.01%)</title><rect x="1183.4" y="1157" width="0.1" height="15.0" fill="rgb(216,173,54)" rx="2" ry="2" />
<text x="1186.39" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="1118.1" y="997" width="0.2" height="15.0" fill="rgb(226,96,47)" rx="2" ry="2" />
<text x="1121.11" y="1007.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (36 samples, 0.14%)</title><rect x="1093.3" y="917" width="1.6" height="15.0" fill="rgb(228,31,42)" rx="2" ry="2" />
<text x="1096.28" y="927.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (81 samples, 0.31%)</title><rect x="1101.5" y="741" width="3.7" height="15.0" fill="rgb(209,114,2)" rx="2" ry="2" />
<text x="1104.51" y="751.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (13,129 samples, 50.06%)</title><rect x="530.5" y="1141" width="590.6" height="15.0" fill="rgb(208,207,16)" rx="2" ry="2" />
<text x="533.47" y="1151.5" >DB::IBlockInputStream::read</text>
</g>
<g >
<title>memcpy (5 samples, 0.02%)</title><rect x="1093.1" y="949" width="0.2" height="15.0" fill="rgb(224,15,9)" rx="2" ry="2" />
<text x="1096.05" y="959.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (9 samples, 0.03%)</title><rect x="514.5" y="645" width="0.4" height="15.0" fill="rgb(231,0,14)" rx="2" ry="2" />
<text x="517.54" y="655.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="461.8" y="1093" width="0.1" height="15.0" fill="rgb(228,121,4)" rx="2" ry="2" />
<text x="464.77" y="1103.5" ></text>
</g>
<g >
<title>large_ralloc (9 samples, 0.03%)</title><rect x="1081.7" y="853" width="0.4" height="15.0" fill="rgb(242,159,17)" rx="2" ry="2" />
<text x="1084.71" y="863.5" ></text>
</g>
<g >
<title>memcpy (4 samples, 0.02%)</title><rect x="511.8" y="997" width="0.1" height="15.0" fill="rgb(214,136,51)" rx="2" ry="2" />
<text x="514.76" y="1007.5" ></text>
</g>
<g >
<title>DB::Join::joinBlockImpl&lt; (11,975 samples, 45.66%)</title><rect x="530.6" y="1061" width="538.7" height="15.0" fill="rgb(247,69,27)" rx="2" ry="2" />
<text x="533.56" y="1071.5" >DB::Join::joinBlockImpl&lt;</text>
</g>
<g >
<title>inode_permission (3 samples, 0.01%)</title><rect x="1107.9" y="885" width="0.1" height="15.0" fill="rgb(210,42,36)" rx="2" ry="2" />
<text x="1110.85" y="895.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (8 samples, 0.03%)</title><rect x="104.3" y="981" width="0.4" height="15.0" fill="rgb(245,178,25)" rx="2" ry="2" />
<text x="107.34" y="991.5" ></text>
</g>
<g >
<title>__irqentry_text_start (19 samples, 0.07%)</title><rect x="404.6" y="1125" width="0.8" height="15.0" fill="rgb(218,79,16)" rx="2" ry="2" />
<text x="407.59" y="1135.5" ></text>
</g>
<g >
<title>find_lock_entry (13 samples, 0.05%)</title><rect x="1115.8" y="773" width="0.6" height="15.0" fill="rgb(232,68,22)" rx="2" ry="2" />
<text x="1118.77" y="783.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4 samples, 0.02%)</title><rect x="373.0" y="1013" width="0.1" height="15.0" fill="rgb(232,191,30)" rx="2" ry="2" />
<text x="375.97" y="1023.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (11 samples, 0.04%)</title><rect x="1125.9" y="1125" width="0.5" height="15.0" fill="rgb(246,22,53)" rx="2" ry="2" />
<text x="1128.94" y="1135.5" ></text>
</g>
<g >
<title>__do_page_fault (7 samples, 0.03%)</title><rect x="1119.9" y="693" width="0.3" height="15.0" fill="rgb(239,173,51)" rx="2" ry="2" />
<text x="1122.86" y="703.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (8 samples, 0.03%)</title><rect x="205.0" y="853" width="0.3" height="15.0" fill="rgb(224,165,19)" rx="2" ry="2" />
<text x="207.98" y="863.5" ></text>
</g>
<g >
<title>DB::MergeSortingBlockInputStream::~MergeSortingBlockInputStream (20 samples, 0.08%)</title><rect x="1123.6" y="1061" width="0.9" height="15.0" fill="rgb(253,119,49)" rx="2" ry="2" />
<text x="1126.60" y="1071.5" ></text>
</g>
<g >
<title>clear_page_rep (6 samples, 0.02%)</title><rect x="207.5" y="981" width="0.2" height="15.0" fill="rgb(240,203,46)" rx="2" ry="2" />
<text x="210.45" y="991.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (6 samples, 0.02%)</title><rect x="118.4" y="1013" width="0.2" height="15.0" fill="rgb(219,105,32)" rx="2" ry="2" />
<text x="121.38" y="1023.5" ></text>
</g>
<g >
<title>mv (3 samples, 0.01%)</title><rect x="1139.7" y="1269" width="0.2" height="15.0" fill="rgb(212,216,0)" rx="2" ry="2" />
<text x="1142.75" y="1279.5" ></text>
</g>
<g >
<title>sshd (3 samples, 0.01%)</title><rect x="1144.2" y="1269" width="0.1" height="15.0" fill="rgb(215,133,0)" rx="2" ry="2" />
<text x="1147.20" y="1279.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (4 samples, 0.02%)</title><rect x="1084.1" y="917" width="0.2" height="15.0" fill="rgb(223,32,37)" rx="2" ry="2" />
<text x="1087.10" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="1132.5" y="1237" width="0.3" height="15.0" fill="rgb(241,54,33)" rx="2" ry="2" />
<text x="1135.50" y="1247.5" ></text>
</g>
<g >
<title>unmap_page_range (5 samples, 0.02%)</title><rect x="1189.5" y="1061" width="0.2" height="15.0" fill="rgb(208,168,8)" rx="2" ry="2" />
<text x="1192.46" y="1071.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionSum&lt;unsigned long, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt;::add (99 samples, 0.38%)</title><rect x="436.9" y="1125" width="4.5" height="15.0" fill="rgb(226,157,42)" rx="2" ry="2" />
<text x="439.94" y="1135.5" ></text>
</g>
<g >
<title>__do_page_fault (896 samples, 3.42%)</title><rect x="363.6" y="1077" width="40.3" height="15.0" fill="rgb(214,135,43)" rx="2" ry="2" />
<text x="366.56" y="1087.5" >__d..</text>
</g>
<g >
<title>llist_reverse_order (4 samples, 0.02%)</title><rect x="406.0" y="1077" width="0.2" height="15.0" fill="rgb(215,0,51)" rx="2" ry="2" />
<text x="409.03" y="1087.5" ></text>
</g>
<g >
<title>smp_call_function_many (9 samples, 0.03%)</title><rect x="202.8" y="837" width="0.4" height="15.0" fill="rgb(228,34,47)" rx="2" ry="2" />
<text x="205.78" y="847.5" ></text>
</g>
<g >
<title>handle_mm_fault (6 samples, 0.02%)</title><rect x="206.1" y="1029" width="0.3" height="15.0" fill="rgb(235,225,52)" rx="2" ry="2" />
<text x="209.15" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (20,583 samples, 78.47%)</title><rect x="195.5" y="1253" width="926.0" height="15.0" fill="rgb(216,151,8)" rx="2" ry="2" />
<text x="198.53" y="1263.5" >[clickhouse]</text>
</g>
<g >
<title>[clickhouse] (161 samples, 0.61%)</title><rect x="1055.4" y="1029" width="7.2" height="15.0" fill="rgb(229,188,44)" rx="2" ry="2" />
<text x="1058.39" y="1039.5" ></text>
</g>
<g >
<title>__sched_text_start (5 samples, 0.02%)</title><rect x="1142.2" y="1189" width="0.2" height="15.0" fill="rgb(251,43,26)" rx="2" ry="2" />
<text x="1145.18" y="1199.5" ></text>
</g>
<g >
<title>find_lock_entry (5 samples, 0.02%)</title><rect x="1094.7" y="677" width="0.2" height="15.0" fill="rgb(220,195,50)" rx="2" ry="2" />
<text x="1097.67" y="687.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (6 samples, 0.02%)</title><rect x="1101.1" y="869" width="0.3" height="15.0" fill="rgb(252,62,18)" rx="2" ry="2" />
<text x="1104.15" y="879.5" ></text>
</g>
<g >
<title>__mod_zone_page_state (3 samples, 0.01%)</title><rect x="1124.0" y="629" width="0.2" height="15.0" fill="rgb(230,124,44)" rx="2" ry="2" />
<text x="1127.05" y="639.5" ></text>
</g>
<g >
<title>large_dalloc (3 samples, 0.01%)</title><rect x="486.7" y="1141" width="0.2" height="15.0" fill="rgb(250,55,38)" rx="2" ry="2" />
<text x="489.74" y="1151.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (4 samples, 0.02%)</title><rect x="1093.3" y="869" width="0.2" height="15.0" fill="rgb(241,173,38)" rx="2" ry="2" />
<text x="1096.28" y="879.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (14 samples, 0.05%)</title><rect x="331.9" y="885" width="0.7" height="15.0" fill="rgb(210,176,38)" rx="2" ry="2" />
<text x="334.94" y="895.5" ></text>
</g>
<g >
<title>queue_work_on (3 samples, 0.01%)</title><rect x="1183.4" y="1109" width="0.1" height="15.0" fill="rgb(254,133,36)" rx="2" ry="2" />
<text x="1186.39" y="1119.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (15 samples, 0.06%)</title><rect x="404.6" y="1077" width="0.7" height="15.0" fill="rgb(225,14,35)" rx="2" ry="2" />
<text x="407.64" y="1087.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (14 samples, 0.05%)</title><rect x="331.9" y="869" width="0.7" height="15.0" fill="rgb(217,55,45)" rx="2" ry="2" />
<text x="334.94" y="879.5" ></text>
</g>
<g >
<title>filename_lookup (3 samples, 0.01%)</title><rect x="1106.3" y="901" width="0.1" height="15.0" fill="rgb(231,190,8)" rx="2" ry="2" />
<text x="1109.28" y="911.5" ></text>
</g>
<g >
<title>DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::loop (20,577 samples, 78.45%)</title><rect x="195.6" y="1189" width="925.7" height="15.0" fill="rgb(207,16,32)" rx="2" ry="2" />
<text x="198.58" y="1199.5" >DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::loop</text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (54 samples, 0.21%)</title><rect x="1073.2" y="917" width="2.4" height="15.0" fill="rgb(225,71,39)" rx="2" ry="2" />
<text x="1076.21" y="927.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (18 samples, 0.07%)</title><rect x="329.9" y="837" width="0.8" height="15.0" fill="rgb(209,137,6)" rx="2" ry="2" />
<text x="332.87" y="847.5" ></text>
</g>
<g >
<title>schedule_timeout (29 samples, 0.11%)</title><rect x="1142.4" y="1205" width="1.3" height="15.0" fill="rgb(238,74,12)" rx="2" ry="2" />
<text x="1145.40" y="1215.5" ></text>
</g>
<g >
<title>kthread (5 samples, 0.02%)</title><rect x="1132.9" y="1237" width="0.2" height="15.0" fill="rgb(229,65,50)" rx="2" ry="2" />
<text x="1135.91" y="1247.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="208.9" y="1013" width="0.2" height="15.0" fill="rgb(213,64,51)" rx="2" ry="2" />
<text x="211.94" y="1023.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="1081.8" y="805" width="0.1" height="15.0" fill="rgb(222,198,1)" rx="2" ry="2" />
<text x="1084.80" y="815.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (9 samples, 0.03%)</title><rect x="1126.0" y="981" width="0.4" height="15.0" fill="rgb(220,59,34)" rx="2" ry="2" />
<text x="1128.98" y="991.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (27 samples, 0.10%)</title><rect x="1095.0" y="949" width="1.2" height="15.0" fill="rgb(217,32,18)" rx="2" ry="2" />
<text x="1098.03" y="959.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (59 samples, 0.22%)</title><rect x="1146.1" y="1141" width="2.6" height="15.0" fill="rgb(237,185,24)" rx="2" ry="2" />
<text x="1149.09" y="1151.5" ></text>
</g>
<g >
<title>DB::OwnSplitChannel::log (3 samples, 0.01%)</title><rect x="195.9" y="1125" width="0.2" height="15.0" fill="rgb(229,62,28)" rx="2" ry="2" />
<text x="198.94" y="1135.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (33 samples, 0.13%)</title><rect x="39.8" y="885" width="1.5" height="15.0" fill="rgb(234,201,31)" rx="2" ry="2" />
<text x="42.83" y="895.5" ></text>
</g>
<g >
<title>search_binary_handler (9 samples, 0.03%)</title><rect x="1189.3" y="1157" width="0.4" height="15.0" fill="rgb(252,214,33)" rx="2" ry="2" />
<text x="1192.28" y="1167.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="261" width="0.3" height="15.0" fill="rgb(231,3,1)" rx="2" ry="2" />
<text x="517.59" y="271.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (9 samples, 0.03%)</title><rect x="1126.0" y="1013" width="0.4" height="15.0" fill="rgb(226,23,10)" rx="2" ry="2" />
<text x="1128.98" y="1023.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (12 samples, 0.05%)</title><rect x="1065.1" y="997" width="0.6" height="15.0" fill="rgb(221,14,2)" rx="2" ry="2" />
<text x="1068.11" y="1007.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.03%)</title><rect x="1092.3" y="901" width="0.4" height="15.0" fill="rgb(237,127,54)" rx="2" ry="2" />
<text x="1095.33" y="911.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="187.8" y="1093" width="0.2" height="15.0" fill="rgb(223,19,14)" rx="2" ry="2" />
<text x="190.84" y="1103.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (33 samples, 0.13%)</title><rect x="206.6" y="1109" width="1.4" height="15.0" fill="rgb(225,28,48)" rx="2" ry="2" />
<text x="209.55" y="1119.5" ></text>
</g>
<g >
<title>__madvise (3 samples, 0.01%)</title><rect x="506.0" y="885" width="0.1" height="15.0" fill="rgb(223,59,50)" rx="2" ry="2" />
<text x="509.00" y="895.5" ></text>
</g>
<g >
<title>__se_sys_newstat (6 samples, 0.02%)</title><rect x="1107.9" y="965" width="0.2" height="15.0" fill="rgb(213,36,14)" rx="2" ry="2" />
<text x="1110.85" y="975.5" ></text>
</g>
<g >
<title>DB::MergeTreeThreadSelectBlockInputStream::getNewTask (10 samples, 0.04%)</title><rect x="1120.5" y="1109" width="0.5" height="15.0" fill="rgb(225,213,2)" rx="2" ry="2" />
<text x="1123.54" y="1119.5" ></text>
</g>
<g >
<title>__GI___libc_sendto (13 samples, 0.05%)</title><rect x="1069.5" y="1029" width="0.6" height="15.0" fill="rgb(242,4,31)" rx="2" ry="2" />
<text x="1072.48" y="1039.5" ></text>
</g>
<g >
<title>copyout (25 samples, 0.10%)</title><rect x="1093.5" y="693" width="1.2" height="15.0" fill="rgb(248,199,36)" rx="2" ry="2" />
<text x="1096.54" y="703.5" ></text>
</g>
<g >
<title>__mod_node_page_state (4 samples, 0.02%)</title><rect x="352.3" y="965" width="0.2" height="15.0" fill="rgb(250,12,32)" rx="2" ry="2" />
<text x="355.27" y="975.5" ></text>
</g>
<g >
<title>__handle_mm_fault (54 samples, 0.21%)</title><rect x="111.1" y="997" width="2.5" height="15.0" fill="rgb(217,76,5)" rx="2" ry="2" />
<text x="114.13" y="1007.5" ></text>
</g>
<g >
<title>ret_from_fork (5 samples, 0.02%)</title><rect x="1132.9" y="1253" width="0.2" height="15.0" fill="rgb(253,61,37)" rx="2" ry="2" />
<text x="1135.91" y="1263.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (24 samples, 0.09%)</title><rect x="1091.7" y="933" width="1.1" height="15.0" fill="rgb(207,178,18)" rx="2" ry="2" />
<text x="1094.70" y="943.5" ></text>
</g>
<g >
<title>ret_from_fork (4 samples, 0.02%)</title><rect x="1135.6" y="1253" width="0.2" height="15.0" fill="rgb(254,50,43)" rx="2" ry="2" />
<text x="1138.61" y="1263.5" ></text>
</g>
<g >
<title>__sched_text_start (11 samples, 0.04%)</title><rect x="1134.4" y="1189" width="0.5" height="15.0" fill="rgb(232,181,43)" rx="2" ry="2" />
<text x="1137.39" y="1199.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (7 samples, 0.03%)</title><rect x="1129.0" y="1205" width="0.3" height="15.0" fill="rgb(208,126,24)" rx="2" ry="2" />
<text x="1132.00" y="1215.5" ></text>
</g>
<g >
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="461.8" y="1061" width="0.1" height="15.0" fill="rgb(243,169,26)" rx="2" ry="2" />
<text x="464.77" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1120.5" y="1045" width="0.2" height="15.0" fill="rgb(235,155,31)" rx="2" ry="2" />
<text x="1123.54" y="1055.5" ></text>
</g>
<g >
<title>unmap_vmas (17 samples, 0.06%)</title><rect x="1123.7" y="693" width="0.8" height="15.0" fill="rgb(217,188,23)" rx="2" ry="2" />
<text x="1126.69" y="703.5" ></text>
</g>
<g >
<title>__sys_sendto (15 samples, 0.06%)</title><rect x="1125.9" y="1189" width="0.7" height="15.0" fill="rgb(233,58,24)" rx="2" ry="2" />
<text x="1128.89" y="1199.5" ></text>
</g>
<g >
<title>__madvise (24 samples, 0.09%)</title><rect x="201.1" y="1013" width="1.1" height="15.0" fill="rgb(254,174,5)" rx="2" ry="2" />
<text x="204.11" y="1023.5" ></text>
</g>
<g >
<title>release_pages (6 samples, 0.02%)</title><rect x="104.4" y="837" width="0.3" height="15.0" fill="rgb(233,117,36)" rx="2" ry="2" />
<text x="107.39" y="847.5" ></text>
</g>
<g >
<title>ptep_clear_flush (30 samples, 0.11%)</title><rect x="119.7" y="949" width="1.3" height="15.0" fill="rgb(249,24,50)" rx="2" ry="2" />
<text x="122.68" y="959.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (21 samples, 0.08%)</title><rect x="203.2" y="869" width="0.9" height="15.0" fill="rgb(226,202,10)" rx="2" ry="2" />
<text x="206.18" y="879.5" ></text>
</g>
<g >
<title>futex_wait (18 samples, 0.07%)</title><rect x="1124.9" y="1045" width="0.8" height="15.0" fill="rgb(244,160,53)" rx="2" ry="2" />
<text x="1127.86" y="1055.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (6 samples, 0.02%)</title><rect x="1065.3" y="965" width="0.3" height="15.0" fill="rgb(248,53,9)" rx="2" ry="2" />
<text x="1068.29" y="975.5" ></text>
</g>
<g >
<title>call_function_interrupt (8 samples, 0.03%)</title><rect x="395.0" y="965" width="0.3" height="15.0" fill="rgb(245,177,38)" rx="2" ry="2" />
<text x="397.97" y="975.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::read (787 samples, 3.00%)</title><rect x="1070.2" y="1061" width="35.4" height="15.0" fill="rgb(205,16,41)" rx="2" ry="2" />
<text x="1073.24" y="1071.5" >DB:..</text>
</g>
<g >
<title>dbs_work_handler (3 samples, 0.01%)</title><rect x="1138.3" y="1189" width="0.1" height="15.0" fill="rgb(250,138,38)" rx="2" ry="2" />
<text x="1141.26" y="1199.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (6 samples, 0.02%)</title><rect x="514.6" y="101" width="0.3" height="15.0" fill="rgb(213,146,11)" rx="2" ry="2" />
<text x="517.63" y="111.5" ></text>
</g>
<g >
<title>__sched_text_start (13 samples, 0.05%)</title><rect x="1185.2" y="1173" width="0.6" height="15.0" fill="rgb(209,64,28)" rx="2" ry="2" />
<text x="1188.23" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (24 samples, 0.09%)</title><rect x="201.1" y="1045" width="1.1" height="15.0" fill="rgb(237,117,27)" rx="2" ry="2" />
<text x="204.11" y="1055.5" ></text>
</g>
<g >
<title>tick_sched_timer (18 samples, 0.07%)</title><rect x="1149.4" y="1109" width="0.8" height="15.0" fill="rgb(223,143,15)" rx="2" ry="2" />
<text x="1152.38" y="1119.5" ></text>
</g>
<g >
<title>arena_extents_dirty_dalloc (5 samples, 0.02%)</title><rect x="332.6" y="1013" width="0.2" height="15.0" fill="rgb(246,209,16)" rx="2" ry="2" />
<text x="335.61" y="1023.5" ></text>
</g>
<g >
<title>large_palloc (4 samples, 0.02%)</title><rect x="536.4" y="997" width="0.2" height="15.0" fill="rgb(215,119,54)" rx="2" ry="2" />
<text x="539.41" y="1007.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (13 samples, 0.05%)</title><rect x="1107.3" y="1013" width="0.6" height="15.0" fill="rgb(217,159,33)" rx="2" ry="2" />
<text x="1110.27" y="1023.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="487.9" y="1045" width="0.1" height="15.0" fill="rgb(225,157,32)" rx="2" ry="2" />
<text x="490.91" y="1055.5" ></text>
</g>
<g >
<title>do_iter_read (9 samples, 0.03%)</title><rect x="1092.3" y="805" width="0.4" height="15.0" fill="rgb(248,133,49)" rx="2" ry="2" />
<text x="1095.33" y="815.5" ></text>
</g>
<g >
<title>_nohz_idle_balance (58 samples, 0.22%)</title><rect x="1146.1" y="1125" width="2.6" height="15.0" fill="rgb(227,182,12)" rx="2" ry="2" />
<text x="1149.14" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1080.7" y="837" width="0.2" height="15.0" fill="rgb(241,58,28)" rx="2" ry="2" />
<text x="1083.68" y="847.5" ></text>
</g>
<g >
<title>__madvise (8 samples, 0.03%)</title><rect x="104.3" y="965" width="0.4" height="15.0" fill="rgb(229,220,29)" rx="2" ry="2" />
<text x="107.34" y="975.5" ></text>
</g>
<g >
<title>large_palloc (5 samples, 0.02%)</title><rect x="1080.7" y="933" width="0.2" height="15.0" fill="rgb(248,185,28)" rx="2" ry="2" />
<text x="1083.68" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (108 samples, 0.41%)</title><rect x="1100.5" y="965" width="4.9" height="15.0" fill="rgb(221,226,8)" rx="2" ry="2" />
<text x="1103.52" y="975.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3 samples, 0.01%)</title><rect x="206.2" y="965" width="0.2" height="15.0" fill="rgb(230,8,38)" rx="2" ry="2" />
<text x="209.24" y="975.5" ></text>
</g>
<g >
<title>arena_ralloc (68 samples, 0.26%)</title><rect x="202.6" y="1077" width="3.1" height="15.0" fill="rgb(219,46,25)" rx="2" ry="2" />
<text x="205.60" y="1087.5" ></text>
</g>
<g >
<title>smp_call_function_single (7 samples, 0.03%)</title><rect x="43.2" y="869" width="0.3" height="15.0" fill="rgb(234,197,8)" rx="2" ry="2" />
<text x="46.20" y="879.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1107.9" y="869" width="0.1" height="15.0" fill="rgb(205,229,9)" rx="2" ry="2" />
<text x="1110.85" y="879.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3 samples, 0.01%)</title><rect x="361.8" y="1093" width="0.1" height="15.0" fill="rgb(254,52,40)" rx="2" ry="2" />
<text x="364.76" y="1103.5" ></text>
</g>
<g >
<title>call_function_interrupt (15 samples, 0.06%)</title><rect x="187.1" y="1109" width="0.6" height="15.0" fill="rgb(250,222,52)" rx="2" ry="2" />
<text x="190.07" y="1119.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::startReadingChain (785 samples, 2.99%)</title><rect x="1070.2" y="1045" width="35.4" height="15.0" fill="rgb(239,3,1)" rx="2" ry="2" />
<text x="1073.24" y="1055.5" >DB..</text>
</g>
<g >
<title>unmap_page_range (3 samples, 0.01%)</title><rect x="202.1" y="933" width="0.1" height="15.0" fill="rgb(227,181,41)" rx="2" ry="2" />
<text x="205.06" y="943.5" ></text>
</g>
<g >
<title>DB::ParserIdentifierWithParameters::parseImpl (20 samples, 0.08%)</title><rect x="514.4" y="917" width="0.9" height="15.0" fill="rgb(222,54,43)" rx="2" ry="2" />
<text x="517.41" y="927.5" ></text>
</g>
<g >
<title>__irqentry_text_start (8 samples, 0.03%)</title><rect x="122.5" y="1125" width="0.4" height="15.0" fill="rgb(238,187,2)" rx="2" ry="2" />
<text x="125.52" y="1135.5" ></text>
</g>
<g >
<title>DB::ParserUnaryMinusExpression::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="245" width="0.3" height="15.0" fill="rgb(238,10,40)" rx="2" ry="2" />
<text x="517.59" y="255.5" ></text>
</g>
<g >
<title>radix_tree_lookup_slot (5 samples, 0.02%)</title><rect x="1116.0" y="741" width="0.3" height="15.0" fill="rgb(219,200,10)" rx="2" ry="2" />
<text x="1119.04" y="751.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (20 samples, 0.08%)</title><rect x="1123.6" y="1109" width="0.9" height="15.0" fill="rgb(208,104,47)" rx="2" ry="2" />
<text x="1126.60" y="1119.5" ></text>
</g>
<g >
<title>memcg_check_events (4 samples, 0.02%)</title><rect x="41.4" y="885" width="0.2" height="15.0" fill="rgb(215,204,21)" rx="2" ry="2" />
<text x="44.45" y="895.5" ></text>
</g>
<g >
<title>DB::Join::insertFromBlock (746 samples, 2.84%)</title><rect x="10.8" y="1045" width="33.5" height="15.0" fill="rgb(239,208,18)" rx="2" ry="2" />
<text x="13.76" y="1055.5" >DB..</text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1187.2" y="1189" width="0.2" height="15.0" fill="rgb(207,147,49)" rx="2" ry="2" />
<text x="1190.21" y="1199.5" ></text>
</g>
<g >
<title>page_fault (5 samples, 0.02%)</title><rect x="190.3" y="1109" width="0.2" height="15.0" fill="rgb(222,128,10)" rx="2" ry="2" />
<text x="193.27" y="1119.5" ></text>
</g>
<g >
<title>do_idle (85 samples, 0.32%)</title><rect x="1145.0" y="1205" width="3.8" height="15.0" fill="rgb(226,8,33)" rx="2" ry="2" />
<text x="1148.01" y="1215.5" ></text>
</g>
<g >
<title>release_pages (3 samples, 0.01%)</title><rect x="487.1" y="917" width="0.2" height="15.0" fill="rgb(210,166,23)" rx="2" ry="2" />
<text x="490.15" y="927.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1081.8" y="789" width="0.1" height="15.0" fill="rgb(208,4,42)" rx="2" ry="2" />
<text x="1084.80" y="799.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.06%)</title><rect x="204.9" y="965" width="0.8" height="15.0" fill="rgb(207,33,40)" rx="2" ry="2" />
<text x="207.93" y="975.5" ></text>
</g>
<g >
<title>scheduler_tick (8 samples, 0.03%)</title><rect x="1149.8" y="1077" width="0.4" height="15.0" fill="rgb(232,6,19)" rx="2" ry="2" />
<text x="1152.83" y="1087.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (31 samples, 0.12%)</title><rect x="1130.1" y="1109" width="1.4" height="15.0" fill="rgb(244,40,53)" rx="2" ry="2" />
<text x="1133.08" y="1119.5" ></text>
</g>
<g >
<title>remote_function (4 samples, 0.02%)</title><rect x="1145.9" y="1125" width="0.1" height="15.0" fill="rgb(214,190,17)" rx="2" ry="2" />
<text x="1148.87" y="1135.5" ></text>
</g>
<g >
<title>DB::ColumnString::insertFrom (46 samples, 0.18%)</title><rect x="512.1" y="1077" width="2.0" height="15.0" fill="rgb(243,209,16)" rx="2" ry="2" />
<text x="515.07" y="1087.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (6 samples, 0.02%)</title><rect x="1120.7" y="1045" width="0.2" height="15.0" fill="rgb(231,130,5)" rx="2" ry="2" />
<text x="1123.67" y="1055.5" ></text>
</g>
<g >
<title>Poco::ThreadImpl::runnableEntry (51 samples, 0.19%)</title><rect x="1123.6" y="1237" width="2.3" height="15.0" fill="rgb(214,149,30)" rx="2" ry="2" />
<text x="1126.60" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.03%)</title><rect x="1106.9" y="981" width="0.3" height="15.0" fill="rgb(216,29,24)" rx="2" ry="2" />
<text x="1109.91" y="991.5" ></text>
</g>
<g >
<title>start_secondary (839 samples, 3.20%)</title><rect x="1148.8" y="1237" width="37.8" height="15.0" fill="rgb(243,211,17)" rx="2" ry="2" />
<text x="1151.84" y="1247.5" >sta..</text>
</g>
<g >
<title>vfs_read (4 samples, 0.02%)</title><rect x="1128.3" y="1189" width="0.2" height="15.0" fill="rgb(246,221,19)" rx="2" ry="2" />
<text x="1131.28" y="1199.5" ></text>
</g>
<g >
<title>__do_page_fault (7 samples, 0.03%)</title><rect x="1187.8" y="1205" width="0.3" height="15.0" fill="rgb(211,105,47)" rx="2" ry="2" />
<text x="1190.75" y="1215.5" ></text>
</g>
<g >
<title>flush_tlb_func_remote (3 samples, 0.01%)</title><rect x="187.4" y="1061" width="0.2" height="15.0" fill="rgb(232,200,33)" rx="2" ry="2" />
<text x="190.43" y="1071.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (3 samples, 0.01%)</title><rect x="1189.3" y="1061" width="0.2" height="15.0" fill="rgb(236,18,24)" rx="2" ry="2" />
<text x="1192.33" y="1071.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (3 samples, 0.01%)</title><rect x="1189.8" y="1237" width="0.1" height="15.0" fill="rgb(227,55,10)" rx="2" ry="2" />
<text x="1192.78" y="1247.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (6 samples, 0.02%)</title><rect x="509.0" y="901" width="0.2" height="15.0" fill="rgb(228,141,9)" rx="2" ry="2" />
<text x="511.97" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (39 samples, 0.15%)</title><rect x="1118.5" y="901" width="1.8" height="15.0" fill="rgb(207,184,0)" rx="2" ry="2" />
<text x="1121.51" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1106.3" y="965" width="0.1" height="15.0" fill="rgb(235,99,17)" rx="2" ry="2" />
<text x="1109.28" y="975.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImpl&lt;DB::AggregationMethodKeysFixed&lt;HashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;, false, false&gt; &gt; (288 samples, 1.10%)</title><rect x="209.1" y="1157" width="13.0" height="15.0" fill="rgb(213,25,44)" rx="2" ry="2" />
<text x="212.12" y="1167.5" ></text>
</g>
<g >
<title>DB::DataTypeFixedString::deserializeBinaryBulk (240 samples, 0.92%)</title><rect x="1070.8" y="981" width="10.8" height="15.0" fill="rgb(242,117,18)" rx="2" ry="2" />
<text x="1073.83" y="991.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (4 samples, 0.02%)</title><rect x="1145.9" y="1173" width="0.1" height="15.0" fill="rgb(219,144,25)" rx="2" ry="2" />
<text x="1148.87" y="1183.5" ></text>
</g>
<g >
<title>update_nohz_stats (12 samples, 0.05%)</title><rect x="1138.7" y="1125" width="0.6" height="15.0" fill="rgb(234,26,53)" rx="2" ry="2" />
<text x="1141.71" y="1135.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::serializeValueIntoArena (46 samples, 0.18%)</title><rect x="462.0" y="1141" width="2.1" height="15.0" fill="rgb(230,6,32)" rx="2" ry="2" />
<text x="465.00" y="1151.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4 samples, 0.02%)</title><rect x="1129.1" y="1013" width="0.2" height="15.0" fill="rgb(224,118,11)" rx="2" ry="2" />
<text x="1132.09" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="488.1" y="997" width="0.2" height="15.0" fill="rgb(220,136,53)" rx="2" ry="2" />
<text x="491.09" y="1007.5" ></text>
</g>
<g >
<title>__vfs_read (101 samples, 0.39%)</title><rect x="1075.7" y="853" width="4.5" height="15.0" fill="rgb(231,174,16)" rx="2" ry="2" />
<text x="1078.68" y="863.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1143.9" y="1253" width="0.2" height="15.0" fill="rgb(218,117,28)" rx="2" ry="2" />
<text x="1146.93" y="1263.5" ></text>
</g>
<g >
<title>rebalance_domains (3 samples, 0.01%)</title><rect x="1145.2" y="1093" width="0.1" height="15.0" fill="rgb(218,61,47)" rx="2" ry="2" />
<text x="1148.19" y="1103.5" ></text>
</g>
<g >
<title>arena_extents_dirty_dalloc (4 samples, 0.02%)</title><rect x="329.6" y="1029" width="0.1" height="15.0" fill="rgb(222,58,34)" rx="2" ry="2" />
<text x="332.55" y="1039.5" ></text>
</g>
<g >
<title>tick_sched_timer (32 samples, 0.12%)</title><rect x="1063.0" y="965" width="1.4" height="15.0" fill="rgb(232,34,25)" rx="2" ry="2" />
<text x="1065.95" y="975.5" ></text>
</g>
<g >
<title>ksys_read (39 samples, 0.15%)</title><rect x="1118.5" y="869" width="1.8" height="15.0" fill="rgb(229,80,48)" rx="2" ry="2" />
<text x="1121.51" y="879.5" ></text>
</g>
<g >
<title>__do_page_fault (11 samples, 0.04%)</title><rect x="206.1" y="1045" width="0.5" height="15.0" fill="rgb(219,14,1)" rx="2" ry="2" />
<text x="209.06" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1124.6" y="1061" width="0.2" height="15.0" fill="rgb(212,168,20)" rx="2" ry="2" />
<text x="1127.59" y="1071.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (17 samples, 0.06%)</title><rect x="1123.7" y="853" width="0.8" height="15.0" fill="rgb(217,166,44)" rx="2" ry="2" />
<text x="1126.69" y="863.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::~ColumnNullable (13 samples, 0.05%)</title><rect x="486.9" y="1173" width="0.6" height="15.0" fill="rgb(230,46,29)" rx="2" ry="2" />
<text x="489.88" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (23 samples, 0.09%)</title><rect x="329.8" y="997" width="1.0" height="15.0" fill="rgb(214,112,3)" rx="2" ry="2" />
<text x="332.78" y="1007.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (3 samples, 0.01%)</title><rect x="395.1" y="917" width="0.1" height="15.0" fill="rgb(223,115,23)" rx="2" ry="2" />
<text x="398.06" y="927.5" ></text>
</g>
<g >
<title>DB::ParserVariableArityOperatorList::parseImpl (9 samples, 0.03%)</title><rect x="514.5" y="613" width="0.4" height="15.0" fill="rgb(248,213,10)" rx="2" ry="2" />
<text x="517.54" y="623.5" ></text>
</g>
<g >
<title>memcpy (12 samples, 0.05%)</title><rect x="1117.5" y="981" width="0.5" height="15.0" fill="rgb(246,60,25)" rx="2" ry="2" />
<text x="1120.48" y="991.5" ></text>
</g>
<g >
<title>DB::DataTypeLowCardinality::deserializeBinaryBulkWithMultipleStreams (99 samples, 0.38%)</title><rect x="1081.7" y="981" width="4.4" height="15.0" fill="rgb(250,158,8)" rx="2" ry="2" />
<text x="1084.67" y="991.5" ></text>
</g>
<g >
<title>migrate_pages (34 samples, 0.13%)</title><rect x="119.5" y="1013" width="1.5" height="15.0" fill="rgb(228,200,6)" rx="2" ry="2" />
<text x="122.50" y="1023.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (9 samples, 0.03%)</title><rect x="514.5" y="677" width="0.4" height="15.0" fill="rgb(248,218,18)" rx="2" ry="2" />
<text x="517.54" y="687.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (3 samples, 0.01%)</title><rect x="208.6" y="901" width="0.2" height="15.0" fill="rgb(252,126,24)" rx="2" ry="2" />
<text x="211.62" y="911.5" ></text>
</g>
<g >
<title>inet_recvmsg (7 samples, 0.03%)</title><rect x="1129.0" y="1173" width="0.3" height="15.0" fill="rgb(238,55,31)" rx="2" ry="2" />
<text x="1132.00" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (20 samples, 0.08%)</title><rect x="1107.2" y="1029" width="0.9" height="15.0" fill="rgb(225,15,49)" rx="2" ry="2" />
<text x="1110.22" y="1039.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (8 samples, 0.03%)</title><rect x="514.6" y="517" width="0.3" height="15.0" fill="rgb(212,196,21)" rx="2" ry="2" />
<text x="517.59" y="527.5" ></text>
</g>
<g >
<title>default_send_IPI_mask_sequence_phys (8 samples, 0.03%)</title><rect x="113.2" y="837" width="0.4" height="15.0" fill="rgb(245,62,6)" rx="2" ry="2" />
<text x="116.20" y="847.5" ></text>
</g>
<g >
<title>llist_reverse_order (4 samples, 0.02%)</title><rect x="187.6" y="1061" width="0.1" height="15.0" fill="rgb(234,63,46)" rx="2" ry="2" />
<text x="190.57" y="1071.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (3 samples, 0.01%)</title><rect x="509.1" y="773" width="0.1" height="15.0" fill="rgb(244,165,52)" rx="2" ry="2" />
<text x="512.06" y="783.5" ></text>
</g>
<g >
<title>DB::ParserPrefixUnaryOperatorExpression::parseImpl (9 samples, 0.03%)</title><rect x="514.5" y="565" width="0.4" height="15.0" fill="rgb(207,0,21)" rx="2" ry="2" />
<text x="517.54" y="575.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="330.9" y="965" width="0.3" height="15.0" fill="rgb(217,194,14)" rx="2" ry="2" />
<text x="333.90" y="975.5" ></text>
</g>
<g >
<title>link_path_walk (5 samples, 0.02%)</title><rect x="1106.9" y="885" width="0.2" height="15.0" fill="rgb(208,18,24)" rx="2" ry="2" />
<text x="1109.91" y="895.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3 samples, 0.01%)</title><rect x="1189.3" y="1077" width="0.2" height="15.0" fill="rgb(251,130,29)" rx="2" ry="2" />
<text x="1192.33" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (71 samples, 0.27%)</title><rect x="1113.2" y="949" width="3.2" height="15.0" fill="rgb(221,16,7)" rx="2" ry="2" />
<text x="1116.16" y="959.5" ></text>
</g>
<g >
<title>genl_rcv (5 samples, 0.02%)</title><rect x="1069.7" y="901" width="0.2" height="15.0" fill="rgb(215,54,3)" rx="2" ry="2" />
<text x="1072.70" y="911.5" ></text>
</g>
<g >
<title>DB::ExpressionActions::execute (951 samples, 3.63%)</title><rect x="487.7" y="1141" width="42.8" height="15.0" fill="rgb(232,200,1)" rx="2" ry="2" />
<text x="490.69" y="1151.5" >DB::..</text>
</g>
<g >
<title>realloc (36 samples, 0.14%)</title><rect x="217.5" y="1093" width="1.6" height="15.0" fill="rgb(230,75,36)" rx="2" ry="2" />
<text x="220.49" y="1103.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (9 samples, 0.03%)</title><rect x="201.1" y="901" width="0.4" height="15.0" fill="rgb(224,38,25)" rx="2" ry="2" />
<text x="204.11" y="911.5" ></text>
</g>
<g >
<title>DB::Arena::alignedAlloc (19 samples, 0.07%)</title><rect x="315.4" y="1125" width="0.8" height="15.0" fill="rgb(247,15,27)" rx="2" ry="2" />
<text x="318.38" y="1135.5" ></text>
</g>
<g >
<title>ovl_read_iter (82 samples, 0.31%)</title><rect x="1101.5" y="789" width="3.7" height="15.0" fill="rgb(231,106,28)" rx="2" ry="2" />
<text x="1104.46" y="799.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (763 samples, 2.91%)</title><rect x="10.0" y="1237" width="34.3" height="15.0" fill="rgb(247,219,37)" rx="2" ry="2" />
<text x="13.00" y="1247.5" >Th..</text>
</g>
<g >
<title>std::_Sp_counted_ptr_inplace&lt;DB::Join, std::allocator&lt;DB::Join&gt;, (17 samples, 0.06%)</title><rect x="1123.7" y="837" width="0.8" height="15.0" fill="rgb(218,57,45)" rx="2" ry="2" />
<text x="1126.69" y="847.5" ></text>
</g>
<g >
<title>call_function_interrupt (4 samples, 0.02%)</title><rect x="404.3" y="1109" width="0.2" height="15.0" fill="rgb(206,130,16)" rx="2" ry="2" />
<text x="407.32" y="1119.5" ></text>
</g>
<g >
<title>arena_ralloc (209 samples, 0.80%)</title><rect x="104.3" y="1077" width="9.4" height="15.0" fill="rgb(248,125,0)" rx="2" ry="2" />
<text x="107.25" y="1087.5" ></text>
</g>
<g >
<title>schedule (35 samples, 0.13%)</title><rect x="1136.6" y="1205" width="1.6" height="15.0" fill="rgb(253,44,42)" rx="2" ry="2" />
<text x="1139.60" y="1215.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (3 samples, 0.01%)</title><rect x="1105.2" y="853" width="0.1" height="15.0" fill="rgb(211,170,27)" rx="2" ry="2" />
<text x="1108.20" y="863.5" ></text>
</g>
<g >
<title>realloc (11 samples, 0.04%)</title><rect x="1081.7" y="885" width="0.5" height="15.0" fill="rgb(226,200,36)" rx="2" ry="2" />
<text x="1084.71" y="895.5" ></text>
</g>
<g >
<title>DB::ParserArrayElementExpression::parseImpl (6 samples, 0.02%)</title><rect x="514.6" y="117" width="0.3" height="15.0" fill="rgb(207,150,1)" rx="2" ry="2" />
<text x="517.63" y="127.5" ></text>
</g>
<g >
<title>irq_exit (3 samples, 0.01%)</title><rect x="1183.5" y="1157" width="0.2" height="15.0" fill="rgb(242,221,46)" rx="2" ry="2" />
<text x="1186.52" y="1167.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::execute (950 samples, 3.62%)</title><rect x="487.7" y="1125" width="42.8" height="15.0" fill="rgb(252,53,22)" rx="2" ry="2" />
<text x="490.73" y="1135.5" >DB::..</text>
</g>
<g >
<title>__se_sys_madvise (15 samples, 0.06%)</title><rect x="328.7" y="917" width="0.7" height="15.0" fill="rgb(235,216,16)" rx="2" ry="2" />
<text x="331.74" y="927.5" ></text>
</g>
<g >
<title>Poco::Net::TCPServer::run (50 samples, 0.19%)</title><rect x="1129.4" y="1221" width="2.2" height="15.0" fill="rgb(221,86,15)" rx="2" ry="2" />
<text x="1132.36" y="1231.5" ></text>
</g>
<g >
<title>remote_function (4 samples, 0.02%)</title><rect x="1139.9" y="933" width="0.2" height="15.0" fill="rgb(253,31,14)" rx="2" ry="2" />
<text x="1142.93" y="943.5" ></text>
</g>
<g >
<title>wp_page_copy (4 samples, 0.02%)</title><rect x="1187.0" y="1157" width="0.2" height="15.0" fill="rgb(230,135,44)" rx="2" ry="2" />
<text x="1190.03" y="1167.5" ></text>
</g>
<g >
<title>generic_exec_single (4 samples, 0.02%)</title><rect x="1139.9" y="949" width="0.2" height="15.0" fill="rgb(223,5,21)" rx="2" ry="2" />
<text x="1142.93" y="959.5" ></text>
</g>
<g >
<title>__xstat64 (4 samples, 0.02%)</title><rect x="1108.1" y="1045" width="0.2" height="15.0" fill="rgb(250,106,32)" rx="2" ry="2" />
<text x="1111.12" y="1055.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (32 samples, 0.12%)</title><rect x="1111.7" y="949" width="1.5" height="15.0" fill="rgb(252,92,10)" rx="2" ry="2" />
<text x="1114.72" y="959.5" ></text>
</g>
<g >
<title>__vfs_read (82 samples, 0.31%)</title><rect x="1101.5" y="805" width="3.7" height="15.0" fill="rgb(218,118,52)" rx="2" ry="2" />
<text x="1104.46" y="815.5" ></text>
</g>
<g >
<title>large_palloc (8 samples, 0.03%)</title><rect x="509.0" y="965" width="0.3" height="15.0" fill="rgb(226,18,15)" rx="2" ry="2" />
<text x="511.97" y="975.5" ></text>
</g>
<g >
<title>_raw_spin_lock (10 samples, 0.04%)</title><rect x="380.9" y="1029" width="0.4" height="15.0" fill="rgb(205,192,30)" rx="2" ry="2" />
<text x="383.88" y="1039.5" ></text>
</g>
<g >
<title>arena_decay (16 samples, 0.06%)</title><rect x="331.9" y="1029" width="0.7" height="15.0" fill="rgb(253,74,12)" rx="2" ry="2" />
<text x="334.89" y="1039.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (3 samples, 0.01%)</title><rect x="1124.3" y="613" width="0.1" height="15.0" fill="rgb(250,161,11)" rx="2" ry="2" />
<text x="1127.27" y="623.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (105 samples, 0.40%)</title><rect x="1111.6" y="981" width="4.8" height="15.0" fill="rgb(240,21,49)" rx="2" ry="2" />
<text x="1114.63" y="991.5" ></text>
</g>
<g >
<title>perf_event_for_each_child (5 samples, 0.02%)</title><rect x="1139.9" y="1013" width="0.2" height="15.0" fill="rgb(228,204,44)" rx="2" ry="2" />
<text x="1142.88" y="1023.5" ></text>
</g>
<g >
<title>irq_exit (3 samples, 0.01%)</title><rect x="122.7" y="1093" width="0.2" height="15.0" fill="rgb(217,173,45)" rx="2" ry="2" />
<text x="125.74" y="1103.5" ></text>
</g>
<g >
<title>handle_mm_fault (17 samples, 0.06%)</title><rect x="207.0" y="1061" width="0.8" height="15.0" fill="rgb(232,142,35)" rx="2" ry="2" />
<text x="210.05" y="1071.5" ></text>
</g>
<g >
<title>memcpy (4 samples, 0.02%)</title><rect x="1086.5" y="949" width="0.2" height="15.0" fill="rgb(235,101,19)" rx="2" ry="2" />
<text x="1089.53" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="1084.1" y="933" width="0.2" height="15.0" fill="rgb(220,153,34)" rx="2" ry="2" />
<text x="1087.10" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (763 samples, 2.91%)</title><rect x="10.0" y="1189" width="34.3" height="15.0" fill="rgb(223,135,38)" rx="2" ry="2" />
<text x="13.00" y="1199.5" >[c..</text>
</g>
<g >
<title>schedule (3 samples, 0.01%)</title><rect x="1134.0" y="1205" width="0.1" height="15.0" fill="rgb(236,24,0)" rx="2" ry="2" />
<text x="1136.99" y="1215.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (8 samples, 0.03%)</title><rect x="487.0" y="1157" width="0.4" height="15.0" fill="rgb(254,171,52)" rx="2" ry="2" />
<text x="490.01" y="1167.5" ></text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="1116.4" y="981" width="0.1" height="15.0" fill="rgb(215,227,36)" rx="2" ry="2" />
<text x="1119.40" y="991.5" ></text>
</g>
<g >
<title>__madvise (4 samples, 0.02%)</title><rect x="1080.7" y="853" width="0.2" height="15.0" fill="rgb(254,160,53)" rx="2" ry="2" />
<text x="1083.68" y="863.5" ></text>
</g>
<g >
<title>od_dbs_update (3 samples, 0.01%)</title><rect x="1136.5" y="1173" width="0.1" height="15.0" fill="rgb(205,6,29)" rx="2" ry="2" />
<text x="1139.46" y="1183.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (9 samples, 0.03%)</title><rect x="1126.0" y="917" width="0.4" height="15.0" fill="rgb(225,111,10)" rx="2" ry="2" />
<text x="1128.98" y="927.5" ></text>
</g>
<g >
<title>cpu_startup_entry (85 samples, 0.32%)</title><rect x="1145.0" y="1221" width="3.8" height="15.0" fill="rgb(210,222,16)" rx="2" ry="2" />
<text x="1148.01" y="1231.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (19 samples, 0.07%)</title><rect x="404.6" y="1109" width="0.8" height="15.0" fill="rgb(248,78,18)" rx="2" ry="2" />
<text x="407.59" y="1119.5" ></text>
</g>
<g >
<title>DB::TCPHandler::run (51 samples, 0.19%)</title><rect x="1123.6" y="1173" width="2.3" height="15.0" fill="rgb(238,10,11)" rx="2" ry="2" />
<text x="1126.60" y="1183.5" ></text>
</g>
<g >
<title>do_sys_poll (5 samples, 0.02%)</title><rect x="1187.2" y="1157" width="0.2" height="15.0" fill="rgb(223,26,11)" rx="2" ry="2" />
<text x="1190.21" y="1167.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (4 samples, 0.02%)</title><rect x="380.6" y="997" width="0.1" height="15.0" fill="rgb(205,82,54)" rx="2" ry="2" />
<text x="383.57" y="1007.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (20 samples, 0.08%)</title><rect x="1123.6" y="1077" width="0.9" height="15.0" fill="rgb(239,203,26)" rx="2" ry="2" />
<text x="1126.60" y="1087.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (18 samples, 0.07%)</title><rect x="1124.9" y="1125" width="0.8" height="15.0" fill="rgb(208,20,38)" rx="2" ry="2" />
<text x="1127.86" y="1135.5" ></text>
</g>
<g >
<title>[clickhouse] (39 samples, 0.15%)</title><rect x="202.7" y="1013" width="1.7" height="15.0" fill="rgb(232,7,52)" rx="2" ry="2" />
<text x="205.69" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="509.0" y="933" width="0.2" height="15.0" fill="rgb(210,29,54)" rx="2" ry="2" />
<text x="511.97" y="943.5" ></text>
</g>
<g >
<title>dbs_update_util_handler (3 samples, 0.01%)</title><rect x="1143.5" y="1077" width="0.1" height="15.0" fill="rgb(248,65,0)" rx="2" ry="2" />
<text x="1146.48" y="1087.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (3 samples, 0.01%)</title><rect x="1106.4" y="997" width="0.1" height="15.0" fill="rgb(214,178,34)" rx="2" ry="2" />
<text x="1109.41" y="1007.5" ></text>
</g>
<g >
<title>arena_ralloc (65 samples, 0.25%)</title><rect x="508.8" y="997" width="3.0" height="15.0" fill="rgb(223,130,51)" rx="2" ry="2" />
<text x="511.83" y="1007.5" ></text>
</g>
<g >
<title>alloc_pages_vma (12 samples, 0.05%)</title><rect x="220.7" y="1029" width="0.6" height="15.0" fill="rgb(249,225,3)" rx="2" ry="2" />
<text x="223.73" y="1039.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (13 samples, 0.05%)</title><rect x="204.9" y="901" width="0.6" height="15.0" fill="rgb(236,51,33)" rx="2" ry="2" />
<text x="207.93" y="911.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (14 samples, 0.05%)</title><rect x="328.8" y="869" width="0.6" height="15.0" fill="rgb(241,135,2)" rx="2" ry="2" />
<text x="331.79" y="879.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (4 samples, 0.02%)</title><rect x="1096.2" y="917" width="0.2" height="15.0" fill="rgb(216,73,16)" rx="2" ry="2" />
<text x="1099.24" y="927.5" ></text>
</g>
<g >
<title>__GI___libc_open (4 samples, 0.02%)</title><rect x="1120.7" y="997" width="0.2" height="15.0" fill="rgb(227,32,40)" rx="2" ry="2" />
<text x="1123.67" y="1007.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned short&gt;::serializeValueIntoArena (3 samples, 0.01%)</title><rect x="409.9" y="1141" width="0.1" height="15.0" fill="rgb(228,52,40)" rx="2" ry="2" />
<text x="412.90" y="1151.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (111 samples, 0.42%)</title><rect x="1086.7" y="933" width="5.0" height="15.0" fill="rgb(236,130,0)" rx="2" ry="2" />
<text x="1089.71" y="943.5" ></text>
</g>
<g >
<title>find_get_entry (4 samples, 0.02%)</title><rect x="1094.7" y="661" width="0.1" height="15.0" fill="rgb(213,193,40)" rx="2" ry="2" />
<text x="1097.67" y="671.5" ></text>
</g>
<g >
<title>do_syscall_64 (15 samples, 0.06%)</title><rect x="331.9" y="933" width="0.7" height="15.0" fill="rgb(223,90,36)" rx="2" ry="2" />
<text x="334.94" y="943.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (9 samples, 0.03%)</title><rect x="514.5" y="597" width="0.4" height="15.0" fill="rgb(206,151,0)" rx="2" ry="2" />
<text x="517.54" y="607.5" ></text>
</g>
<g >
<title>DB::ColumnString::insertFrom (239 samples, 0.91%)</title><rect x="501.3" y="1061" width="10.7" height="15.0" fill="rgb(235,29,26)" rx="2" ry="2" />
<text x="504.27" y="1071.5" ></text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::GreaterOp, DB::NameGreater&gt;::executeImpl (7 samples, 0.03%)</title><rect x="10.4" y="869" width="0.3" height="15.0" fill="rgb(254,162,47)" rx="2" ry="2" />
<text x="13.36" y="879.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::executeWithoutLowCardinalityColumns (8 samples, 0.03%)</title><rect x="10.4" y="901" width="0.3" height="15.0" fill="rgb(241,197,39)" rx="2" ry="2" />
<text x="13.36" y="911.5" ></text>
</g>
<g >
<title>memcpy (4 samples, 0.02%)</title><rect x="190.5" y="1125" width="0.2" height="15.0" fill="rgb(232,214,54)" rx="2" ry="2" />
<text x="193.49" y="1135.5" ></text>
</g>
<g >
<title>error_entry (4 samples, 0.02%)</title><rect x="308.2" y="1109" width="0.2" height="15.0" fill="rgb(223,99,43)" rx="2" ry="2" />
<text x="311.23" y="1119.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (192 samples, 0.73%)</title><rect x="467.6" y="1141" width="8.6" height="15.0" fill="rgb(231,193,53)" rx="2" ry="2" />
<text x="470.58" y="1151.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5 samples, 0.02%)</title><rect x="1054.8" y="981" width="0.2" height="15.0" fill="rgb(249,160,21)" rx="2" ry="2" />
<text x="1057.76" y="991.5" ></text>
</g>
<g >
<title>schedule (5 samples, 0.02%)</title><rect x="1142.2" y="1205" width="0.2" height="15.0" fill="rgb(252,72,13)" rx="2" ry="2" />
<text x="1145.18" y="1215.5" ></text>
</g>
<g >
<title>kworker/51:1-ev (5 samples, 0.02%)</title><rect x="1135.9" y="1269" width="0.2" height="15.0" fill="rgb(222,89,38)" rx="2" ry="2" />
<text x="1138.88" y="1279.5" ></text>
</g>
<g >
<title>up_read (7 samples, 0.03%)</title><rect x="121.1" y="1061" width="0.3" height="15.0" fill="rgb(243,126,28)" rx="2" ry="2" />
<text x="124.12" y="1071.5" ></text>
</g>
<g >
<title>tick_nohz_next_event (7 samples, 0.03%)</title><rect x="1184.8" y="1157" width="0.3" height="15.0" fill="rgb(209,190,23)" rx="2" ry="2" />
<text x="1187.78" y="1167.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (11 samples, 0.04%)</title><rect x="187.3" y="1077" width="0.4" height="15.0" fill="rgb(213,51,14)" rx="2" ry="2" />
<text x="190.25" y="1087.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (5 samples, 0.02%)</title><rect x="330.5" y="805" width="0.2" height="15.0" fill="rgb(205,70,3)" rx="2" ry="2" />
<text x="333.45" y="815.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (3 samples, 0.01%)</title><rect x="360.2" y="1061" width="0.2" height="15.0" fill="rgb(217,79,37)" rx="2" ry="2" />
<text x="363.23" y="1071.5" ></text>
</g>
<g >
<title>large_palloc (3 samples, 0.01%)</title><rect x="1116.5" y="965" width="0.2" height="15.0" fill="rgb(225,106,6)" rx="2" ry="2" />
<text x="1119.53" y="975.5" ></text>
</g>
<g >
<title>[clickhouse] (51 samples, 0.19%)</title><rect x="1123.6" y="1253" width="2.3" height="15.0" fill="rgb(236,120,2)" rx="2" ry="2" />
<text x="1126.60" y="1263.5" ></text>
</g>
<g >
<title>schedule (11 samples, 0.04%)</title><rect x="1134.4" y="1205" width="0.5" height="15.0" fill="rgb(210,121,26)" rx="2" ry="2" />
<text x="1137.39" y="1215.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (3 samples, 0.01%)</title><rect x="205.4" y="821" width="0.1" height="15.0" fill="rgb(248,122,43)" rx="2" ry="2" />
<text x="208.38" y="831.5" ></text>
</g>
<g >
<title>find_busiest_group (20 samples, 0.08%)</title><rect x="1142.8" y="1125" width="0.9" height="15.0" fill="rgb(232,156,8)" rx="2" ry="2" />
<text x="1145.81" y="1135.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::defaultImplementationForConstantArguments (3 samples, 0.01%)</title><rect x="515.5" y="1029" width="0.1" height="15.0" fill="rgb(235,224,15)" rx="2" ry="2" />
<text x="518.49" y="1039.5" ></text>
</g>
<g >
<title>arena_ralloc (6 samples, 0.02%)</title><rect x="1062.1" y="965" width="0.2" height="15.0" fill="rgb(234,190,24)" rx="2" ry="2" />
<text x="1065.05" y="975.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="373" width="0.3" height="15.0" fill="rgb(205,164,23)" rx="2" ry="2" />
<text x="517.59" y="383.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="404.2" y="1093" width="0.1" height="15.0" fill="rgb(228,24,25)" rx="2" ry="2" />
<text x="407.19" y="1103.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (9 samples, 0.03%)</title><rect x="1107.3" y="997" width="0.4" height="15.0" fill="rgb(211,3,43)" rx="2" ry="2" />
<text x="1110.27" y="1007.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="200.6" y="1109" width="0.1" height="15.0" fill="rgb(228,135,1)" rx="2" ry="2" />
<text x="203.57" y="1119.5" ></text>
</g>
<g >
<title>__do_page_fault (321 samples, 1.22%)</title><rect x="339.7" y="1029" width="14.5" height="15.0" fill="rgb(242,163,42)" rx="2" ry="2" />
<text x="342.72" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1106.6" y="917" width="0.3" height="15.0" fill="rgb(237,41,9)" rx="2" ry="2" />
<text x="1109.64" y="927.5" ></text>
</g>
<g >
<title>tcp_write_xmit (11 samples, 0.04%)</title><rect x="1125.9" y="1109" width="0.5" height="15.0" fill="rgb(216,201,10)" rx="2" ry="2" />
<text x="1128.94" y="1119.5" ></text>
</g>
<g >
<title>acpi_processor_ffh_cstate_enter (15 samples, 0.06%)</title><rect x="1171.5" y="1157" width="0.7" height="15.0" fill="rgb(226,188,16)" rx="2" ry="2" />
<text x="1174.51" y="1167.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (55 samples, 0.21%)</title><rect x="1109.2" y="965" width="2.4" height="15.0" fill="rgb(252,35,27)" rx="2" ry="2" />
<text x="1112.16" y="975.5" ></text>
</g>
<g >
<title>zap_page_range (24 samples, 0.09%)</title><rect x="201.1" y="949" width="1.1" height="15.0" fill="rgb(229,50,31)" rx="2" ry="2" />
<text x="204.11" y="959.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (17 samples, 0.06%)</title><rect x="1123.7" y="901" width="0.8" height="15.0" fill="rgb(250,53,25)" rx="2" ry="2" />
<text x="1126.69" y="911.5" ></text>
</g>
<g >
<title>__se_sys_madvise (7 samples, 0.03%)</title><rect x="208.6" y="965" width="0.3" height="15.0" fill="rgb(234,143,40)" rx="2" ry="2" />
<text x="211.62" y="975.5" ></text>
</g>
<g >
<title>tick_sched_timer (5 samples, 0.02%)</title><rect x="1054.8" y="949" width="0.2" height="15.0" fill="rgb(236,172,19)" rx="2" ry="2" />
<text x="1057.76" y="959.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (16 samples, 0.06%)</title><rect x="10.0" y="965" width="0.8" height="15.0" fill="rgb(217,140,20)" rx="2" ry="2" />
<text x="13.04" y="975.5" ></text>
</g>
<g >
<title>do_vfs_ioctl (5 samples, 0.02%)</title><rect x="1139.9" y="1077" width="0.2" height="15.0" fill="rgb(222,67,20)" rx="2" ry="2" />
<text x="1142.88" y="1087.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertDefault (45 samples, 0.17%)</title><rect x="1060.4" y="1013" width="2.0" height="15.0" fill="rgb(236,168,19)" rx="2" ry="2" />
<text x="1063.39" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (213 samples, 0.81%)</title><rect x="342.9" y="1013" width="9.6" height="15.0" fill="rgb(222,51,26)" rx="2" ry="2" />
<text x="345.87" y="1023.5" ></text>
</g>
<g >
<title>copy_user_generic_string (61 samples, 0.23%)</title><rect x="1101.6" y="693" width="2.8" height="15.0" fill="rgb(210,227,33)" rx="2" ry="2" />
<text x="1104.64" y="703.5" ></text>
</g>
<g >
<title>find_get_entry (12 samples, 0.05%)</title><rect x="1079.6" y="725" width="0.6" height="15.0" fill="rgb(238,94,0)" rx="2" ry="2" />
<text x="1082.64" y="735.5" ></text>
</g>
<g >
<title>radix_tree_descend (3 samples, 0.01%)</title><rect x="1080.0" y="677" width="0.1" height="15.0" fill="rgb(224,126,10)" rx="2" ry="2" />
<text x="1083.00" y="687.5" ></text>
</g>
<g >
<title>schedule (16 samples, 0.06%)</title><rect x="1124.9" y="1013" width="0.8" height="15.0" fill="rgb(250,54,8)" rx="2" ry="2" />
<text x="1127.95" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="506.0" y="853" width="0.1" height="15.0" fill="rgb(224,116,15)" rx="2" ry="2" />
<text x="509.00" y="863.5" ></text>
</g>
<g >
<title>enqueue_entity (5 samples, 0.02%)</title><rect x="1153.7" y="933" width="0.2" height="15.0" fill="rgb(231,128,51)" rx="2" ry="2" />
<text x="1156.69" y="943.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (35 samples, 0.13%)</title><rect x="1062.9" y="997" width="1.6" height="15.0" fill="rgb(246,185,4)" rx="2" ry="2" />
<text x="1065.91" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="1129.0" y="1221" width="0.3" height="15.0" fill="rgb(206,45,1)" rx="2" ry="2" />
<text x="1132.00" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1080.7" y="821" width="0.2" height="15.0" fill="rgb(206,192,47)" rx="2" ry="2" />
<text x="1083.68" y="831.5" ></text>
</g>
<g >
<title>do_epoll_wait (4 samples, 0.02%)</title><rect x="1128.8" y="1077" width="0.2" height="15.0" fill="rgb(212,135,40)" rx="2" ry="2" />
<text x="1131.82" y="1087.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1106.7" y="821" width="0.1" height="15.0" fill="rgb(240,76,36)" rx="2" ry="2" />
<text x="1109.68" y="831.5" ></text>
</g>
<g >
<title>do_syscall_64 (37 samples, 0.14%)</title><rect x="202.7" y="949" width="1.7" height="15.0" fill="rgb(216,153,54)" rx="2" ry="2" />
<text x="205.73" y="959.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="121.5" y="1093" width="0.2" height="15.0" fill="rgb(254,112,12)" rx="2" ry="2" />
<text x="124.53" y="1103.5" ></text>
</g>
<g >
<title>error_entry (4 samples, 0.02%)</title><rect x="37.1" y="997" width="0.2" height="15.0" fill="rgb(243,141,27)" rx="2" ry="2" />
<text x="40.08" y="1007.5" ></text>
</g>
<g >
<title>DB::PODArrayBase&lt;8ul, 4096ul, AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;, 15ul, 16ul&gt;::reserveForNextSize&lt;&gt; (68 samples, 0.26%)</title><rect x="505.7" y="1045" width="3.0" height="15.0" fill="rgb(229,179,24)" rx="2" ry="2" />
<text x="508.68" y="1055.5" ></text>
</g>
<g >
<title>__handle_mm_fault (17 samples, 0.06%)</title><rect x="207.0" y="1045" width="0.8" height="15.0" fill="rgb(218,154,37)" rx="2" ry="2" />
<text x="210.05" y="1055.5" ></text>
</g>
<g >
<title>__do_page_fault (118 samples, 0.45%)</title><rect x="38.3" y="981" width="5.3" height="15.0" fill="rgb(245,102,20)" rx="2" ry="2" />
<text x="41.30" y="991.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (9 samples, 0.03%)</title><rect x="39.4" y="885" width="0.4" height="15.0" fill="rgb(229,104,34)" rx="2" ry="2" />
<text x="42.42" y="895.5" ></text>
</g>
<g >
<title>acpi_idle_do_entry (10 samples, 0.04%)</title><rect x="1145.4" y="1157" width="0.5" height="15.0" fill="rgb(218,2,21)" rx="2" ry="2" />
<text x="1148.42" y="1167.5" ></text>
</g>
<g >
<title>update_nohz_stats (15 samples, 0.06%)</title><rect x="1137.4" y="1125" width="0.6" height="15.0" fill="rgb(247,107,44)" rx="2" ry="2" />
<text x="1140.36" y="1135.5" ></text>
</g>
<g >
<title>worker_thread (4 samples, 0.02%)</title><rect x="1135.6" y="1221" width="0.2" height="15.0" fill="rgb(231,115,19)" rx="2" ry="2" />
<text x="1138.61" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (45 samples, 0.17%)</title><rect x="1118.3" y="997" width="2.1" height="15.0" fill="rgb(211,166,8)" rx="2" ry="2" />
<text x="1121.33" y="1007.5" ></text>
</g>
<g >
<title>do_execve (9 samples, 0.03%)</title><rect x="1189.3" y="1189" width="0.4" height="15.0" fill="rgb(237,215,35)" rx="2" ry="2" />
<text x="1192.28" y="1199.5" ></text>
</g>
<g >
<title>do_softirq (4 samples, 0.02%)</title><rect x="1129.1" y="1045" width="0.2" height="15.0" fill="rgb(241,195,23)" rx="2" ry="2" />
<text x="1132.09" y="1055.5" ></text>
</g>
<g >
<title>find_vma (3 samples, 0.01%)</title><rect x="38.3" y="965" width="0.2" height="15.0" fill="rgb(242,85,6)" rx="2" ry="2" />
<text x="41.34" y="975.5" ></text>
</g>
<g >
<title>kthread (4 samples, 0.02%)</title><rect x="1135.9" y="1237" width="0.2" height="15.0" fill="rgb(232,82,31)" rx="2" ry="2" />
<text x="1138.92" y="1247.5" ></text>
</g>
<g >
<title>native_send_call_func_ipi (3 samples, 0.01%)</title><rect x="332.2" y="805" width="0.1" height="15.0" fill="rgb(210,90,43)" rx="2" ry="2" />
<text x="335.16" y="815.5" ></text>
</g>
<g >
<title>_nohz_idle_balance (3 samples, 0.01%)</title><rect x="1183.5" y="1125" width="0.2" height="15.0" fill="rgb(220,135,6)" rx="2" ry="2" />
<text x="1186.52" y="1135.5" ></text>
</g>
<g >
<title>update_curr (4 samples, 0.02%)</title><rect x="405.1" y="997" width="0.2" height="15.0" fill="rgb(236,137,51)" rx="2" ry="2" />
<text x="408.13" y="1007.5" ></text>
</g>
<g >
<title>get_task_policy (3 samples, 0.01%)</title><rect x="395.5" y="1013" width="0.1" height="15.0" fill="rgb(249,112,35)" rx="2" ry="2" />
<text x="398.51" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (55 samples, 0.21%)</title><rect x="111.1" y="1013" width="2.5" height="15.0" fill="rgb(247,26,2)" rx="2" ry="2" />
<text x="114.09" y="1023.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;::alloc (38 samples, 0.14%)</title><rect x="200.6" y="1125" width="1.7" height="15.0" fill="rgb(215,79,51)" rx="2" ry="2" />
<text x="203.57" y="1135.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (71 samples, 0.27%)</title><rect x="508.7" y="1029" width="3.2" height="15.0" fill="rgb(212,153,24)" rx="2" ry="2" />
<text x="511.74" y="1039.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (4 samples, 0.02%)</title><rect x="380.6" y="981" width="0.1" height="15.0" fill="rgb(212,94,16)" rx="2" ry="2" />
<text x="383.57" y="991.5" ></text>
</g>
<g >
<title>unmap_page_range (3 samples, 0.01%)</title><rect x="205.5" y="901" width="0.2" height="15.0" fill="rgb(207,195,47)" rx="2" ry="2" />
<text x="208.52" y="911.5" ></text>
</g>
<g >
<title>__vfs_read (71 samples, 0.27%)</title><rect x="1113.2" y="885" width="3.2" height="15.0" fill="rgb(240,98,49)" rx="2" ry="2" />
<text x="1116.16" y="895.5" ></text>
</g>
<g >
<title>large_dalloc_finish (5 samples, 0.02%)</title><rect x="332.6" y="1029" width="0.2" height="15.0" fill="rgb(245,61,49)" rx="2" ry="2" />
<text x="335.61" y="1039.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (30 samples, 0.11%)</title><rect x="379.5" y="1013" width="1.4" height="15.0" fill="rgb(210,76,13)" rx="2" ry="2" />
<text x="382.53" y="1023.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImpl&lt;DB::AggregationMethodSerialized&lt;HashMapTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt; &gt; &gt; (24 samples, 0.09%)</title><rect x="409.3" y="1157" width="1.1" height="15.0" fill="rgb(250,18,31)" rx="2" ry="2" />
<text x="412.32" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1116.5" y="997" width="0.2" height="15.0" fill="rgb(240,205,22)" rx="2" ry="2" />
<text x="1119.53" y="1007.5" ></text>
</g>
<g >
<title>try_charge (6 samples, 0.02%)</title><rect x="41.7" y="869" width="0.3" height="15.0" fill="rgb(236,61,21)" rx="2" ry="2" />
<text x="44.72" y="879.5" ></text>
</g>
<g >
<title>__GI___libc_sendto (5 samples, 0.02%)</title><rect x="1108.6" y="1061" width="0.2" height="15.0" fill="rgb(219,25,21)" rx="2" ry="2" />
<text x="1111.57" y="1071.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (102 samples, 0.39%)</title><rect x="1075.6" y="917" width="4.6" height="15.0" fill="rgb(224,136,47)" rx="2" ry="2" />
<text x="1078.64" y="927.5" ></text>
</g>
<g >
<title>release_pages (10 samples, 0.04%)</title><rect x="201.6" y="885" width="0.5" height="15.0" fill="rgb(237,101,28)" rx="2" ry="2" />
<text x="204.61" y="895.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (3 samples, 0.01%)</title><rect x="43.7" y="997" width="0.1" height="15.0" fill="rgb(212,75,24)" rx="2" ry="2" />
<text x="46.70" y="1007.5" ></text>
</g>
<g >
<title>read (7 samples, 0.03%)</title><rect x="1132.5" y="1253" width="0.3" height="15.0" fill="rgb(227,190,21)" rx="2" ry="2" />
<text x="1135.50" y="1263.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="357" width="0.3" height="15.0" fill="rgb(211,229,29)" rx="2" ry="2" />
<text x="517.59" y="367.5" ></text>
</g>
<g >
<title>arena_decay (3 samples, 0.01%)</title><rect x="506.0" y="949" width="0.1" height="15.0" fill="rgb(232,215,34)" rx="2" ry="2" />
<text x="509.00" y="959.5" ></text>
</g>
<g >
<title>smp_call_function_single (5 samples, 0.02%)</title><rect x="1139.9" y="965" width="0.2" height="15.0" fill="rgb(241,45,22)" rx="2" ry="2" />
<text x="1142.88" y="975.5" ></text>
</g>
<g >
<title>call_function_interrupt (18 samples, 0.07%)</title><rect x="405.4" y="1125" width="0.9" height="15.0" fill="rgb(221,76,14)" rx="2" ry="2" />
<text x="408.45" y="1135.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (3 samples, 0.01%)</title><rect x="1150.1" y="1029" width="0.1" height="15.0" fill="rgb(207,51,27)" rx="2" ry="2" />
<text x="1153.05" y="1039.5" ></text>
</g>
<g >
<title>std::vector&lt;DB::ColumnWithTypeAndName, std::allocator&lt;DB::ColumnWithTypeAndName&gt; &gt;::_M_realloc_insert&lt;DB::ColumnWithTypeAndName&gt; (3 samples, 0.01%)</title><rect x="1070.6" y="981" width="0.1" height="15.0" fill="rgb(246,108,52)" rx="2" ry="2" />
<text x="1073.60" y="991.5" ></text>
</g>
<g >
<title>[clickhouse] (23 samples, 0.09%)</title><rect x="329.8" y="1013" width="1.0" height="15.0" fill="rgb(210,59,19)" rx="2" ry="2" />
<text x="332.78" y="1023.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImplCase&lt;false, DB::AggregationMethodSerialized&lt;TwoLevelHashMapTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt; &gt; &gt; (1,147 samples, 4.37%)</title><rect x="410.4" y="1141" width="51.6" height="15.0" fill="rgb(254,40,50)" rx="2" ry="2" />
<text x="413.40" y="1151.5" >DB::A..</text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="122.3" y="1029" width="0.2" height="15.0" fill="rgb(241,57,36)" rx="2" ry="2" />
<text x="125.29" y="1039.5" ></text>
</g>
<g >
<title>default_send_IPI_mask_allbutself_phys (3 samples, 0.01%)</title><rect x="330.5" y="789" width="0.1" height="15.0" fill="rgb(238,80,19)" rx="2" ry="2" />
<text x="333.45" y="799.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (5 samples, 0.02%)</title><rect x="1145.1" y="1125" width="0.3" height="15.0" fill="rgb(254,50,51)" rx="2" ry="2" />
<text x="1148.15" y="1135.5" ></text>
</g>
<g >
<title>clickhouse-clie (18 samples, 0.07%)</title><rect x="1128.5" y="1269" width="0.8" height="15.0" fill="rgb(240,3,42)" rx="2" ry="2" />
<text x="1131.50" y="1279.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (18 samples, 0.07%)</title><rect x="1123.6" y="997" width="0.9" height="15.0" fill="rgb(214,192,20)" rx="2" ry="2" />
<text x="1126.64" y="1007.5" ></text>
</g>
<g >
<title>Poco::Net::SocketImpl::poll (3 samples, 0.01%)</title><rect x="1129.4" y="1205" width="0.1" height="15.0" fill="rgb(216,188,5)" rx="2" ry="2" />
<text x="1132.36" y="1215.5" ></text>
</g>
<g >
<title>tick_nohz_get_sleep_length (7 samples, 0.03%)</title><rect x="1184.8" y="1173" width="0.3" height="15.0" fill="rgb(237,74,34)" rx="2" ry="2" />
<text x="1187.78" y="1183.5" ></text>
</g>
<g >
<title>remote_function (244 samples, 0.93%)</title><rect x="1172.2" y="1125" width="11.0" height="15.0" fill="rgb(228,110,44)" rx="2" ry="2" />
<text x="1175.23" y="1135.5" ></text>
</g>
<g >
<title>call_function_interrupt (3 samples, 0.01%)</title><rect x="208.0" y="1125" width="0.2" height="15.0" fill="rgb(225,0,54)" rx="2" ry="2" />
<text x="211.04" y="1135.5" ></text>
</g>
<g >
<title>find_get_entry (12 samples, 0.05%)</title><rect x="1104.5" y="677" width="0.5" height="15.0" fill="rgb(254,79,15)" rx="2" ry="2" />
<text x="1107.48" y="687.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (3 samples, 0.01%)</title><rect x="360.2" y="1077" width="0.2" height="15.0" fill="rgb(245,10,29)" rx="2" ry="2" />
<text x="363.23" y="1087.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (4 samples, 0.02%)</title><rect x="1128.8" y="1093" width="0.2" height="15.0" fill="rgb(217,56,29)" rx="2" ry="2" />
<text x="1131.82" y="1103.5" ></text>
</g>
<g >
<title>arena_decay (6 samples, 0.02%)</title><rect x="509.0" y="949" width="0.2" height="15.0" fill="rgb(242,33,45)" rx="2" ry="2" />
<text x="511.97" y="959.5" ></text>
</g>
<g >
<title>__sys_recvfrom (7 samples, 0.03%)</title><rect x="1129.0" y="1189" width="0.3" height="15.0" fill="rgb(253,57,40)" rx="2" ry="2" />
<text x="1132.00" y="1199.5" ></text>
</g>
<g >
<title>DB::IDataType::getFileNameForStream (3 samples, 0.01%)</title><rect x="1084.5" y="949" width="0.1" height="15.0" fill="rgb(211,167,22)" rx="2" ry="2" />
<text x="1087.46" y="959.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (32 samples, 0.12%)</title><rect x="1084.6" y="933" width="1.4" height="15.0" fill="rgb(236,7,16)" rx="2" ry="2" />
<text x="1087.59" y="943.5" ></text>
</g>
<g >
<title>update_nohz_stats (8 samples, 0.03%)</title><rect x="1125.3" y="933" width="0.4" height="15.0" fill="rgb(206,214,29)" rx="2" ry="2" />
<text x="1128.31" y="943.5" ></text>
</g>
<g >
<title>unmap_page_range (6 samples, 0.02%)</title><rect x="204.1" y="901" width="0.3" height="15.0" fill="rgb(225,103,49)" rx="2" ry="2" />
<text x="207.12" y="911.5" ></text>
</g>
<g >
<title>__lru_cache_add (32 samples, 0.12%)</title><rect x="379.4" y="1029" width="1.5" height="15.0" fill="rgb(209,221,38)" rx="2" ry="2" />
<text x="382.44" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="204.6" y="1013" width="0.2" height="15.0" fill="rgb(213,194,0)" rx="2" ry="2" />
<text x="207.62" y="1023.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5 samples, 0.02%)</title><rect x="122.5" y="1093" width="0.2" height="15.0" fill="rgb(222,69,27)" rx="2" ry="2" />
<text x="125.52" y="1103.5" ></text>
</g>
<g >
<title>copy_user_generic_string (36 samples, 0.14%)</title><rect x="1118.6" y="725" width="1.6" height="15.0" fill="rgb(225,122,31)" rx="2" ry="2" />
<text x="1121.56" y="735.5" ></text>
</g>
<g >
<title>DB::Aggregator::convertToBlockImplFinal&lt;DB::AggregationMethodKeysFixed&lt;TwoLevelHashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt;, false, false&gt;, HashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt; &gt; (1,330 samples, 5.07%)</title><rect x="130.8" y="1141" width="59.9" height="15.0" fill="rgb(220,152,14)" rx="2" ry="2" />
<text x="133.84" y="1151.5" >DB::Ag..</text>
</g>
<g >
<title>__indirect_thunk_start (3 samples, 0.01%)</title><rect x="1144.3" y="1253" width="0.2" height="15.0" fill="rgb(236,74,40)" rx="2" ry="2" />
<text x="1147.34" y="1263.5" ></text>
</g>
<g >
<title>ovl_read_iter (28 samples, 0.11%)</title><rect x="1084.7" y="789" width="1.2" height="15.0" fill="rgb(225,110,8)" rx="2" ry="2" />
<text x="1087.68" y="799.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1120.7" y="1061" width="0.2" height="15.0" fill="rgb(232,156,6)" rx="2" ry="2" />
<text x="1123.67" y="1071.5" ></text>
</g>
<g >
<title>kworker/14:0-ev (4 samples, 0.02%)</title><rect x="1133.9" y="1269" width="0.2" height="15.0" fill="rgb(223,88,40)" rx="2" ry="2" />
<text x="1136.94" y="1279.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (83 samples, 0.32%)</title><rect x="1145.1" y="1189" width="3.7" height="15.0" fill="rgb(224,202,20)" rx="2" ry="2" />
<text x="1148.06" y="1199.5" ></text>
</g>
<g >
<title>interrupt_entry (3 samples, 0.01%)</title><rect x="1055.2" y="1013" width="0.1" height="15.0" fill="rgb(214,191,10)" rx="2" ry="2" />
<text x="1058.17" y="1023.5" ></text>
</g>
<g >
<title>__vfs_read (9 samples, 0.03%)</title><rect x="1092.3" y="837" width="0.4" height="15.0" fill="rgb(246,159,5)" rx="2" ry="2" />
<text x="1095.33" y="847.5" ></text>
</g>
<g >
<title>path_lookupat (3 samples, 0.01%)</title><rect x="1106.3" y="885" width="0.1" height="15.0" fill="rgb(215,84,42)" rx="2" ry="2" />
<text x="1109.28" y="895.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (36 samples, 0.14%)</title><rect x="1093.3" y="933" width="1.6" height="15.0" fill="rgb(243,212,29)" rx="2" ry="2" />
<text x="1096.28" y="943.5" ></text>
</g>
<g >
<title>large_palloc (36 samples, 0.14%)</title><rect x="329.7" y="1045" width="1.7" height="15.0" fill="rgb(236,161,33)" rx="2" ry="2" />
<text x="332.73" y="1055.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (17 samples, 0.06%)</title><rect x="1124.9" y="1029" width="0.8" height="15.0" fill="rgb(224,49,24)" rx="2" ry="2" />
<text x="1127.90" y="1039.5" ></text>
</g>
<g >
<title>netlink_unicast (9 samples, 0.03%)</title><rect x="1069.7" y="917" width="0.4" height="15.0" fill="rgb(249,193,51)" rx="2" ry="2" />
<text x="1072.66" y="927.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned char&gt;::deserializeBinaryBulk (3 samples, 0.01%)</title><rect x="1084.3" y="965" width="0.1" height="15.0" fill="rgb(236,179,7)" rx="2" ry="2" />
<text x="1087.28" y="975.5" ></text>
</g>
<g >
<title>process_one_work (4 samples, 0.02%)</title><rect x="1134.2" y="1205" width="0.2" height="15.0" fill="rgb(222,33,22)" rx="2" ry="2" />
<text x="1137.21" y="1215.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (6 samples, 0.02%)</title><rect x="208.4" y="1109" width="0.2" height="15.0" fill="rgb(241,3,12)" rx="2" ry="2" />
<text x="211.35" y="1119.5" ></text>
</g>
<g >
<title>DB::TCPHandler::runImpl (51 samples, 0.19%)</title><rect x="1123.6" y="1157" width="2.3" height="15.0" fill="rgb(227,213,44)" rx="2" ry="2" />
<text x="1126.60" y="1167.5" ></text>
</g>
<g >
<title>load_balance (31 samples, 0.12%)</title><rect x="1146.8" y="1093" width="1.4" height="15.0" fill="rgb(246,178,35)" rx="2" ry="2" />
<text x="1149.77" y="1103.5" ></text>
</g>
<g >
<title>seq_read (6 samples, 0.02%)</title><rect x="1132.5" y="1157" width="0.3" height="15.0" fill="rgb(249,78,37)" rx="2" ry="2" />
<text x="1135.55" y="1167.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (26 samples, 0.10%)</title><rect x="345.3" y="965" width="1.2" height="15.0" fill="rgb(246,144,6)" rx="2" ry="2" />
<text x="348.34" y="975.5" ></text>
</g>
<g >
<title>irq_work_run_list (12 samples, 0.05%)</title><rect x="1153.4" y="1029" width="0.5" height="15.0" fill="rgb(250,158,33)" rx="2" ry="2" />
<text x="1156.38" y="1039.5" ></text>
</g>
<g >
<title>update_nohz_stats (3 samples, 0.01%)</title><rect x="1134.0" y="1125" width="0.1" height="15.0" fill="rgb(251,43,15)" rx="2" ry="2" />
<text x="1136.99" y="1135.5" ></text>
</g>
<g >
<title>__do_page_fault (5 samples, 0.02%)</title><rect x="190.3" y="1093" width="0.2" height="15.0" fill="rgb(241,98,8)" rx="2" ry="2" />
<text x="193.27" y="1103.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (773 samples, 2.95%)</title><rect x="1149.1" y="1189" width="34.7" height="15.0" fill="rgb(254,212,43)" rx="2" ry="2" />
<text x="1152.06" y="1199.5" >cp..</text>
</g>
<g >
<title>__pagevec_lru_add_fn (22 samples, 0.08%)</title><rect x="379.6" y="997" width="1.0" height="15.0" fill="rgb(251,24,39)" rx="2" ry="2" />
<text x="382.58" y="1007.5" ></text>
</g>
<g >
<title>inode_permission (3 samples, 0.01%)</title><rect x="1106.7" y="837" width="0.1" height="15.0" fill="rgb(215,207,10)" rx="2" ry="2" />
<text x="1109.68" y="847.5" ></text>
</g>
<g >
<title>vfs_read (31 samples, 0.12%)</title><rect x="1093.5" y="805" width="1.4" height="15.0" fill="rgb(207,55,22)" rx="2" ry="2" />
<text x="1096.50" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (15 samples, 0.06%)</title><rect x="328.7" y="933" width="0.7" height="15.0" fill="rgb(215,92,29)" rx="2" ry="2" />
<text x="331.74" y="943.5" ></text>
</g>
<g >
<title>LZ4::decompress (6 samples, 0.02%)</title><rect x="1086.2" y="901" width="0.2" height="15.0" fill="rgb(226,16,5)" rx="2" ry="2" />
<text x="1089.17" y="911.5" ></text>
</g>
<g >
<title>arena_decay (9 samples, 0.03%)</title><rect x="104.3" y="1029" width="0.4" height="15.0" fill="rgb(250,159,29)" rx="2" ry="2" />
<text x="107.34" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (71 samples, 0.27%)</title><rect x="508.7" y="1045" width="3.2" height="15.0" fill="rgb(224,101,1)" rx="2" ry="2" />
<text x="511.74" y="1055.5" ></text>
</g>
<g >
<title>pick_next_task_fair (14 samples, 0.05%)</title><rect x="1125.0" y="981" width="0.7" height="15.0" fill="rgb(229,11,17)" rx="2" ry="2" />
<text x="1128.04" y="991.5" ></text>
</g>
<g >
<title>cpumask_next (4 samples, 0.02%)</title><rect x="42.4" y="853" width="0.2" height="15.0" fill="rgb(221,68,36)" rx="2" ry="2" />
<text x="45.39" y="863.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (3 samples, 0.01%)</title><rect x="187.3" y="1061" width="0.1" height="15.0" fill="rgb(205,178,21)" rx="2" ry="2" />
<text x="190.30" y="1071.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (6 samples, 0.02%)</title><rect x="328.0" y="1077" width="0.3" height="15.0" fill="rgb(230,93,26)" rx="2" ry="2" />
<text x="331.02" y="1087.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned short&gt;::deserializeBinaryBulk (88 samples, 0.34%)</title><rect x="1096.6" y="981" width="3.9" height="15.0" fill="rgb(229,111,39)" rx="2" ry="2" />
<text x="1099.56" y="991.5" ></text>
</g>
<g >
<title>update_process_times (5 samples, 0.02%)</title><rect x="1054.8" y="933" width="0.2" height="15.0" fill="rgb(244,120,40)" rx="2" ry="2" />
<text x="1057.76" y="943.5" ></text>
</g>
<g >
<title>__se_sys_madvise (22 samples, 0.08%)</title><rect x="329.8" y="917" width="1.0" height="15.0" fill="rgb(252,225,39)" rx="2" ry="2" />
<text x="332.82" y="927.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="506.3" y="949" width="0.1" height="15.0" fill="rgb(226,202,27)" rx="2" ry="2" />
<text x="509.27" y="959.5" ></text>
</g>
<g >
<title>__irqentry_text_start (6 samples, 0.02%)</title><rect x="1145.1" y="1173" width="0.3" height="15.0" fill="rgb(227,74,47)" rx="2" ry="2" />
<text x="1148.10" y="1183.5" ></text>
</g>
<g >
<title>clear_page_rep (6 samples, 0.02%)</title><rect x="218.7" y="933" width="0.3" height="15.0" fill="rgb(205,74,9)" rx="2" ry="2" />
<text x="221.70" y="943.5" ></text>
</g>
<g >
<title>update_blocked_averages (3 samples, 0.01%)</title><rect x="1142.3" y="1109" width="0.1" height="15.0" fill="rgb(245,16,30)" rx="2" ry="2" />
<text x="1145.27" y="1119.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="204.5" y="1013" width="0.1" height="15.0" fill="rgb(240,35,11)" rx="2" ry="2" />
<text x="207.48" y="1023.5" ></text>
</g>
<g >
<title>seq_read (3 samples, 0.01%)</title><rect x="1128.3" y="1141" width="0.1" height="15.0" fill="rgb(232,195,54)" rx="2" ry="2" />
<text x="1131.28" y="1151.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::~ExpressionAction (17 samples, 0.06%)</title><rect x="1123.7" y="869" width="0.8" height="15.0" fill="rgb(227,34,36)" rx="2" ry="2" />
<text x="1126.69" y="879.5" ></text>
</g>
<g >
<title>large_dalloc (6 samples, 0.02%)</title><rect x="488.0" y="1045" width="0.3" height="15.0" fill="rgb(210,12,35)" rx="2" ry="2" />
<text x="491.05" y="1055.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (110 samples, 0.42%)</title><rect x="1086.7" y="917" width="5.0" height="15.0" fill="rgb(245,58,44)" rx="2" ry="2" />
<text x="1089.71" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1139.9" y="1125" width="0.2" height="15.0" fill="rgb(234,168,35)" rx="2" ry="2" />
<text x="1142.88" y="1135.5" ></text>
</g>
<g >
<title>do_futex (18 samples, 0.07%)</title><rect x="1124.9" y="1061" width="0.8" height="15.0" fill="rgb(228,229,42)" rx="2" ry="2" />
<text x="1127.86" y="1071.5" ></text>
</g>
<g >
<title>clickhouse-serv (51 samples, 0.19%)</title><rect x="1129.3" y="1269" width="2.3" height="15.0" fill="rgb(227,139,26)" rx="2" ry="2" />
<text x="1132.31" y="1279.5" ></text>
</g>
<g >
<title>clear_page_rep (16 samples, 0.06%)</title><rect x="111.5" y="933" width="0.8" height="15.0" fill="rgb(227,191,36)" rx="2" ry="2" />
<text x="114.54" y="943.5" ></text>
</g>
<g >
<title>DB::executeQuery (3 samples, 0.01%)</title><rect x="1125.8" y="1141" width="0.1" height="15.0" fill="rgb(227,132,14)" rx="2" ry="2" />
<text x="1128.76" y="1151.5" ></text>
</g>
<g >
<title>smp_call_function_many (30 samples, 0.11%)</title><rect x="119.7" y="917" width="1.3" height="15.0" fill="rgb(241,86,6)" rx="2" ry="2" />
<text x="122.68" y="927.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (16 samples, 0.06%)</title><rect x="10.0" y="1013" width="0.8" height="15.0" fill="rgb(248,79,13)" rx="2" ry="2" />
<text x="13.04" y="1023.5" ></text>
</g>
<g >
<title>vfs_ioctl (5 samples, 0.02%)</title><rect x="1139.9" y="1061" width="0.2" height="15.0" fill="rgb(251,15,28)" rx="2" ry="2" />
<text x="1142.88" y="1071.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (18 samples, 0.07%)</title><rect x="1123.6" y="949" width="0.9" height="15.0" fill="rgb(220,25,26)" rx="2" ry="2" />
<text x="1126.64" y="959.5" ></text>
</g>
<g >
<title>try_to_unmap_one (26 samples, 0.10%)</title><rect x="112.4" y="917" width="1.2" height="15.0" fill="rgb(226,217,41)" rx="2" ry="2" />
<text x="115.39" y="927.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.02%)</title><rect x="1096.2" y="933" width="0.2" height="15.0" fill="rgb(212,192,3)" rx="2" ry="2" />
<text x="1099.24" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.03%)</title><rect x="1189.3" y="1237" width="0.4" height="15.0" fill="rgb(217,44,38)" rx="2" ry="2" />
<text x="1192.28" y="1247.5" ></text>
</g>
<g >
<title>up_read (3 samples, 0.01%)</title><rect x="1120.0" y="677" width="0.2" height="15.0" fill="rgb(219,89,19)" rx="2" ry="2" />
<text x="1123.04" y="687.5" ></text>
</g>
<g >
<title>large_palloc (5 samples, 0.02%)</title><rect x="1081.7" y="837" width="0.2" height="15.0" fill="rgb(223,184,13)" rx="2" ry="2" />
<text x="1084.71" y="847.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1139.0" y="1093" width="0.2" height="15.0" fill="rgb(248,145,16)" rx="2" ry="2" />
<text x="1142.03" y="1103.5" ></text>
</g>
<g >
<title>DB::PartialSortingBlockInputStream::~PartialSortingBlockInputStream (18 samples, 0.07%)</title><rect x="1123.6" y="1013" width="0.9" height="15.0" fill="rgb(242,36,13)" rx="2" ry="2" />
<text x="1126.64" y="1023.5" ></text>
</g>
<g >
<title>run_timer_softirq (12 samples, 0.05%)</title><rect x="1154.9" y="1109" width="0.5" height="15.0" fill="rgb(222,151,2)" rx="2" ry="2" />
<text x="1157.91" y="1119.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (29 samples, 0.11%)</title><rect x="1149.1" y="1141" width="1.3" height="15.0" fill="rgb(243,169,15)" rx="2" ry="2" />
<text x="1152.11" y="1151.5" ></text>
</g>
<g >
<title>DB::Client::receiveResult (7 samples, 0.03%)</title><rect x="1128.7" y="1173" width="0.3" height="15.0" fill="rgb(244,28,12)" rx="2" ry="2" />
<text x="1131.68" y="1183.5" ></text>
</g>
<g >
<title>task_tick_fair (6 samples, 0.02%)</title><rect x="405.0" y="1013" width="0.3" height="15.0" fill="rgb(219,89,19)" rx="2" ry="2" />
<text x="408.04" y="1023.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (6 samples, 0.02%)</title><rect x="1129.0" y="1125" width="0.3" height="15.0" fill="rgb(233,191,32)" rx="2" ry="2" />
<text x="1132.00" y="1135.5" ></text>
</g>
<g >
<title>idle_cpu (4 samples, 0.02%)</title><rect x="1146.3" y="1109" width="0.2" height="15.0" fill="rgb(243,51,11)" rx="2" ry="2" />
<text x="1149.32" y="1119.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (7 samples, 0.03%)</title><rect x="1099.8" y="805" width="0.3" height="15.0" fill="rgb(250,185,48)" rx="2" ry="2" />
<text x="1102.75" y="815.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::deserializeBinaryBulkWithMultipleStreams (30 samples, 0.11%)</title><rect x="1117.0" y="1013" width="1.3" height="15.0" fill="rgb(249,116,5)" rx="2" ry="2" />
<text x="1119.98" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.03%)</title><rect x="208.6" y="1061" width="0.3" height="15.0" fill="rgb(232,43,53)" rx="2" ry="2" />
<text x="211.62" y="1071.5" ></text>
</g>
<g >
<title>sed (4 samples, 0.02%)</title><rect x="1143.7" y="1269" width="0.2" height="15.0" fill="rgb(217,31,38)" rx="2" ry="2" />
<text x="1146.71" y="1279.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (1,106 samples, 4.22%)</title><rect x="354.4" y="1109" width="49.8" height="15.0" fill="rgb(211,138,51)" rx="2" ry="2" />
<text x="357.43" y="1119.5" >[libc..</text>
</g>
<g >
<title>__pagevec_lru_add_fn (7 samples, 0.03%)</title><rect x="39.5" y="869" width="0.3" height="15.0" fill="rgb(212,191,53)" rx="2" ry="2" />
<text x="42.47" y="879.5" ></text>
</g>
<g >
<title>get_page_from_freelist (23 samples, 0.09%)</title><rect x="310.0" y="1013" width="1.0" height="15.0" fill="rgb(217,206,54)" rx="2" ry="2" />
<text x="312.98" y="1023.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (6 samples, 0.02%)</title><rect x="332.3" y="853" width="0.3" height="15.0" fill="rgb(252,85,10)" rx="2" ry="2" />
<text x="335.30" y="863.5" ></text>
</g>
<g >
<title>page_fault (13 samples, 0.05%)</title><rect x="218.5" y="1045" width="0.6" height="15.0" fill="rgb(205,133,5)" rx="2" ry="2" />
<text x="221.52" y="1055.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::serializeValueIntoArena (238 samples, 0.91%)</title><rect x="441.4" y="1125" width="10.7" height="15.0" fill="rgb(212,124,53)" rx="2" ry="2" />
<text x="444.39" y="1135.5" ></text>
</g>
<g >
<title>filename_lookup (3 samples, 0.01%)</title><rect x="1108.1" y="965" width="0.2" height="15.0" fill="rgb(205,146,18)" rx="2" ry="2" />
<text x="1111.12" y="975.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt;::insertResultInto (10 samples, 0.04%)</title><rect x="188.0" y="1125" width="0.5" height="15.0" fill="rgb(217,210,32)" rx="2" ry="2" />
<text x="191.02" y="1135.5" ></text>
</g>
<g >
<title>find_busiest_group (11 samples, 0.04%)</title><rect x="1133.3" y="1141" width="0.5" height="15.0" fill="rgb(241,59,32)" rx="2" ry="2" />
<text x="1136.27" y="1151.5" ></text>
</g>
<g >
<title>genl_rcv_msg (4 samples, 0.02%)</title><rect x="1069.7" y="869" width="0.2" height="15.0" fill="rgb(240,138,29)" rx="2" ry="2" />
<text x="1072.75" y="879.5" ></text>
</g>
<g >
<title>shmem_getpage (5 samples, 0.02%)</title><rect x="1094.7" y="709" width="0.2" height="15.0" fill="rgb(232,170,30)" rx="2" ry="2" />
<text x="1097.67" y="719.5" ></text>
</g>
<g >
<title>release_pages (12 samples, 0.05%)</title><rect x="1123.9" y="645" width="0.6" height="15.0" fill="rgb(214,170,51)" rx="2" ry="2" />
<text x="1126.91" y="655.5" ></text>
</g>
<g >
<title>load_balance (4 samples, 0.02%)</title><rect x="1128.8" y="981" width="0.2" height="15.0" fill="rgb(232,61,51)" rx="2" ry="2" />
<text x="1131.82" y="991.5" ></text>
</g>
<g >
<title>[python3.5] (4 samples, 0.02%)</title><rect x="1139.5" y="1253" width="0.2" height="15.0" fill="rgb(224,48,17)" rx="2" ry="2" />
<text x="1142.48" y="1263.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_create (4 samples, 0.02%)</title><rect x="1124.6" y="1045" width="0.2" height="15.0" fill="rgb(226,45,29)" rx="2" ry="2" />
<text x="1127.59" y="1055.5" ></text>
</g>
<g >
<title>[clickhouse] (20 samples, 0.08%)</title><rect x="455.0" y="1109" width="0.9" height="15.0" fill="rgb(218,147,8)" rx="2" ry="2" />
<text x="458.02" y="1119.5" ></text>
</g>
<g >
<title>arena_ralloc (11 samples, 0.04%)</title><rect x="500.7" y="1029" width="0.5" height="15.0" fill="rgb(229,73,11)" rx="2" ry="2" />
<text x="503.73" y="1039.5" ></text>
</g>
<g >
<title>large_palloc (6 samples, 0.02%)</title><rect x="1092.8" y="901" width="0.3" height="15.0" fill="rgb(254,63,2)" rx="2" ry="2" />
<text x="1095.78" y="911.5" ></text>
</g>
<g >
<title>filename_lookup (6 samples, 0.02%)</title><rect x="1107.9" y="933" width="0.2" height="15.0" fill="rgb(230,44,46)" rx="2" ry="2" />
<text x="1110.85" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="509.0" y="917" width="0.2" height="15.0" fill="rgb(249,142,34)" rx="2" ry="2" />
<text x="511.97" y="927.5" ></text>
</g>
<g >
<title>path_openat (6 samples, 0.02%)</title><rect x="1106.0" y="853" width="0.2" height="15.0" fill="rgb(215,156,27)" rx="2" ry="2" />
<text x="1108.96" y="863.5" ></text>
</g>
<g >
<title>__irqentry_text_start (144 samples, 0.55%)</title><rect x="1149.1" y="1173" width="6.4" height="15.0" fill="rgb(246,101,43)" rx="2" ry="2" />
<text x="1152.06" y="1183.5" ></text>
</g>
<g >
<title>DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::thread (20,578 samples, 78.46%)</title><rect x="195.5" y="1205" width="925.8" height="15.0" fill="rgb(218,131,28)" rx="2" ry="2" />
<text x="198.53" y="1215.5" >DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::thread</text>
</g>
<g >
<title>try_to_unmap_one (31 samples, 0.12%)</title><rect x="119.6" y="965" width="1.4" height="15.0" fill="rgb(242,191,29)" rx="2" ry="2" />
<text x="122.64" y="975.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (6 samples, 0.02%)</title><rect x="488.0" y="1077" width="0.3" height="15.0" fill="rgb(207,192,8)" rx="2" ry="2" />
<text x="491.05" y="1087.5" ></text>
</g>
<g >
<title>find_busiest_group (4 samples, 0.02%)</title><rect x="1142.2" y="1141" width="0.2" height="15.0" fill="rgb(216,223,21)" rx="2" ry="2" />
<text x="1145.22" y="1151.5" ></text>
</g>
<g >
<title>ovl_read_iter (9 samples, 0.03%)</title><rect x="1092.3" y="821" width="0.4" height="15.0" fill="rgb(250,214,17)" rx="2" ry="2" />
<text x="1095.33" y="831.5" ></text>
</g>
<g >
<title>ovl_read_iter (101 samples, 0.39%)</title><rect x="1075.7" y="837" width="4.5" height="15.0" fill="rgb(238,63,40)" rx="2" ry="2" />
<text x="1078.68" y="847.5" ></text>
</g>
<g >
<title>MergingAggregtd (3,360 samples, 12.81%)</title><rect x="44.4" y="1269" width="151.1" height="15.0" fill="rgb(225,68,20)" rx="2" ry="2" />
<text x="47.37" y="1279.5" >MergingAggregtd</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="104.3" y="949" width="0.4" height="15.0" fill="rgb(230,114,53)" rx="2" ry="2" />
<text x="107.34" y="959.5" ></text>
</g>
<g >
<title>DB::PODArrayBase&lt;1ul, 4096ul, AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;, 15ul, 16ul&gt;::reserveForNextSize&lt;&gt; (5 samples, 0.02%)</title><rect x="1054.5" y="1013" width="0.2" height="15.0" fill="rgb(235,195,4)" rx="2" ry="2" />
<text x="1057.45" y="1023.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::execute (15 samples, 0.06%)</title><rect x="10.1" y="917" width="0.7" height="15.0" fill="rgb(225,200,8)" rx="2" ry="2" />
<text x="13.09" y="927.5" ></text>
</g>
<g >
<title>_nohz_idle_balance (5 samples, 0.02%)</title><rect x="1145.1" y="1109" width="0.3" height="15.0" fill="rgb(209,160,32)" rx="2" ry="2" />
<text x="1148.15" y="1119.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="122.6" y="1045" width="0.1" height="15.0" fill="rgb(254,74,45)" rx="2" ry="2" />
<text x="125.56" y="1055.5" ></text>
</g>
<g >
<title>__switch_to_asm (3 samples, 0.01%)</title><rect x="1144.6" y="1253" width="0.1" height="15.0" fill="rgb(205,179,44)" rx="2" ry="2" />
<text x="1147.61" y="1263.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (15 samples, 0.06%)</title><rect x="1125.9" y="1205" width="0.7" height="15.0" fill="rgb(230,67,44)" rx="2" ry="2" />
<text x="1128.89" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="332.6" y="997" width="0.2" height="15.0" fill="rgb(228,164,36)" rx="2" ry="2" />
<text x="335.61" y="1007.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="354.3" y="1061" width="0.1" height="15.0" fill="rgb(241,201,8)" rx="2" ry="2" />
<text x="357.30" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_ioctl (5 samples, 0.02%)</title><rect x="1139.9" y="1109" width="0.2" height="15.0" fill="rgb(210,48,30)" rx="2" ry="2" />
<text x="1142.88" y="1119.5" ></text>
</g>
<g >
<title>__sched_text_start (19 samples, 0.07%)</title><rect x="1138.4" y="1189" width="0.9" height="15.0" fill="rgb(232,32,5)" rx="2" ry="2" />
<text x="1141.44" y="1199.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1128.8" y="1109" width="0.2" height="15.0" fill="rgb(223,30,27)" rx="2" ry="2" />
<text x="1131.82" y="1119.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeOnBlock (6,465 samples, 24.65%)</title><rect x="195.8" y="1173" width="290.9" height="15.0" fill="rgb(251,200,7)" rx="2" ry="2" />
<text x="198.85" y="1183.5" >DB::Aggregator::executeOnBlock</text>
</g>
<g >
<title>realloc (88 samples, 0.34%)</title><rect x="202.6" y="1093" width="4.0" height="15.0" fill="rgb(218,32,49)" rx="2" ry="2" />
<text x="205.60" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1139.9" y="1253" width="0.2" height="15.0" fill="rgb(208,27,14)" rx="2" ry="2" />
<text x="1142.88" y="1263.5" ></text>
</g>
<g >
<title>pick_next_task_fair (10 samples, 0.04%)</title><rect x="1134.4" y="1173" width="0.4" height="15.0" fill="rgb(240,50,37)" rx="2" ry="2" />
<text x="1137.39" y="1183.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="104.3" y="933" width="0.4" height="15.0" fill="rgb(219,200,40)" rx="2" ry="2" />
<text x="107.34" y="943.5" ></text>
</g>
<g >
<title>DB::ColumnFixedString::~ColumnFixedString (3 samples, 0.01%)</title><rect x="486.7" y="1173" width="0.2" height="15.0" fill="rgb(234,33,52)" rx="2" ry="2" />
<text x="489.74" y="1183.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (13 samples, 0.05%)</title><rect x="1065.1" y="1013" width="0.6" height="15.0" fill="rgb(232,88,34)" rx="2" ry="2" />
<text x="1068.11" y="1023.5" ></text>
</g>
<g >
<title>ep_poll (4 samples, 0.02%)</title><rect x="1128.8" y="1061" width="0.2" height="15.0" fill="rgb(235,219,32)" rx="2" ry="2" />
<text x="1131.82" y="1071.5" ></text>
</g>
<g >
<title>large_ralloc (17 samples, 0.06%)</title><rect x="505.8" y="981" width="0.7" height="15.0" fill="rgb(234,160,8)" rx="2" ry="2" />
<text x="508.77" y="991.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (12 samples, 0.05%)</title><rect x="328.8" y="853" width="0.5" height="15.0" fill="rgb(231,159,11)" rx="2" ry="2" />
<text x="331.79" y="863.5" ></text>
</g>
<g >
<title>irq_work_run_list (3 samples, 0.01%)</title><rect x="1183.4" y="1125" width="0.1" height="15.0" fill="rgb(211,220,35)" rx="2" ry="2" />
<text x="1186.39" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (17 samples, 0.06%)</title><rect x="1123.7" y="789" width="0.8" height="15.0" fill="rgb(239,82,15)" rx="2" ry="2" />
<text x="1126.69" y="799.5" ></text>
</g>
<g >
<title>HashTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, DB::JoinStuff::WithFlags&lt;DB::RowRef, false&gt;, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;::resize (296 samples, 1.13%)</title><rect x="30.6" y="1013" width="13.3" height="15.0" fill="rgb(248,192,26)" rx="2" ry="2" />
<text x="33.56" y="1023.5" ></text>
</g>
<g >
<title>__se_sys_madvise (4 samples, 0.02%)</title><rect x="488.1" y="917" width="0.2" height="15.0" fill="rgb(243,208,49)" rx="2" ry="2" />
<text x="491.09" y="927.5" ></text>
</g>
<g >
<title>load_balance (12 samples, 0.05%)</title><rect x="1133.2" y="1157" width="0.6" height="15.0" fill="rgb(246,42,44)" rx="2" ry="2" />
<text x="1136.22" y="1167.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (312 samples, 1.19%)</title><rect x="381.5" y="1013" width="14.0" height="15.0" fill="rgb(205,147,11)" rx="2" ry="2" />
<text x="384.47" y="1023.5" ></text>
</g>
<g >
<title>malloc_default (6 samples, 0.02%)</title><rect x="1092.8" y="917" width="0.3" height="15.0" fill="rgb(209,185,1)" rx="2" ry="2" />
<text x="1095.78" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.04%)</title><rect x="1069.6" y="997" width="0.5" height="15.0" fill="rgb(233,73,48)" rx="2" ry="2" />
<text x="1072.57" y="1007.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::enumerateStreams (10 samples, 0.04%)</title><rect x="1106.0" y="1013" width="0.4" height="15.0" fill="rgb(223,139,39)" rx="2" ry="2" />
<text x="1108.96" y="1023.5" ></text>
</g>
<g >
<title>DB::Aggregator::mergeDataImpl&lt;DB::AggregationMethodKeysFixed&lt;TwoLevelHashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&gt;, false, false&gt;, HashMapTable&lt;DB::UInt128, HashMapCell&lt;DB::UInt128, char*, DB::UInt128HashCRC32, HashTableNoState&gt;, DB::UInt128HashCRC32, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt; &gt; (1,778 samples, 6.78%)</title><rect x="44.5" y="1141" width="80.0" height="15.0" fill="rgb(220,21,42)" rx="2" ry="2" />
<text x="47.46" y="1151.5" >DB::Aggre..</text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (50 samples, 0.19%)</title><rect x="1070.8" y="949" width="2.3" height="15.0" fill="rgb(241,58,39)" rx="2" ry="2" />
<text x="1073.83" y="959.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (7 samples, 0.03%)</title><rect x="1117.0" y="949" width="0.3" height="15.0" fill="rgb(206,225,30)" rx="2" ry="2" />
<text x="1120.03" y="959.5" ></text>
</g>
<g >
<title>__xstat64 (3 samples, 0.01%)</title><rect x="1106.3" y="981" width="0.1" height="15.0" fill="rgb(227,78,4)" rx="2" ry="2" />
<text x="1109.28" y="991.5" ></text>
</g>
<g >
<title>wp_page_copy (7 samples, 0.03%)</title><rect x="1187.8" y="1141" width="0.3" height="15.0" fill="rgb(242,85,15)" rx="2" ry="2" />
<text x="1190.75" y="1151.5" ></text>
</g>
<g >
<title>page_fault (85 samples, 0.32%)</title><rect x="109.8" y="1045" width="3.9" height="15.0" fill="rgb(222,168,15)" rx="2" ry="2" />
<text x="112.83" y="1055.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (79 samples, 0.30%)</title><rect x="1096.6" y="965" width="3.5" height="15.0" fill="rgb(235,215,30)" rx="2" ry="2" />
<text x="1099.56" y="975.5" ></text>
</g>
<g >
<title>__note_gp_changes (3 samples, 0.01%)</title><rect x="1151.4" y="1077" width="0.1" height="15.0" fill="rgb(242,203,24)" rx="2" ry="2" />
<text x="1154.40" y="1087.5" ></text>
</g>
<g >
<title>__sched_text_start (16 samples, 0.06%)</title><rect x="1124.9" y="997" width="0.8" height="15.0" fill="rgb(226,224,48)" rx="2" ry="2" />
<text x="1127.95" y="1007.5" ></text>
</g>
<g >
<title>memcpy (8 samples, 0.03%)</title><rect x="1100.2" y="965" width="0.3" height="15.0" fill="rgb(241,93,38)" rx="2" ry="2" />
<text x="1103.16" y="975.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (8 samples, 0.03%)</title><rect x="205.0" y="869" width="0.3" height="15.0" fill="rgb(222,145,33)" rx="2" ry="2" />
<text x="207.98" y="879.5" ></text>
</g>
<g >
<title>pick_next_task_fair (4 samples, 0.02%)</title><rect x="1128.8" y="997" width="0.2" height="15.0" fill="rgb(230,21,5)" rx="2" ry="2" />
<text x="1131.82" y="1007.5" ></text>
</g>
<g >
<title>ip6_output (5 samples, 0.02%)</title><rect x="1129.0" y="1093" width="0.3" height="15.0" fill="rgb(228,5,0)" rx="2" ry="2" />
<text x="1132.04" y="1103.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (71 samples, 0.27%)</title><rect x="1113.2" y="821" width="3.2" height="15.0" fill="rgb(241,18,12)" rx="2" ry="2" />
<text x="1116.16" y="831.5" ></text>
</g>
<g >
<title>[clickhouse] (24 samples, 0.09%)</title><rect x="201.1" y="1061" width="1.1" height="15.0" fill="rgb(236,17,35)" rx="2" ry="2" />
<text x="204.11" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.06%)</title><rect x="204.9" y="949" width="0.8" height="15.0" fill="rgb(245,16,31)" rx="2" ry="2" />
<text x="207.93" y="959.5" ></text>
</g>
<g >
<title>AsyncBlockInput (763 samples, 2.91%)</title><rect x="10.0" y="1269" width="34.3" height="15.0" fill="rgb(219,137,16)" rx="2" ry="2" />
<text x="13.00" y="1279.5" >As..</text>
</g>
<g >
<title>clear_page_rep (77 samples, 0.29%)</title><rect x="347.8" y="933" width="3.5" height="15.0" fill="rgb(231,37,18)" rx="2" ry="2" />
<text x="350.82" y="943.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="204.6" y="1029" width="0.2" height="15.0" fill="rgb(227,57,1)" rx="2" ry="2" />
<text x="207.62" y="1039.5" ></text>
</g>
<g >
<title>unmap_region (17 samples, 0.06%)</title><rect x="1123.7" y="709" width="0.8" height="15.0" fill="rgb(237,228,43)" rx="2" ry="2" />
<text x="1126.69" y="719.5" ></text>
</g>
<g >
<title>down_read_trylock (5 samples, 0.02%)</title><rect x="220.3" y="1061" width="0.2" height="15.0" fill="rgb(224,21,16)" rx="2" ry="2" />
<text x="223.32" y="1071.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.02%)</title><rect x="190.3" y="1061" width="0.2" height="15.0" fill="rgb(221,137,5)" rx="2" ry="2" />
<text x="193.27" y="1071.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (25 samples, 0.10%)</title><rect x="112.4" y="885" width="1.2" height="15.0" fill="rgb(225,58,6)" rx="2" ry="2" />
<text x="115.44" y="895.5" ></text>
</g>
<g >
<title>try_charge (4 samples, 0.02%)</title><rect x="352.0" y="949" width="0.2" height="15.0" fill="rgb(222,15,51)" rx="2" ry="2" />
<text x="355.00" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1128.2" y="1237" width="0.3" height="15.0" fill="rgb(243,49,8)" rx="2" ry="2" />
<text x="1131.23" y="1247.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::worker (3,355 samples, 12.79%)</title><rect x="44.4" y="1205" width="151.0" height="15.0" fill="rgb(237,164,54)" rx="2" ry="2" />
<text x="47.42" y="1215.5" >ThreadPoolImpl&lt;Thre..</text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (106 samples, 0.40%)</title><rect x="1100.6" y="949" width="4.7" height="15.0" fill="rgb(246,204,42)" rx="2" ry="2" />
<text x="1103.56" y="959.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="1188.1" y="1205" width="0.1" height="15.0" fill="rgb(239,173,9)" rx="2" ry="2" />
<text x="1191.11" y="1215.5" ></text>
</g>
<g >
<title>rmap_walk_anon (26 samples, 0.10%)</title><rect x="112.4" y="933" width="1.2" height="15.0" fill="rgb(246,47,47)" rx="2" ry="2" />
<text x="115.39" y="943.5" ></text>
</g>
<g >
<title>process_backlog (9 samples, 0.03%)</title><rect x="1126.0" y="933" width="0.4" height="15.0" fill="rgb(206,27,37)" rx="2" ry="2" />
<text x="1128.98" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (22 samples, 0.08%)</title><rect x="329.8" y="933" width="1.0" height="15.0" fill="rgb(220,179,28)" rx="2" ry="2" />
<text x="332.82" y="943.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (4 samples, 0.02%)</title><rect x="1081.9" y="837" width="0.2" height="15.0" fill="rgb(221,172,19)" rx="2" ry="2" />
<text x="1084.94" y="847.5" ></text>
</g>
<g >
<title>__se_sys_madvise (15 samples, 0.06%)</title><rect x="331.9" y="917" width="0.7" height="15.0" fill="rgb(217,71,24)" rx="2" ry="2" />
<text x="334.94" y="927.5" ></text>
</g>
<g >
<title>extents_alloc (5 samples, 0.02%)</title><rect x="1092.8" y="869" width="0.3" height="15.0" fill="rgb(237,152,12)" rx="2" ry="2" />
<text x="1095.83" y="879.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (16 samples, 0.06%)</title><rect x="10.0" y="1045" width="0.8" height="15.0" fill="rgb(249,107,44)" rx="2" ry="2" />
<text x="13.04" y="1055.5" ></text>
</g>
<g >
<title>tcp_recvmsg (7 samples, 0.03%)</title><rect x="1129.0" y="1157" width="0.3" height="15.0" fill="rgb(233,101,28)" rx="2" ry="2" />
<text x="1132.00" y="1167.5" ></text>
</g>
<g >
<title>Poco::PooledThread::run (51 samples, 0.19%)</title><rect x="1123.6" y="1221" width="2.3" height="15.0" fill="rgb(246,211,3)" rx="2" ry="2" />
<text x="1126.60" y="1231.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (210 samples, 0.80%)</title><rect x="104.2" y="1109" width="9.5" height="15.0" fill="rgb(236,84,42)" rx="2" ry="2" />
<text x="107.21" y="1119.5" ></text>
</g>
<g >
<title>account_user_time (6 samples, 0.02%)</title><rect x="1063.0" y="933" width="0.3" height="15.0" fill="rgb(226,55,28)" rx="2" ry="2" />
<text x="1066.00" y="943.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1127.7" y="1237" width="0.2" height="15.0" fill="rgb(227,154,49)" rx="2" ry="2" />
<text x="1130.74" y="1247.5" ></text>
</g>
<g >
<title>ksys_read (71 samples, 0.27%)</title><rect x="1113.2" y="917" width="3.2" height="15.0" fill="rgb(205,85,36)" rx="2" ry="2" />
<text x="1116.16" y="927.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="329.6" y="1013" width="0.1" height="15.0" fill="rgb(206,149,7)" rx="2" ry="2" />
<text x="332.55" y="1023.5" ></text>
</g>
<g >
<title>irq_work_run_list (5 samples, 0.02%)</title><rect x="1064.5" y="917" width="0.2" height="15.0" fill="rgb(215,48,25)" rx="2" ry="2" />
<text x="1067.48" y="927.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (5 samples, 0.02%)</title><rect x="346.1" y="933" width="0.2" height="15.0" fill="rgb(209,217,44)" rx="2" ry="2" />
<text x="349.06" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1125.8" y="1125" width="0.1" height="15.0" fill="rgb(246,18,8)" rx="2" ry="2" />
<text x="1128.76" y="1135.5" ></text>
</g>
<g >
<title>vfs_read (82 samples, 0.31%)</title><rect x="1101.5" y="821" width="3.7" height="15.0" fill="rgb(248,227,6)" rx="2" ry="2" />
<text x="1104.46" y="831.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (38 samples, 0.14%)</title><rect x="1082.6" y="965" width="1.7" height="15.0" fill="rgb(220,229,18)" rx="2" ry="2" />
<text x="1085.57" y="975.5" ></text>
</g>
<g >
<title>kthread (23 samples, 0.09%)</title><rect x="1138.3" y="1237" width="1.0" height="15.0" fill="rgb(227,24,36)" rx="2" ry="2" />
<text x="1141.26" y="1247.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (9 samples, 0.03%)</title><rect x="514.5" y="581" width="0.4" height="15.0" fill="rgb(246,226,8)" rx="2" ry="2" />
<text x="517.54" y="591.5" ></text>
</g>
<g >
<title>scheduler_tick (20 samples, 0.08%)</title><rect x="1063.5" y="933" width="0.9" height="15.0" fill="rgb(248,37,23)" rx="2" ry="2" />
<text x="1066.49" y="943.5" ></text>
</g>
<g >
<title>event_function (4 samples, 0.02%)</title><rect x="1145.9" y="1109" width="0.1" height="15.0" fill="rgb(252,104,17)" rx="2" ry="2" />
<text x="1148.87" y="1119.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (6 samples, 0.02%)</title><rect x="1064.5" y="981" width="0.3" height="15.0" fill="rgb(217,18,27)" rx="2" ry="2" />
<text x="1067.48" y="991.5" ></text>
</g>
<g >
<title>DB::ExpressionActions::execute (16 samples, 0.06%)</title><rect x="10.0" y="949" width="0.8" height="15.0" fill="rgb(236,3,23)" rx="2" ry="2" />
<text x="13.04" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1120.7" y="965" width="0.2" height="15.0" fill="rgb(206,146,33)" rx="2" ry="2" />
<text x="1123.67" y="975.5" ></text>
</g>
<g >
<title>default_send_IPI_mask_allbutself_phys (4 samples, 0.02%)</title><rect x="329.1" y="789" width="0.1" height="15.0" fill="rgb(230,8,23)" rx="2" ry="2" />
<text x="332.06" y="799.5" ></text>
</g>
<g >
<title>link_path_walk (5 samples, 0.02%)</title><rect x="1106.7" y="853" width="0.2" height="15.0" fill="rgb(225,84,27)" rx="2" ry="2" />
<text x="1109.68" y="863.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3 samples, 0.01%)</title><rect x="122.7" y="1077" width="0.2" height="15.0" fill="rgb(214,186,41)" rx="2" ry="2" />
<text x="125.74" y="1087.5" ></text>
</g>
<g >
<title>page_mapping (3 samples, 0.01%)</title><rect x="39.6" y="837" width="0.2" height="15.0" fill="rgb(252,127,23)" rx="2" ry="2" />
<text x="42.65" y="847.5" ></text>
</g>
<g >
<title>copy_page_to_iter (37 samples, 0.14%)</title><rect x="1118.5" y="757" width="1.7" height="15.0" fill="rgb(209,100,37)" rx="2" ry="2" />
<text x="1121.51" y="767.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromPocoSocket::poll (7 samples, 0.03%)</title><rect x="1128.7" y="1157" width="0.3" height="15.0" fill="rgb(247,68,31)" rx="2" ry="2" />
<text x="1131.68" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="487.1" y="1029" width="0.2" height="15.0" fill="rgb(225,65,3)" rx="2" ry="2" />
<text x="490.06" y="1039.5" ></text>
</g>
<g >
<title>do_wp_page (6 samples, 0.02%)</title><rect x="1186.9" y="1173" width="0.3" height="15.0" fill="rgb(237,191,46)" rx="2" ry="2" />
<text x="1189.94" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (54 samples, 0.21%)</title><rect x="1073.2" y="933" width="2.4" height="15.0" fill="rgb(214,13,45)" rx="2" ry="2" />
<text x="1076.21" y="943.5" ></text>
</g>
<g >
<title>reschedule_interrupt (60 samples, 0.23%)</title><rect x="1146.0" y="1173" width="2.7" height="15.0" fill="rgb(242,48,27)" rx="2" ry="2" />
<text x="1149.05" y="1183.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (24 samples, 0.09%)</title><rect x="396.2" y="1013" width="1.1" height="15.0" fill="rgb(219,170,12)" rx="2" ry="2" />
<text x="399.18" y="1023.5" ></text>
</g>
<g >
<title>memcpy (197 samples, 0.75%)</title><rect x="104.8" y="1061" width="8.9" height="15.0" fill="rgb(215,85,48)" rx="2" ry="2" />
<text x="107.79" y="1071.5" ></text>
</g>
<g >
<title>queue_work_on (11 samples, 0.04%)</title><rect x="1153.4" y="1013" width="0.5" height="15.0" fill="rgb(249,171,26)" rx="2" ry="2" />
<text x="1156.42" y="1023.5" ></text>
</g>
<g >
<title>page_evictable (3 samples, 0.01%)</title><rect x="380.4" y="981" width="0.2" height="15.0" fill="rgb(231,130,39)" rx="2" ry="2" />
<text x="383.43" y="991.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (4 samples, 0.02%)</title><rect x="506.3" y="965" width="0.1" height="15.0" fill="rgb(220,172,54)" rx="2" ry="2" />
<text x="509.27" y="975.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (4 samples, 0.02%)</title><rect x="1145.9" y="1157" width="0.1" height="15.0" fill="rgb(239,129,35)" rx="2" ry="2" />
<text x="1148.87" y="1167.5" ></text>
</g>
<g >
<title>vfs_statx (3 samples, 0.01%)</title><rect x="1106.3" y="917" width="0.1" height="15.0" fill="rgb(242,19,22)" rx="2" ry="2" />
<text x="1109.28" y="927.5" ></text>
</g>
<g >
<title>zap_page_range (4 samples, 0.02%)</title><rect x="488.1" y="901" width="0.2" height="15.0" fill="rgb(210,111,33)" rx="2" ry="2" />
<text x="491.09" y="911.5" ></text>
</g>
<g >
<title>DB::ParserIntervalOperatorExpression::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="325" width="0.3" height="15.0" fill="rgb(213,224,26)" rx="2" ry="2" />
<text x="517.59" y="335.5" ></text>
</g>
<g >
<title>free_unref_page_list (3 samples, 0.01%)</title><rect x="205.4" y="837" width="0.1" height="15.0" fill="rgb(238,80,49)" rx="2" ry="2" />
<text x="208.38" y="847.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (17 samples, 0.06%)</title><rect x="404.6" y="1093" width="0.8" height="15.0" fill="rgb(250,222,39)" rx="2" ry="2" />
<text x="407.59" y="1103.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (30 samples, 0.11%)</title><rect x="202.8" y="901" width="1.3" height="15.0" fill="rgb(235,222,15)" rx="2" ry="2" />
<text x="205.78" y="911.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="1188.1" y="1157" width="0.1" height="15.0" fill="rgb(210,229,46)" rx="2" ry="2" />
<text x="1191.11" y="1167.5" ></text>
</g>
<g >
<title>__sched_text_start (14 samples, 0.05%)</title><rect x="1133.2" y="1189" width="0.6" height="15.0" fill="rgb(247,58,51)" rx="2" ry="2" />
<text x="1136.18" y="1199.5" ></text>
</g>
<g >
<title>__lru_cache_add (26 samples, 0.10%)</title><rect x="345.3" y="981" width="1.2" height="15.0" fill="rgb(214,218,25)" rx="2" ry="2" />
<text x="348.34" y="991.5" ></text>
</g>
<g >
<title>update_nohz_stats (11 samples, 0.04%)</title><rect x="1148.2" y="1109" width="0.5" height="15.0" fill="rgb(211,22,50)" rx="2" ry="2" />
<text x="1151.16" y="1119.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::MergeTreeReader (9 samples, 0.03%)</title><rect x="1120.5" y="1093" width="0.4" height="15.0" fill="rgb(209,80,46)" rx="2" ry="2" />
<text x="1123.54" y="1103.5" ></text>
</g>
<g >
<title>arena_decay (18 samples, 0.07%)</title><rect x="204.8" y="1045" width="0.9" height="15.0" fill="rgb(233,229,7)" rx="2" ry="2" />
<text x="207.84" y="1055.5" ></text>
</g>
<g >
<title>std::vector&lt;DB::ColumnWithTypeAndName, std::allocator&lt;DB::ColumnWithTypeAndName&gt; &gt;::~vector (3 samples, 0.01%)</title><rect x="530.1" y="1093" width="0.1" height="15.0" fill="rgb(208,138,26)" rx="2" ry="2" />
<text x="533.11" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (35 samples, 0.13%)</title><rect x="1130.0" y="1189" width="1.6" height="15.0" fill="rgb(224,33,53)" rx="2" ry="2" />
<text x="1133.03" y="1199.5" ></text>
</g>
<g >
<title>epoll_create (4 samples, 0.02%)</title><rect x="1124.6" y="1093" width="0.2" height="15.0" fill="rgb(250,48,52)" rx="2" ry="2" />
<text x="1127.59" y="1103.5" ></text>
</g>
<g >
<title>ret_from_fork (15 samples, 0.06%)</title><rect x="1133.1" y="1253" width="0.7" height="15.0" fill="rgb(227,97,37)" rx="2" ry="2" />
<text x="1136.13" y="1263.5" ></text>
</g>
<g >
<title>copy_user_generic_string (25 samples, 0.10%)</title><rect x="1093.5" y="677" width="1.2" height="15.0" fill="rgb(206,168,6)" rx="2" ry="2" />
<text x="1096.54" y="687.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (135 samples, 0.51%)</title><rect x="1086.7" y="949" width="6.1" height="15.0" fill="rgb(211,206,1)" rx="2" ry="2" />
<text x="1089.71" y="959.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (3 samples, 0.01%)</title><rect x="1126.2" y="789" width="0.1" height="15.0" fill="rgb(228,176,53)" rx="2" ry="2" />
<text x="1129.21" y="799.5" ></text>
</g>
<g >
<title>DB::ParserExpressionList::parseImpl (19 samples, 0.07%)</title><rect x="514.4" y="853" width="0.9" height="15.0" fill="rgb(216,176,8)" rx="2" ry="2" />
<text x="517.41" y="863.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (7 samples, 0.03%)</title><rect x="1106.6" y="981" width="0.3" height="15.0" fill="rgb(243,140,0)" rx="2" ry="2" />
<text x="1109.59" y="991.5" ></text>
</g>
<g >
<title>__irqentry_text_start (3 samples, 0.01%)</title><rect x="404.2" y="1109" width="0.1" height="15.0" fill="rgb(212,228,23)" rx="2" ry="2" />
<text x="407.19" y="1119.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::enumerateStreams (15 samples, 0.06%)</title><rect x="1106.5" y="1029" width="0.7" height="15.0" fill="rgb(236,183,40)" rx="2" ry="2" />
<text x="1109.55" y="1039.5" ></text>
</g>
<g >
<title>net_rx_action (9 samples, 0.03%)</title><rect x="1126.0" y="949" width="0.4" height="15.0" fill="rgb(220,217,11)" rx="2" ry="2" />
<text x="1128.98" y="959.5" ></text>
</g>
<g >
<title>__madvise (16 samples, 0.06%)</title><rect x="328.7" y="965" width="0.7" height="15.0" fill="rgb(252,198,37)" rx="2" ry="2" />
<text x="331.70" y="975.5" ></text>
</g>
<g >
<title>up_read (5 samples, 0.02%)</title><rect x="221.4" y="1061" width="0.2" height="15.0" fill="rgb(247,66,15)" rx="2" ry="2" />
<text x="224.36" y="1071.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (16 samples, 0.06%)</title><rect x="514.4" y="837" width="0.7" height="15.0" fill="rgb(231,218,27)" rx="2" ry="2" />
<text x="517.41" y="847.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (7 samples, 0.03%)</title><rect x="395.0" y="933" width="0.3" height="15.0" fill="rgb(205,1,1)" rx="2" ry="2" />
<text x="398.01" y="943.5" ></text>
</g>
<g >
<title>__vfs_read (4 samples, 0.02%)</title><rect x="1128.3" y="1173" width="0.2" height="15.0" fill="rgb(239,205,12)" rx="2" ry="2" />
<text x="1131.28" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="410.2" y="1141" width="0.1" height="15.0" fill="rgb(252,164,22)" rx="2" ry="2" />
<text x="413.17" y="1151.5" ></text>
</g>
<g >
<title>smp_irq_work_interrupt (13 samples, 0.05%)</title><rect x="1153.3" y="1061" width="0.6" height="15.0" fill="rgb(231,226,22)" rx="2" ry="2" />
<text x="1156.33" y="1071.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (5 samples, 0.02%)</title><rect x="42.6" y="869" width="0.2" height="15.0" fill="rgb(206,27,17)" rx="2" ry="2" />
<text x="45.57" y="879.5" ></text>
</g>
<g >
<title>sync_regs (3 samples, 0.01%)</title><rect x="109.7" y="1029" width="0.1" height="15.0" fill="rgb(228,146,34)" rx="2" ry="2" />
<text x="112.69" y="1039.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (18 samples, 0.07%)</title><rect x="329.9" y="853" width="0.8" height="15.0" fill="rgb(233,229,22)" rx="2" ry="2" />
<text x="332.87" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="1107.3" y="949" width="0.4" height="15.0" fill="rgb(210,67,30)" rx="2" ry="2" />
<text x="1110.31" y="959.5" ></text>
</g>
<g >
<title>TwoLevelHashTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;, HashMapTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, TwoLevelHashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt;, 8ul&gt;::TwoLevelHashTable&lt;HashMapTable&lt;StringRef, HashMapCellWithSavedHash&lt;StringRef, char*, DefaultHash&lt;StringRef&gt;, HashTableNoState&gt;, DefaultHash&lt;StringRef&gt;, HashTableGrower&lt;8ul&gt;, AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt; &gt; &gt; (20 samples, 0.08%)</title><rect x="208.2" y="1141" width="0.9" height="15.0" fill="rgb(205,150,13)" rx="2" ry="2" />
<text x="211.17" y="1151.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (31 samples, 0.12%)</title><rect x="1093.5" y="725" width="1.4" height="15.0" fill="rgb(225,189,28)" rx="2" ry="2" />
<text x="1096.50" y="735.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="1107.3" y="933" width="0.4" height="15.0" fill="rgb(229,203,14)" rx="2" ry="2" />
<text x="1110.31" y="943.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1139.9" y="1189" width="0.2" height="15.0" fill="rgb(213,205,27)" rx="2" ry="2" />
<text x="1142.88" y="1199.5" ></text>
</g>
<g >
<title>__handle_mm_fault (111 samples, 0.42%)</title><rect x="38.6" y="949" width="5.0" height="15.0" fill="rgb(229,224,39)" rx="2" ry="2" />
<text x="41.61" y="959.5" ></text>
</g>
<g >
<title>__se_sys_madvise (8 samples, 0.03%)</title><rect x="104.3" y="917" width="0.4" height="15.0" fill="rgb(218,6,48)" rx="2" ry="2" />
<text x="107.34" y="927.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (32 samples, 0.12%)</title><rect x="1084.6" y="949" width="1.4" height="15.0" fill="rgb(240,200,30)" rx="2" ry="2" />
<text x="1087.59" y="959.5" ></text>
</g>
<g >
<title>run_rebalance_domains (39 samples, 0.15%)</title><rect x="1153.2" y="1109" width="1.7" height="15.0" fill="rgb(225,208,10)" rx="2" ry="2" />
<text x="1156.15" y="1119.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (9 samples, 0.03%)</title><rect x="202.8" y="869" width="0.4" height="15.0" fill="rgb(240,123,12)" rx="2" ry="2" />
<text x="205.78" y="879.5" ></text>
</g>
<g >
<title>ipv6_rcv (3 samples, 0.01%)</title><rect x="1129.1" y="949" width="0.2" height="15.0" fill="rgb(240,47,17)" rx="2" ry="2" />
<text x="1132.13" y="959.5" ></text>
</g>
<g >
<title>worker_thread (42 samples, 0.16%)</title><rect x="1136.3" y="1221" width="1.9" height="15.0" fill="rgb(222,3,6)" rx="2" ry="2" />
<text x="1139.28" y="1231.5" ></text>
</g>
<g >
<title>DB::FunctionBuilderCast::getReturnTypeImpl (22 samples, 0.08%)</title><rect x="514.4" y="1029" width="1.0" height="15.0" fill="rgb(241,59,53)" rx="2" ry="2" />
<text x="517.36" y="1039.5" ></text>
</g>
<g >
<title>inode_permission (3 samples, 0.01%)</title><rect x="1106.0" y="821" width="0.1" height="15.0" fill="rgb(224,64,0)" rx="2" ry="2" />
<text x="1108.96" y="831.5" ></text>
</g>
<g >
<title>__vfs_read (7 samples, 0.03%)</title><rect x="1099.8" y="853" width="0.3" height="15.0" fill="rgb(246,52,21)" rx="2" ry="2" />
<text x="1102.75" y="863.5" ></text>
</g>
<g >
<title>event_function (244 samples, 0.93%)</title><rect x="1172.2" y="1109" width="11.0" height="15.0" fill="rgb(214,75,0)" rx="2" ry="2" />
<text x="1175.23" y="1119.5" ></text>
</g>
<g >
<title>DB::ColumnString::indexImpl&lt;unsigned char&gt; (220 samples, 0.84%)</title><rect x="515.8" y="1045" width="9.9" height="15.0" fill="rgb(215,74,29)" rx="2" ry="2" />
<text x="518.80" y="1055.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (3 samples, 0.01%)</title><rect x="487.1" y="933" width="0.2" height="15.0" fill="rgb(250,130,25)" rx="2" ry="2" />
<text x="490.15" y="943.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::progressImpl (16 samples, 0.06%)</title><rect x="1069.4" y="1061" width="0.8" height="15.0" fill="rgb(244,91,6)" rx="2" ry="2" />
<text x="1072.43" y="1071.5" ></text>
</g>
<g >
<title>memcpy (70 samples, 0.27%)</title><rect x="1066.1" y="1045" width="3.2" height="15.0" fill="rgb(223,196,29)" rx="2" ry="2" />
<text x="1069.10" y="1055.5" ></text>
</g>
<g >
<title>arena_decay (5 samples, 0.02%)</title><rect x="487.1" y="1109" width="0.2" height="15.0" fill="rgb(237,90,0)" rx="2" ry="2" />
<text x="490.06" y="1119.5" ></text>
</g>
<g >
<title>[dash] (6 samples, 0.02%)</title><rect x="1127.3" y="1237" width="0.3" height="15.0" fill="rgb(222,146,46)" rx="2" ry="2" />
<text x="1130.33" y="1247.5" ></text>
</g>
<g >
<title>update_blocked_averages (4 samples, 0.02%)</title><rect x="1125.5" y="917" width="0.2" height="15.0" fill="rgb(223,161,19)" rx="2" ry="2" />
<text x="1128.49" y="927.5" ></text>
</g>
<g >
<title>alloc_pages_vma (15 samples, 0.06%)</title><rect x="118.7" y="1029" width="0.7" height="15.0" fill="rgb(212,191,39)" rx="2" ry="2" />
<text x="121.74" y="1039.5" ></text>
</g>
<g >
<title>DB::Aggregator::createAggregateStates (49 samples, 0.19%)</title><rect x="313.1" y="1125" width="2.2" height="15.0" fill="rgb(252,167,26)" rx="2" ry="2" />
<text x="316.13" y="1135.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (4 samples, 0.02%)</title><rect x="509.0" y="805" width="0.2" height="15.0" fill="rgb(217,173,14)" rx="2" ry="2" />
<text x="512.01" y="815.5" ></text>
</g>
<g >
<title>smp_call_function_many (12 samples, 0.05%)</title><rect x="328.8" y="821" width="0.5" height="15.0" fill="rgb(221,214,21)" rx="2" ry="2" />
<text x="331.79" y="831.5" ></text>
</g>
<g >
<title>__queue_work (3 samples, 0.01%)</title><rect x="1183.4" y="1093" width="0.1" height="15.0" fill="rgb(217,155,12)" rx="2" ry="2" />
<text x="1186.39" y="1103.5" ></text>
</g>
<g >
<title>call_function_interrupt (28 samples, 0.11%)</title><rect x="122.9" y="1125" width="1.2" height="15.0" fill="rgb(211,102,34)" rx="2" ry="2" />
<text x="125.88" y="1135.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (24 samples, 0.09%)</title><rect x="201.1" y="1029" width="1.1" height="15.0" fill="rgb(206,179,0)" rx="2" ry="2" />
<text x="204.11" y="1039.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (24 samples, 0.09%)</title><rect x="309.9" y="1029" width="1.1" height="15.0" fill="rgb(247,177,16)" rx="2" ry="2" />
<text x="312.94" y="1039.5" ></text>
</g>
<g >
<title>default_send_IPI_mask_sequence_phys (15 samples, 0.06%)</title><rect x="120.4" y="885" width="0.6" height="15.0" fill="rgb(231,131,46)" rx="2" ry="2" />
<text x="123.36" y="895.5" ></text>
</g>
<g >
<title>find_busiest_group (15 samples, 0.06%)</title><rect x="1138.6" y="1141" width="0.7" height="15.0" fill="rgb(208,204,21)" rx="2" ry="2" />
<text x="1141.58" y="1151.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (3 samples, 0.01%)</title><rect x="1189.3" y="1045" width="0.2" height="15.0" fill="rgb(233,10,34)" rx="2" ry="2" />
<text x="1192.33" y="1055.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="122.2" y="1061" width="0.3" height="15.0" fill="rgb(226,205,31)" rx="2" ry="2" />
<text x="125.25" y="1071.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::executeWithoutLowCardinalityColumns (3 samples, 0.01%)</title><rect x="515.5" y="1045" width="0.1" height="15.0" fill="rgb(252,163,1)" rx="2" ry="2" />
<text x="518.49" y="1055.5" ></text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (3 samples, 0.01%)</title><rect x="1106.4" y="965" width="0.1" height="15.0" fill="rgb(254,91,13)" rx="2" ry="2" />
<text x="1109.41" y="975.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (6 samples, 0.02%)</title><rect x="218.7" y="965" width="0.3" height="15.0" fill="rgb(212,165,15)" rx="2" ry="2" />
<text x="221.70" y="975.5" ></text>
</g>
<g >
<title>DB::ColumnLowCardinality::insertRangeFrom (16 samples, 0.06%)</title><rect x="1081.7" y="965" width="0.7" height="15.0" fill="rgb(225,99,8)" rx="2" ry="2" />
<text x="1084.71" y="975.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::insertFrom (397 samples, 1.51%)</title><rect x="494.2" y="1077" width="17.9" height="15.0" fill="rgb(253,119,6)" rx="2" ry="2" />
<text x="497.21" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1124.6" y="1077" width="0.2" height="15.0" fill="rgb(216,21,52)" rx="2" ry="2" />
<text x="1127.59" y="1087.5" ></text>
</g>
<g >
<title>[clickhouse] (39 samples, 0.15%)</title><rect x="202.7" y="1029" width="1.7" height="15.0" fill="rgb(208,62,26)" rx="2" ry="2" />
<text x="205.69" y="1039.5" ></text>
</g>
<g >
<title>shmem_getpage (21 samples, 0.08%)</title><rect x="1079.3" y="773" width="0.9" height="15.0" fill="rgb(226,46,24)" rx="2" ry="2" />
<text x="1082.28" y="783.5" ></text>
</g>
<g >
<title>cpuacct_account_field (5 samples, 0.02%)</title><rect x="1063.0" y="917" width="0.3" height="15.0" fill="rgb(254,41,38)" rx="2" ry="2" />
<text x="1066.04" y="927.5" ></text>
</g>
<g >
<title>tmux:_server (68 samples, 0.26%)</title><rect x="1186.7" y="1269" width="3.0" height="15.0" fill="rgb(209,172,53)" rx="2" ry="2" />
<text x="1189.67" y="1279.5" ></text>
</g>
<g >
<title>_init (3 samples, 0.01%)</title><rect x="1188.1" y="1221" width="0.1" height="15.0" fill="rgb(239,203,0)" rx="2" ry="2" />
<text x="1191.11" y="1231.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6 samples, 0.02%)</title><rect x="206.1" y="1013" width="0.3" height="15.0" fill="rgb(252,158,50)" rx="2" ry="2" />
<text x="209.15" y="1023.5" ></text>
</g>
<g >
<title>call_function_interrupt (17 samples, 0.06%)</title><rect x="1064.9" y="1029" width="0.8" height="15.0" fill="rgb(252,11,51)" rx="2" ry="2" />
<text x="1067.93" y="1039.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (5 samples, 0.02%)</title><rect x="1129.7" y="1157" width="0.2" height="15.0" fill="rgb(212,208,47)" rx="2" ry="2" />
<text x="1132.72" y="1167.5" ></text>
</g>
<g >
<title>copy_page_to_iter (22 samples, 0.08%)</title><rect x="1084.7" y="725" width="1.0" height="15.0" fill="rgb(250,83,33)" rx="2" ry="2" />
<text x="1087.73" y="735.5" ></text>
</g>
<g >
<title>ParalInputsProc (20,629 samples, 78.65%)</title><rect x="195.5" y="1269" width="928.1" height="15.0" fill="rgb(225,92,48)" rx="2" ry="2" />
<text x="198.53" y="1279.5" >ParalInputsProc</text>
</g>
<g >
<title>up_read (137 samples, 0.52%)</title><rect x="397.7" y="1061" width="6.2" height="15.0" fill="rgb(226,90,35)" rx="2" ry="2" />
<text x="400.71" y="1071.5" ></text>
</g>
<g >
<title>path_openat (3 samples, 0.01%)</title><rect x="1106.4" y="869" width="0.1" height="15.0" fill="rgb(235,224,42)" rx="2" ry="2" />
<text x="1109.41" y="879.5" ></text>
</g>
<g >
<title>__sys_sendto (11 samples, 0.04%)</title><rect x="1069.6" y="965" width="0.5" height="15.0" fill="rgb(243,135,23)" rx="2" ry="2" />
<text x="1072.57" y="975.5" ></text>
</g>
<g >
<title>do_iter_read (82 samples, 0.31%)</title><rect x="1101.5" y="773" width="3.7" height="15.0" fill="rgb(217,226,29)" rx="2" ry="2" />
<text x="1104.46" y="783.5" ></text>
</g>
<g >
<title>zap_page_range (15 samples, 0.06%)</title><rect x="331.9" y="901" width="0.7" height="15.0" fill="rgb(254,105,7)" rx="2" ry="2" />
<text x="334.94" y="911.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3 samples, 0.01%)</title><rect x="1148.4" y="1077" width="0.2" height="15.0" fill="rgb(226,117,45)" rx="2" ry="2" />
<text x="1151.43" y="1087.5" ></text>
</g>
<g >
<title>get_page_from_freelist (31 samples, 0.12%)</title><rect x="39.9" y="869" width="1.4" height="15.0" fill="rgb(207,205,40)" rx="2" ry="2" />
<text x="42.92" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (31 samples, 0.12%)</title><rect x="1093.5" y="853" width="1.4" height="15.0" fill="rgb(208,206,8)" rx="2" ry="2" />
<text x="1096.50" y="863.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (3 samples, 0.01%)</title><rect x="208.0" y="1109" width="0.2" height="15.0" fill="rgb(229,197,27)" rx="2" ry="2" />
<text x="211.04" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.03%)</title><rect x="1106.9" y="965" width="0.3" height="15.0" fill="rgb(222,102,7)" rx="2" ry="2" />
<text x="1109.91" y="975.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (3 samples, 0.01%)</title><rect x="42.0" y="901" width="0.1" height="15.0" fill="rgb(209,83,38)" rx="2" ry="2" />
<text x="44.99" y="911.5" ></text>
</g>
<g >
<title>tcache_bin_flush_small (20 samples, 0.08%)</title><rect x="204.8" y="1061" width="0.9" height="15.0" fill="rgb(239,47,22)" rx="2" ry="2" />
<text x="207.75" y="1071.5" ></text>
</g>
<g >
<title>irq_exit (59 samples, 0.22%)</title><rect x="1146.1" y="1157" width="2.6" height="15.0" fill="rgb(207,215,18)" rx="2" ry="2" />
<text x="1149.09" y="1167.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (6 samples, 0.02%)</title><rect x="215.2" y="1125" width="0.3" height="15.0" fill="rgb(246,176,11)" rx="2" ry="2" />
<text x="218.19" y="1135.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3 samples, 0.01%)</title><rect x="206.2" y="981" width="0.2" height="15.0" fill="rgb(237,131,7)" rx="2" ry="2" />
<text x="209.24" y="991.5" ></text>
</g>
<g >
<title>__GI___libc_read (83 samples, 0.32%)</title><rect x="1101.4" y="885" width="3.8" height="15.0" fill="rgb(240,93,19)" rx="2" ry="2" />
<text x="1104.42" y="895.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (6 samples, 0.02%)</title><rect x="514.6" y="165" width="0.3" height="15.0" fill="rgb(221,137,27)" rx="2" ry="2" />
<text x="517.63" y="175.5" ></text>
</g>
<g >
<title>__sched_text_start (4 samples, 0.02%)</title><rect x="1128.8" y="1013" width="0.2" height="15.0" fill="rgb(214,109,15)" rx="2" ry="2" />
<text x="1131.82" y="1023.5" ></text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (9 samples, 0.03%)</title><rect x="1107.3" y="981" width="0.4" height="15.0" fill="rgb(210,117,48)" rx="2" ry="2" />
<text x="1110.27" y="991.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (871 samples, 3.32%)</title><rect x="1069.3" y="1109" width="39.2" height="15.0" fill="rgb(228,119,27)" rx="2" ry="2" />
<text x="1072.30" y="1119.5" >DB:..</text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="1062.2" y="949" width="0.1" height="15.0" fill="rgb(251,202,48)" rx="2" ry="2" />
<text x="1065.19" y="959.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (4 samples, 0.02%)</title><rect x="1145.9" y="1141" width="0.1" height="15.0" fill="rgb(214,46,50)" rx="2" ry="2" />
<text x="1148.87" y="1151.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (7 samples, 0.03%)</title><rect x="1054.8" y="997" width="0.3" height="15.0" fill="rgb(227,194,0)" rx="2" ry="2" />
<text x="1057.76" y="1007.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (14,081 samples, 53.68%)</title><rect x="487.6" y="1157" width="633.5" height="15.0" fill="rgb(227,39,20)" rx="2" ry="2" />
<text x="490.64" y="1167.5" >DB::ExpressionBlockInputStream::readImpl</text>
</g>
<g >
<title>do_filp_open (4 samples, 0.02%)</title><rect x="1120.7" y="933" width="0.2" height="15.0" fill="rgb(232,116,49)" rx="2" ry="2" />
<text x="1123.67" y="943.5" ></text>
</g>
<g >
<title>kworker/62:0-ev (23 samples, 0.09%)</title><rect x="1138.3" y="1269" width="1.0" height="15.0" fill="rgb(221,185,23)" rx="2" ry="2" />
<text x="1141.26" y="1279.5" ></text>
</g>
<g >
<title>DB::ParserFunction::parseImpl (20 samples, 0.08%)</title><rect x="514.4" y="885" width="0.9" height="15.0" fill="rgb(237,50,30)" rx="2" ry="2" />
<text x="517.41" y="895.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="201.0" y="1093" width="0.1" height="15.0" fill="rgb(217,131,12)" rx="2" ry="2" />
<text x="203.98" y="1103.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (7 samples, 0.03%)</title><rect x="514.6" y="293" width="0.3" height="15.0" fill="rgb(242,183,26)" rx="2" ry="2" />
<text x="517.59" y="303.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1106.4" y="1013" width="0.1" height="15.0" fill="rgb(209,52,26)" rx="2" ry="2" />
<text x="1109.41" y="1023.5" ></text>
</g>
<g >
<title>irq_work_run (5 samples, 0.02%)</title><rect x="1064.5" y="933" width="0.2" height="15.0" fill="rgb(249,42,38)" rx="2" ry="2" />
<text x="1067.48" y="943.5" ></text>
</g>
<g >
<title>down_read_trylock (5 samples, 0.02%)</title><rect x="117.8" y="1061" width="0.3" height="15.0" fill="rgb(211,196,34)" rx="2" ry="2" />
<text x="120.84" y="1071.5" ></text>
</g>
<g >
<title>large_palloc (4 samples, 0.02%)</title><rect x="500.8" y="997" width="0.2" height="15.0" fill="rgb(246,7,10)" rx="2" ry="2" />
<text x="503.78" y="1007.5" ></text>
</g>
<g >
<title>update_blocked_averages (10 samples, 0.04%)</title><rect x="1148.2" y="1093" width="0.5" height="15.0" fill="rgb(224,146,5)" rx="2" ry="2" />
<text x="1151.21" y="1103.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::serializeValueIntoArena (5 samples, 0.02%)</title><rect x="409.5" y="1125" width="0.2" height="15.0" fill="rgb(239,2,16)" rx="2" ry="2" />
<text x="412.50" y="1135.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (101 samples, 0.39%)</title><rect x="1075.7" y="789" width="4.5" height="15.0" fill="rgb(228,214,31)" rx="2" ry="2" />
<text x="1078.68" y="799.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.07%)</title><rect x="1124.9" y="1109" width="0.8" height="15.0" fill="rgb(207,156,20)" rx="2" ry="2" />
<text x="1127.86" y="1119.5" ></text>
</g>
<g >
<title>rebalance_domains (31 samples, 0.12%)</title><rect x="1151.8" y="1109" width="1.4" height="15.0" fill="rgb(254,24,19)" rx="2" ry="2" />
<text x="1154.76" y="1119.5" ></text>
</g>
<g >
<title>DB::ParserBetweenExpression::parseImpl (7 samples, 0.03%)</title><rect x="514.6" y="453" width="0.3" height="15.0" fill="rgb(206,163,15)" rx="2" ry="2" />
<text x="517.59" y="463.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5 samples, 0.02%)</title><rect x="186.8" y="1077" width="0.2" height="15.0" fill="rgb(227,27,36)" rx="2" ry="2" />
<text x="189.76" y="1087.5" ></text>
</g>
<g >
<title>rcu_process_callbacks (20 samples, 0.08%)</title><rect x="1150.9" y="1109" width="0.9" height="15.0" fill="rgb(247,61,16)" rx="2" ry="2" />
<text x="1153.86" y="1119.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (27 samples, 0.10%)</title><rect x="1095.0" y="933" width="1.2" height="15.0" fill="rgb(211,208,0)" rx="2" ry="2" />
<text x="1098.03" y="943.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment