Skip to content

Instantly share code, notes, and snippets.

@Slind14
Created June 23, 2019 11:28
Show Gist options
  • Save Slind14/3a778bd0bd7f1c8e97dc229d6c74aaae to your computer and use it in GitHub Desktop.
Save Slind14/3a778bd0bd7f1c8e97dc229d6c74aaae 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="1382" onload="init(evt)" viewBox="0 0 1200 1382" 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="1382.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1365" > </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="1365" > </text>
<g id="frames">
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1181.0" y="1237" width="0.1" height="15.0" fill="rgb(228,196,36)" rx="2" ry="2" />
<text x="1183.97" y="1247.5" ></text>
</g>
<g >
<title>alloc_pages_vma (21 samples, 0.07%)</title><rect x="27.2" y="805" width="0.9" height="15.0" fill="rgb(226,113,22)" rx="2" ry="2" />
<text x="30.21" y="815.5" ></text>
</g>
<g >
<title>update_blocked_averages (9 samples, 0.03%)</title><rect x="1066.2" y="1093" width="0.4" height="15.0" fill="rgb(211,127,3)" rx="2" ry="2" />
<text x="1069.25" y="1103.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="230.5" y="1077" width="0.2" height="15.0" fill="rgb(241,76,5)" rx="2" ry="2" />
<text x="233.51" y="1087.5" ></text>
</g>
<g >
<title>__se_sys_madvise (6 samples, 0.02%)</title><rect x="204.4" y="885" width="0.2" height="15.0" fill="rgb(241,177,27)" rx="2" ry="2" />
<text x="207.36" y="895.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (3 samples, 0.01%)</title><rect x="1010.7" y="965" width="0.2" height="15.0" fill="rgb(209,93,27)" rx="2" ry="2" />
<text x="1013.74" y="975.5" ></text>
</g>
<g >
<title>unmap_page_range (3 samples, 0.01%)</title><rect x="1094.6" y="1173" width="0.1" height="15.0" fill="rgb(218,83,2)" rx="2" ry="2" />
<text x="1097.56" y="1183.5" ></text>
</g>
<g >
<title>worker_thread (3 samples, 0.01%)</title><rect x="1076.6" y="1269" width="0.1" height="15.0" fill="rgb(233,11,51)" rx="2" ry="2" />
<text x="1079.63" y="1279.5" ></text>
</g>
<g >
<title>handle_mm_fault (7 samples, 0.02%)</title><rect x="1181.3" y="1221" width="0.3" height="15.0" fill="rgb(213,65,26)" rx="2" ry="2" />
<text x="1184.33" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1026.1" y="901" width="0.1" height="15.0" fill="rgb(241,48,19)" rx="2" ry="2" />
<text x="1029.11" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (24 samples, 0.08%)</title><rect x="1054.9" y="1285" width="0.9" height="15.0" fill="rgb(219,145,23)" rx="2" ry="2" />
<text x="1057.86" y="1295.5" ></text>
</g>
<g >
<title>update_nohz_stats (9 samples, 0.03%)</title><rect x="1082.5" y="1173" width="0.3" height="15.0" fill="rgb(240,116,4)" rx="2" ry="2" />
<text x="1085.46" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="1038.4" y="1061" width="0.2" height="15.0" fill="rgb(223,182,35)" rx="2" ry="2" />
<text x="1041.41" y="1071.5" ></text>
</g>
<g >
<title>__vfs_read (79 samples, 0.27%)</title><rect x="1005.5" y="901" width="3.2" height="15.0" fill="rgb(212,34,49)" rx="2" ry="2" />
<text x="1008.55" y="911.5" ></text>
</g>
<g >
<title>ep_free (5 samples, 0.02%)</title><rect x="1056.9" y="1077" width="0.2" height="15.0" fill="rgb(219,136,2)" rx="2" ry="2" />
<text x="1059.86" y="1087.5" ></text>
</g>
<g >
<title>__hrtimer_next_event_base (3 samples, 0.01%)</title><rect x="1170.7" y="1189" width="0.1" height="15.0" fill="rgb(206,198,38)" rx="2" ry="2" />
<text x="1173.71" y="1199.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="965" width="1.0" height="15.0" fill="rgb(241,205,25)" rx="2" ry="2" />
<text x="1045.05" y="975.5" ></text>
</g>
<g >
<title>update_blocked_averages (94 samples, 0.32%)</title><rect x="1108.9" y="1141" width="3.8" height="15.0" fill="rgb(207,114,44)" rx="2" ry="2" />
<text x="1111.93" y="1151.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (5 samples, 0.02%)</title><rect x="1189.8" y="1221" width="0.2" height="15.0" fill="rgb(254,157,34)" rx="2" ry="2" />
<text x="1192.80" y="1231.5" ></text>
</g>
<g >
<title>load_elf_binary (4 samples, 0.01%)</title><rect x="1189.8" y="1189" width="0.2" height="15.0" fill="rgb(236,47,33)" rx="2" ry="2" />
<text x="1192.84" y="1199.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::read (994 samples, 3.36%)</title><rect x="997.6" y="1109" width="39.7" height="15.0" fill="rgb(237,188,16)" rx="2" ry="2" />
<text x="1000.64" y="1119.5" >DB:..</text>
</g>
<g >
<title>load_balance (12 samples, 0.04%)</title><rect x="1089.1" y="1205" width="0.5" height="15.0" fill="rgb(244,57,6)" rx="2" ry="2" />
<text x="1092.13" y="1215.5" ></text>
</g>
<g >
<title>__madvise (4 samples, 0.01%)</title><rect x="1037.9" y="837" width="0.1" height="15.0" fill="rgb(238,105,5)" rx="2" ry="2" />
<text x="1040.85" y="847.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (6 samples, 0.02%)</title><rect x="1173.7" y="1237" width="0.2" height="15.0" fill="rgb(228,222,6)" rx="2" ry="2" />
<text x="1176.71" y="1247.5" ></text>
</g>
<g >
<title>DB::Block::insert (6 samples, 0.02%)</title><rect x="183.6" y="1157" width="0.3" height="15.0" fill="rgb(240,226,13)" rx="2" ry="2" />
<text x="186.63" y="1167.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (8 samples, 0.03%)</title><rect x="182.8" y="1029" width="0.3" height="15.0" fill="rgb(223,106,33)" rx="2" ry="2" />
<text x="185.79" y="1039.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (5 samples, 0.02%)</title><rect x="1092.7" y="1285" width="0.2" height="15.0" fill="rgb(227,146,37)" rx="2" ry="2" />
<text x="1095.72" y="1295.5" ></text>
</g>
<g >
<title>do_wp_page (40 samples, 0.14%)</title><rect x="90.3" y="981" width="1.6" height="15.0" fill="rgb(205,29,1)" rx="2" ry="2" />
<text x="93.35" y="991.5" ></text>
</g>
<g >
<title>[clickhouse] (16 samples, 0.05%)</title><rect x="1025.6" y="1013" width="0.6" height="15.0" fill="rgb(241,139,30)" rx="2" ry="2" />
<text x="1028.59" y="1023.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (13 samples, 0.04%)</title><rect x="978.0" y="1013" width="0.6" height="15.0" fill="rgb(209,79,5)" rx="2" ry="2" />
<text x="981.03" y="1023.5" ></text>
</g>
<g >
<title>DB::StorageMergeTree::merge (4 samples, 0.01%)</title><rect x="95.2" y="1221" width="0.1" height="15.0" fill="rgb(206,138,17)" rx="2" ry="2" />
<text x="98.18" y="1231.5" ></text>
</g>
<g >
<title>epoll_ctl (10 samples, 0.03%)</title><rect x="1061.9" y="1253" width="0.4" height="15.0" fill="rgb(230,62,51)" rx="2" ry="2" />
<text x="1064.85" y="1263.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (13 samples, 0.04%)</title><rect x="992.6" y="1045" width="0.6" height="15.0" fill="rgb(209,96,25)" rx="2" ry="2" />
<text x="995.65" y="1055.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (3 samples, 0.01%)</title><rect x="1054.3" y="1109" width="0.1" height="15.0" fill="rgb(205,101,50)" rx="2" ry="2" />
<text x="1057.27" y="1119.5" ></text>
</g>
<g >
<title>[clickhouse] (95 samples, 0.32%)</title><rect x="1042.0" y="1301" width="3.8" height="15.0" fill="rgb(245,43,8)" rx="2" ry="2" />
<text x="1045.05" y="1311.5" ></text>
</g>
<g >
<title>find_busiest_group (29 samples, 0.10%)</title><rect x="1073.7" y="1189" width="1.1" height="15.0" fill="rgb(253,133,4)" rx="2" ry="2" />
<text x="1076.67" y="1199.5" ></text>
</g>
<g >
<title>DB::ParserVariableArityOperatorList::parseImpl (28 samples, 0.09%)</title><rect x="210.7" y="661" width="1.2" height="15.0" fill="rgb(228,111,9)" rx="2" ry="2" />
<text x="213.75" y="671.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8 samples, 0.03%)</title><rect x="1025.0" y="661" width="0.3" height="15.0" fill="rgb(237,73,9)" rx="2" ry="2" />
<text x="1027.99" y="671.5" ></text>
</g>
<g >
<title>rcu_nmi_enter (3 samples, 0.01%)</title><rect x="1101.7" y="1173" width="0.2" height="15.0" fill="rgb(231,208,51)" rx="2" ry="2" />
<text x="1104.75" y="1183.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (7 samples, 0.02%)</title><rect x="1015.6" y="565" width="0.3" height="15.0" fill="rgb(213,33,34)" rx="2" ry="2" />
<text x="1018.65" y="575.5" ></text>
</g>
<g >
<title>need_update (4 samples, 0.01%)</title><rect x="1175.6" y="1205" width="0.1" height="15.0" fill="rgb(228,192,10)" rx="2" ry="2" />
<text x="1178.58" y="1215.5" ></text>
</g>
<g >
<title>std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;::compare (3 samples, 0.01%)</title><rect x="1036.9" y="1029" width="0.1" height="15.0" fill="rgb(253,58,16)" rx="2" ry="2" />
<text x="1039.85" y="1039.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (1,743 samples, 5.90%)</title><rect x="10.2" y="1013" width="69.6" height="15.0" fill="rgb(231,164,16)" rx="2" ry="2" />
<text x="13.20" y="1023.5" >DB::Exp..</text>
</g>
<g >
<title>hrtimer_next_event_without (4 samples, 0.01%)</title><rect x="1170.7" y="1205" width="0.2" height="15.0" fill="rgb(248,95,5)" rx="2" ry="2" />
<text x="1173.71" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.07%)</title><rect x="1058.9" y="1285" width="0.9" height="15.0" fill="rgb(205,133,40)" rx="2" ry="2" />
<text x="1061.94" y="1295.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (16 samples, 0.05%)</title><rect x="194.7" y="1109" width="0.7" height="15.0" fill="rgb(247,143,2)" rx="2" ry="2" />
<text x="197.73" y="1119.5" ></text>
</g>
<g >
<title>mmput (31 samples, 0.10%)</title><rect x="1185.2" y="1157" width="1.2" height="15.0" fill="rgb(252,97,51)" rx="2" ry="2" />
<text x="1188.17" y="1167.5" ></text>
</g>
<g >
<title>ret_from_fork (3 samples, 0.01%)</title><rect x="1072.7" y="1301" width="0.1" height="15.0" fill="rgb(217,11,29)" rx="2" ry="2" />
<text x="1075.67" y="1311.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionSum&lt;unsigned long, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt;::add (151 samples, 0.51%)</title><rect x="129.6" y="1173" width="6.1" height="15.0" fill="rgb(225,78,24)" rx="2" ry="2" />
<text x="132.64" y="1183.5" ></text>
</g>
<g >
<title>process_one_work (10 samples, 0.03%)</title><rect x="1073.0" y="1253" width="0.4" height="15.0" fill="rgb(206,187,16)" rx="2" ry="2" />
<text x="1076.03" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="181.3" y="1173" width="0.1" height="15.0" fill="rgb(211,167,4)" rx="2" ry="2" />
<text x="184.28" y="1183.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1068.8" y="1269" width="0.2" height="15.0" fill="rgb(228,182,13)" rx="2" ry="2" />
<text x="1071.76" y="1279.5" ></text>
</g>
<g >
<title>secondary_startup_64 (1,994 samples, 6.75%)</title><rect x="1096.2" y="1301" width="79.6" height="15.0" fill="rgb(205,6,18)" rx="2" ry="2" />
<text x="1099.20" y="1311.5" >secondary..</text>
</g>
<g >
<title>alloc_pages_vma (26 samples, 0.09%)</title><rect x="92.9" y="965" width="1.1" height="15.0" fill="rgb(235,212,52)" rx="2" ry="2" />
<text x="95.94" y="975.5" ></text>
</g>
<g >
<title>ret_from_fork (14 samples, 0.05%)</title><rect x="1076.8" y="1301" width="0.6" height="15.0" fill="rgb(251,167,46)" rx="2" ry="2" />
<text x="1079.83" y="1311.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (37 samples, 0.13%)</title><rect x="210.7" y="853" width="1.4" height="15.0" fill="rgb(214,171,26)" rx="2" ry="2" />
<text x="213.67" y="863.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_create (13 samples, 0.04%)</title><rect x="1043.5" y="1093" width="0.5" height="15.0" fill="rgb(246,46,33)" rx="2" ry="2" />
<text x="1046.52" y="1103.5" ></text>
</g>
<g >
<title>__se_sys_futex (4 samples, 0.01%)</title><rect x="1038.2" y="965" width="0.1" height="15.0" fill="rgb(215,158,54)" rx="2" ry="2" />
<text x="1041.17" y="975.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (14 samples, 0.05%)</title><rect x="1042.4" y="805" width="0.6" height="15.0" fill="rgb(206,4,24)" rx="2" ry="2" />
<text x="1045.41" y="815.5" ></text>
</g>
<g >
<title>memcpy (4 samples, 0.01%)</title><rect x="203.5" y="1045" width="0.2" height="15.0" fill="rgb(254,52,38)" rx="2" ry="2" />
<text x="206.52" y="1055.5" ></text>
</g>
<g >
<title>__do_page_fault (41 samples, 0.14%)</title><rect x="23.4" y="869" width="1.7" height="15.0" fill="rgb(241,189,18)" rx="2" ry="2" />
<text x="26.42" y="879.5" ></text>
</g>
<g >
<title>arena_decay (7 samples, 0.02%)</title><rect x="97.8" y="1125" width="0.3" height="15.0" fill="rgb(230,156,25)" rx="2" ry="2" />
<text x="100.77" y="1135.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::worker (12 samples, 0.04%)</title><rect x="96.0" y="1253" width="0.5" height="15.0" fill="rgb(229,69,9)" rx="2" ry="2" />
<text x="99.02" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="1016.5" y="997" width="0.3" height="15.0" fill="rgb(240,41,28)" rx="2" ry="2" />
<text x="1019.49" y="1007.5" ></text>
</g>
<g >
<title>get_cpu_device (3 samples, 0.01%)</title><rect x="1170.0" y="1205" width="0.1" height="15.0" fill="rgb(244,26,5)" rx="2" ry="2" />
<text x="1172.99" y="1215.5" ></text>
</g>
<g >
<title>process_one_work (6 samples, 0.02%)</title><rect x="1083.4" y="1253" width="0.2" height="15.0" fill="rgb(231,110,38)" rx="2" ry="2" />
<text x="1086.38" y="1263.5" ></text>
</g>
<g >
<title>x86_pmu_disable_all (8 samples, 0.03%)</title><rect x="1100.7" y="1077" width="0.3" height="15.0" fill="rgb(231,37,43)" rx="2" ry="2" />
<text x="1103.71" y="1087.5" ></text>
</g>
<g >
<title>__x64_sys_execve (4 samples, 0.01%)</title><rect x="1094.7" y="1253" width="0.1" height="15.0" fill="rgb(226,127,24)" rx="2" ry="2" />
<text x="1097.68" y="1263.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (45 samples, 0.15%)</title><rect x="210.6" y="981" width="1.8" height="15.0" fill="rgb(236,24,17)" rx="2" ry="2" />
<text x="213.63" y="991.5" ></text>
</g>
<g >
<title>load_balance (12 samples, 0.04%)</title><rect x="1081.0" y="1205" width="0.5" height="15.0" fill="rgb(239,29,34)" rx="2" ry="2" />
<text x="1083.98" y="1215.5" ></text>
</g>
<g >
<title>large_ralloc (11 samples, 0.04%)</title><rect x="977.5" y="997" width="0.5" height="15.0" fill="rgb(247,164,39)" rx="2" ry="2" />
<text x="980.51" y="1007.5" ></text>
</g>
<g >
<title>__madvise (8 samples, 0.03%)</title><rect x="182.8" y="1013" width="0.3" height="15.0" fill="rgb(227,95,5)" rx="2" ry="2" />
<text x="185.79" y="1023.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="1032.4" y="837" width="0.1" height="15.0" fill="rgb(246,90,35)" rx="2" ry="2" />
<text x="1035.42" y="847.5" ></text>
</g>
<g >
<title>call_function_interrupt (19 samples, 0.06%)</title><rect x="978.7" y="1061" width="0.8" height="15.0" fill="rgb(252,146,32)" rx="2" ry="2" />
<text x="981.71" y="1071.5" ></text>
</g>
<g >
<title>menu_reflect (4 samples, 0.01%)</title><rect x="1168.3" y="1237" width="0.2" height="15.0" fill="rgb(217,195,8)" rx="2" ry="2" />
<text x="1171.32" y="1247.5" ></text>
</g>
<g >
<title>[dash] (18 samples, 0.06%)</title><rect x="1048.5" y="1285" width="0.7" height="15.0" fill="rgb(236,117,16)" rx="2" ry="2" />
<text x="1051.48" y="1295.5" ></text>
</g>
<g >
<title>DB::Join::joinBlockImpl&lt; (19,170 samples, 64.88%)</title><rect x="231.0" y="1109" width="765.6" height="15.0" fill="rgb(233,181,13)" rx="2" ry="2" />
<text x="234.03" y="1119.5" >DB::Join::joinBlockImpl&lt;</text>
</g>
<g >
<title>DB::ColumnString::insertFrom (307 samples, 1.04%)</title><rect x="195.4" y="1109" width="12.3" height="15.0" fill="rgb(211,209,41)" rx="2" ry="2" />
<text x="198.41" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1187.3" y="1269" width="0.3" height="15.0" fill="rgb(252,37,7)" rx="2" ry="2" />
<text x="1190.32" y="1279.5" ></text>
</g>
<g >
<title>kthread (8 samples, 0.03%)</title><rect x="1080.1" y="1285" width="0.4" height="15.0" fill="rgb(229,1,8)" rx="2" ry="2" />
<text x="1083.14" y="1295.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (11 samples, 0.04%)</title><rect x="94.2" y="949" width="0.5" height="15.0" fill="rgb(230,189,45)" rx="2" ry="2" />
<text x="97.22" y="959.5" ></text>
</g>
<g >
<title>release_pages (3 samples, 0.01%)</title><rect x="1025.9" y="629" width="0.1" height="15.0" fill="rgb(210,89,25)" rx="2" ry="2" />
<text x="1028.91" y="639.5" ></text>
</g>
<g >
<title>DB::CompressionCodecFactory::get (6 samples, 0.02%)</title><rect x="1025.9" y="933" width="0.2" height="15.0" fill="rgb(220,185,32)" rx="2" ry="2" />
<text x="1028.87" y="943.5" ></text>
</g>
<g >
<title>memcpy (429 samples, 1.45%)</title><rect x="53.6" y="805" width="17.1" height="15.0" fill="rgb(214,98,14)" rx="2" ry="2" />
<text x="56.57" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1178.1" y="1253" width="0.3" height="15.0" fill="rgb(242,20,7)" rx="2" ry="2" />
<text x="1181.10" y="1263.5" ></text>
</g>
<g >
<title>__d_alloc (7 samples, 0.02%)</title><rect x="1061.4" y="1141" width="0.3" height="15.0" fill="rgb(214,153,11)" rx="2" ry="2" />
<text x="1064.37" y="1151.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (248 samples, 0.84%)</title><rect x="1155.7" y="1189" width="9.9" height="15.0" fill="rgb(216,225,13)" rx="2" ry="2" />
<text x="1158.66" y="1199.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (22 samples, 0.07%)</title><rect x="1091.8" y="1301" width="0.9" height="15.0" fill="rgb(226,54,0)" rx="2" ry="2" />
<text x="1094.84" y="1311.5" ></text>
</g>
<g >
<title>smp_call_function_many (3 samples, 0.01%)</title><rect x="1010.6" y="821" width="0.1" height="15.0" fill="rgb(237,82,16)" rx="2" ry="2" />
<text x="1013.58" y="831.5" ></text>
</g>
<g >
<title>try_to_wake_up (8 samples, 0.03%)</title><rect x="988.6" y="917" width="0.3" height="15.0" fill="rgb(225,169,39)" rx="2" ry="2" />
<text x="991.57" y="927.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (4 samples, 0.01%)</title><rect x="1187.3" y="1237" width="0.2" height="15.0" fill="rgb(243,218,35)" rx="2" ry="2" />
<text x="1190.32" y="1247.5" ></text>
</g>
<g >
<title>copyout (50 samples, 0.17%)</title><rect x="1005.5" y="805" width="2.0" height="15.0" fill="rgb(214,60,26)" rx="2" ry="2" />
<text x="1008.55" y="815.5" ></text>
</g>
<g >
<title>release_pages (3 samples, 0.01%)</title><rect x="201.4" y="805" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="204.44" y="815.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="1125" width="1.0" height="15.0" fill="rgb(220,218,38)" rx="2" ry="2" />
<text x="1045.05" y="1135.5" ></text>
</g>
<g >
<title>unmap_vmas (19 samples, 0.06%)</title><rect x="1185.6" y="1125" width="0.8" height="15.0" fill="rgb(246,140,46)" rx="2" ry="2" />
<text x="1188.65" y="1135.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (4 samples, 0.01%)</title><rect x="1084.2" y="1253" width="0.2" height="15.0" fill="rgb(236,35,47)" rx="2" ry="2" />
<text x="1087.22" y="1263.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (9 samples, 0.03%)</title><rect x="1023.4" y="933" width="0.4" height="15.0" fill="rgb(205,99,0)" rx="2" ry="2" />
<text x="1026.40" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1039.6" y="1013" width="0.2" height="15.0" fill="rgb(219,123,26)" rx="2" ry="2" />
<text x="1042.65" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (12 samples, 0.04%)</title><rect x="1054.3" y="1269" width="0.4" height="15.0" fill="rgb(237,141,42)" rx="2" ry="2" />
<text x="1057.27" y="1279.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="1052.2" y="1237" width="0.1" height="15.0" fill="rgb(225,172,22)" rx="2" ry="2" />
<text x="1055.19" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.04%)</title><rect x="1054.3" y="1285" width="0.4" height="15.0" fill="rgb(231,187,22)" rx="2" ry="2" />
<text x="1057.27" y="1295.5" ></text>
</g>
<g >
<title>do_group_exit (8 samples, 0.03%)</title><rect x="1093.2" y="1253" width="0.4" height="15.0" fill="rgb(223,221,30)" rx="2" ry="2" />
<text x="1096.24" y="1263.5" ></text>
</g>
<g >
<title>radix_tree_lookup_slot (3 samples, 0.01%)</title><rect x="1023.0" y="741" width="0.1" height="15.0" fill="rgb(230,81,44)" rx="2" ry="2" />
<text x="1025.96" y="751.5" ></text>
</g>
<g >
<title>filename_lookup (4 samples, 0.01%)</title><rect x="1039.8" y="981" width="0.2" height="15.0" fill="rgb(230,57,44)" rx="2" ry="2" />
<text x="1042.85" y="991.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="232.3" y="1013" width="0.1" height="15.0" fill="rgb(244,158,9)" rx="2" ry="2" />
<text x="235.27" y="1023.5" ></text>
</g>
<g >
<title>tcp_sendmsg_locked (39 samples, 0.13%)</title><rect x="1046.0" y="1189" width="1.5" height="15.0" fill="rgb(250,43,16)" rx="2" ry="2" />
<text x="1048.96" y="1199.5" ></text>
</g>
<g >
<title>ip_rcv (13 samples, 0.04%)</title><rect x="1167.2" y="1061" width="0.5" height="15.0" fill="rgb(243,95,9)" rx="2" ry="2" />
<text x="1170.20" y="1071.5" ></text>
</g>
<g >
<title>do_softirq (17 samples, 0.06%)</title><rect x="1046.5" y="1045" width="0.7" height="15.0" fill="rgb(224,186,36)" rx="2" ry="2" />
<text x="1049.52" y="1055.5" ></text>
</g>
<g >
<title>od_dbs_update (4 samples, 0.01%)</title><rect x="1075.4" y="1221" width="0.2" height="15.0" fill="rgb(249,31,28)" rx="2" ry="2" />
<text x="1078.39" y="1231.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1093.6" y="1285" width="0.1" height="15.0" fill="rgb(209,212,10)" rx="2" ry="2" />
<text x="1096.56" y="1295.5" ></text>
</g>
<g >
<title>DB::MergeTreeBaseSelectBlockInputStream::readImpl (1,099 samples, 3.72%)</title><rect x="996.7" y="1141" width="43.9" height="15.0" fill="rgb(207,25,7)" rx="2" ry="2" />
<text x="999.68" y="1151.5" >DB::..</text>
</g>
<g >
<title>load_balance (44 samples, 0.15%)</title><rect x="1089.9" y="1189" width="1.7" height="15.0" fill="rgb(220,167,8)" rx="2" ry="2" />
<text x="1092.89" y="1199.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (23 samples, 0.08%)</title><rect x="210.8" y="133" width="0.9" height="15.0" fill="rgb(254,206,22)" rx="2" ry="2" />
<text x="213.79" y="143.5" ></text>
</g>
<g >
<title>migrate_pages (7 samples, 0.02%)</title><rect x="1035.6" y="645" width="0.3" height="15.0" fill="rgb(211,182,1)" rx="2" ry="2" />
<text x="1038.62" y="655.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (100 samples, 0.34%)</title><rect x="1032.5" y="949" width="4.0" height="15.0" fill="rgb(209,131,3)" rx="2" ry="2" />
<text x="1035.54" y="959.5" ></text>
</g>
<g >
<title>load_balance (8 samples, 0.03%)</title><rect x="1081.9" y="1205" width="0.3" height="15.0" fill="rgb(245,163,37)" rx="2" ry="2" />
<text x="1084.86" y="1215.5" ></text>
</g>
<g >
<title>pollwake (3 samples, 0.01%)</title><rect x="1083.5" y="1157" width="0.1" height="15.0" fill="rgb(226,77,42)" rx="2" ry="2" />
<text x="1086.50" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (18 samples, 0.06%)</title><rect x="1030.3" y="981" width="0.8" height="15.0" fill="rgb(223,31,25)" rx="2" ry="2" />
<text x="1033.35" y="991.5" ></text>
</g>
<g >
<title>mprotect_fixup (4 samples, 0.01%)</title><rect x="1092.1" y="1205" width="0.2" height="15.0" fill="rgb(246,27,37)" rx="2" ry="2" />
<text x="1095.12" y="1215.5" ></text>
</g>
<g >
<title>task_work_run (5 samples, 0.02%)</title><rect x="993.0" y="1029" width="0.2" height="15.0" fill="rgb(243,216,29)" rx="2" ry="2" />
<text x="995.97" y="1039.5" ></text>
</g>
<g >
<title>kworker/18:0-ev (54 samples, 0.18%)</title><rect x="1072.8" y="1317" width="2.2" height="15.0" fill="rgb(207,66,32)" rx="2" ry="2" />
<text x="1075.79" y="1327.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (52 samples, 0.18%)</title><rect x="1106.9" y="1141" width="2.0" height="15.0" fill="rgb(248,34,12)" rx="2" ry="2" />
<text x="1109.86" y="1151.5" ></text>
</g>
<g >
<title>ksys_read (14 samples, 0.05%)</title><rect x="1022.5" y="917" width="0.6" height="15.0" fill="rgb(216,30,49)" rx="2" ry="2" />
<text x="1025.52" y="927.5" ></text>
</g>
<g >
<title>proc_reg_read (7 samples, 0.02%)</title><rect x="1055.1" y="1205" width="0.2" height="15.0" fill="rgb(244,67,50)" rx="2" ry="2" />
<text x="1058.06" y="1215.5" ></text>
</g>
<g >
<title>__vfs_read (19 samples, 0.06%)</title><rect x="1055.0" y="1221" width="0.8" height="15.0" fill="rgb(238,48,32)" rx="2" ry="2" />
<text x="1058.02" y="1231.5" ></text>
</g>
<g >
<title>vfs_statx (4 samples, 0.01%)</title><rect x="1039.8" y="997" width="0.2" height="15.0" fill="rgb(235,97,39)" rx="2" ry="2" />
<text x="1042.85" y="1007.5" ></text>
</g>
<g >
<title>update_curr (3 samples, 0.01%)</title><rect x="1073.5" y="1189" width="0.1" height="15.0" fill="rgb(208,105,52)" rx="2" ry="2" />
<text x="1076.47" y="1199.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (4 samples, 0.01%)</title><rect x="1188.8" y="1237" width="0.1" height="15.0" fill="rgb(242,72,53)" rx="2" ry="2" />
<text x="1191.76" y="1247.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionDataHelper&lt;DB::AggregateFunctionSumData&lt;unsigned long&gt;, DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt; &gt;::destroy (6 samples, 0.02%)</title><rect x="79.1" y="901" width="0.3" height="15.0" fill="rgb(216,8,11)" rx="2" ry="2" />
<text x="82.13" y="911.5" ></text>
</g>
<g >
<title>get_page_from_freelist (11 samples, 0.04%)</title><rect x="24.2" y="757" width="0.4" height="15.0" fill="rgb(245,152,28)" rx="2" ry="2" />
<text x="27.18" y="767.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (29 samples, 0.10%)</title><rect x="1026.2" y="981" width="1.2" height="15.0" fill="rgb(238,157,18)" rx="2" ry="2" />
<text x="1029.23" y="991.5" ></text>
</g>
<g >
<title>DB::ColumnString::insertData (16 samples, 0.05%)</title><rect x="74.5" y="885" width="0.6" height="15.0" fill="rgb(250,198,44)" rx="2" ry="2" />
<text x="77.49" y="895.5" ></text>
</g>
<g >
<title>vfs_read (43 samples, 0.15%)</title><rect x="1023.8" y="853" width="1.7" height="15.0" fill="rgb(235,83,45)" rx="2" ry="2" />
<text x="1026.80" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="182.6" y="965" width="0.1" height="15.0" fill="rgb(234,222,43)" rx="2" ry="2" />
<text x="185.55" y="975.5" ></text>
</g>
<g >
<title>lookup_fast (3 samples, 0.01%)</title><rect x="1052.9" y="1157" width="0.1" height="15.0" fill="rgb(233,199,22)" rx="2" ry="2" />
<text x="1055.87" y="1167.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="277" width="0.9" height="15.0" fill="rgb(240,106,42)" rx="2" ry="2" />
<text x="213.79" y="287.5" ></text>
</g>
<g >
<title>pick_next_task_fair (42 samples, 0.14%)</title><rect x="1078.3" y="1221" width="1.7" height="15.0" fill="rgb(227,66,52)" rx="2" ry="2" />
<text x="1081.31" y="1231.5" ></text>
</g>
<g >
<title>exit_mmap (8 samples, 0.03%)</title><rect x="1084.9" y="1205" width="0.3" height="15.0" fill="rgb(225,198,53)" rx="2" ry="2" />
<text x="1087.85" y="1215.5" ></text>
</g>
<g >
<title>unmap_vmas (6 samples, 0.02%)</title><rect x="1093.3" y="1189" width="0.3" height="15.0" fill="rgb(221,177,31)" rx="2" ry="2" />
<text x="1096.32" y="1199.5" ></text>
</g>
<g >
<title>migrate_pages (3 samples, 0.01%)</title><rect x="1010.6" y="917" width="0.1" height="15.0" fill="rgb(223,169,22)" rx="2" ry="2" />
<text x="1013.58" y="927.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (6 samples, 0.02%)</title><rect x="203.8" y="1061" width="0.3" height="15.0" fill="rgb(224,68,30)" rx="2" ry="2" />
<text x="206.84" y="1071.5" ></text>
</g>
<g >
<title>DB::ParserNullityChecking::parseImpl (26 samples, 0.09%)</title><rect x="210.7" y="581" width="1.1" height="15.0" fill="rgb(213,75,11)" rx="2" ry="2" />
<text x="213.75" y="591.5" ></text>
</g>
<g >
<title>vfs_read (79 samples, 0.27%)</title><rect x="1005.5" y="917" width="3.2" height="15.0" fill="rgb(209,11,49)" rx="2" ry="2" />
<text x="1008.55" y="927.5" ></text>
</g>
<g >
<title>__se_sys_madvise (5 samples, 0.02%)</title><rect x="181.5" y="1029" width="0.2" height="15.0" fill="rgb(207,143,44)" rx="2" ry="2" />
<text x="184.48" y="1039.5" ></text>
</g>
<g >
<title>__sched_text_start (4 samples, 0.01%)</title><rect x="1067.4" y="1109" width="0.2" height="15.0" fill="rgb(243,95,1)" rx="2" ry="2" />
<text x="1070.40" y="1119.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (22 samples, 0.07%)</title><rect x="11.6" y="949" width="0.8" height="15.0" fill="rgb(216,26,23)" rx="2" ry="2" />
<text x="14.56" y="959.5" ></text>
</g>
<g >
<title>unmap_region (4 samples, 0.01%)</title><rect x="10.2" y="837" width="0.2" height="15.0" fill="rgb(230,69,17)" rx="2" ry="2" />
<text x="13.24" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1085.2" y="1173" width="0.2" height="15.0" fill="rgb(215,85,13)" rx="2" ry="2" />
<text x="1088.21" y="1183.5" ></text>
</g>
<g >
<title>__indirect_thunk_start (3 samples, 0.01%)</title><rect x="986.5" y="1077" width="0.1" height="15.0" fill="rgb(251,93,6)" rx="2" ry="2" />
<text x="989.46" y="1087.5" ></text>
</g>
<g >
<title>large_dalloc (4 samples, 0.01%)</title><rect x="200.7" y="1013" width="0.2" height="15.0" fill="rgb(221,37,21)" rx="2" ry="2" />
<text x="203.72" y="1023.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (4 samples, 0.01%)</title><rect x="211.2" y="53" width="0.1" height="15.0" fill="rgb(211,122,9)" rx="2" ry="2" />
<text x="214.19" y="63.5" ></text>
</g>
<g >
<title>exit_mmap (11 samples, 0.04%)</title><rect x="1054.3" y="1141" width="0.4" height="15.0" fill="rgb(232,112,38)" rx="2" ry="2" />
<text x="1057.27" y="1151.5" ></text>
</g>
<g >
<title>DB::Client::process (72 samples, 0.24%)</title><rect x="1056.0" y="1237" width="2.9" height="15.0" fill="rgb(235,220,30)" rx="2" ry="2" />
<text x="1059.02" y="1247.5" ></text>
</g>
<g >
<title>malloc_default (3 samples, 0.01%)</title><rect x="1027.5" y="981" width="0.1" height="15.0" fill="rgb(239,202,42)" rx="2" ry="2" />
<text x="1030.51" y="991.5" ></text>
</g>
<g >
<title>zap_page_range (8 samples, 0.03%)</title><rect x="182.8" y="949" width="0.3" height="15.0" fill="rgb(207,162,9)" rx="2" ry="2" />
<text x="185.79" y="959.5" ></text>
</g>
<g >
<title>DB::Join::MapsTemplate&lt;DB::JoinStuff::WithFlags&lt;DB::RowRef, false&gt; &gt;::~MapsTemplate (14 samples, 0.05%)</title><rect x="1042.4" y="869" width="0.6" height="15.0" fill="rgb(234,40,53)" rx="2" ry="2" />
<text x="1045.41" y="879.5" ></text>
</g>
<g >
<title>extents_alloc (5 samples, 0.02%)</title><rect x="205.0" y="981" width="0.2" height="15.0" fill="rgb(239,71,52)" rx="2" ry="2" />
<text x="208.00" y="991.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned long&gt;::~ColumnVector (5 samples, 0.02%)</title><rect x="181.5" y="1205" width="0.2" height="15.0" fill="rgb(228,201,38)" rx="2" ry="2" />
<text x="184.48" y="1215.5" ></text>
</g>
<g >
<title>memcpy (4 samples, 0.01%)</title><rect x="32.4" y="725" width="0.2" height="15.0" fill="rgb(250,111,11)" rx="2" ry="2" />
<text x="35.40" y="735.5" ></text>
</g>
<g >
<title>tcache_alloc_small_hard (11 samples, 0.04%)</title><rect x="97.8" y="1141" width="0.4" height="15.0" fill="rgb(249,197,2)" rx="2" ry="2" />
<text x="100.77" y="1151.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1039.8" y="1029" width="0.2" height="15.0" fill="rgb(250,136,42)" rx="2" ry="2" />
<text x="1042.85" y="1039.5" ></text>
</g>
<g >
<title>ip6_input_finish (8 samples, 0.03%)</title><rect x="1059.4" y="965" width="0.3" height="15.0" fill="rgb(211,18,19)" rx="2" ry="2" />
<text x="1062.42" y="975.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (3 samples, 0.01%)</title><rect x="977.8" y="789" width="0.1" height="15.0" fill="rgb(212,182,36)" rx="2" ry="2" />
<text x="980.79" y="799.5" ></text>
</g>
<g >
<title>idle_cpu (3 samples, 0.01%)</title><rect x="1106.7" y="1125" width="0.1" height="15.0" fill="rgb(254,154,27)" rx="2" ry="2" />
<text x="1109.70" y="1135.5" ></text>
</g>
<g >
<title>load_balance (29 samples, 0.10%)</title><rect x="1073.7" y="1205" width="1.1" height="15.0" fill="rgb(221,212,54)" rx="2" ry="2" />
<text x="1076.67" y="1215.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (43 samples, 0.15%)</title><rect x="1014.3" y="965" width="1.7" height="15.0" fill="rgb(244,104,3)" rx="2" ry="2" />
<text x="1017.33" y="975.5" ></text>
</g>
<g >
<title>irq_work_run_list (15 samples, 0.05%)</title><rect x="1165.8" y="1173" width="0.6" height="15.0" fill="rgb(206,194,14)" rx="2" ry="2" />
<text x="1168.76" y="1183.5" ></text>
</g>
<g >
<title>kthread (3 samples, 0.01%)</title><rect x="1075.2" y="1285" width="0.1" height="15.0" fill="rgb(250,209,2)" rx="2" ry="2" />
<text x="1078.19" y="1295.5" ></text>
</g>
<g >
<title>arena_decay (4 samples, 0.01%)</title><rect x="182.6" y="1061" width="0.1" height="15.0" fill="rgb(245,166,1)" rx="2" ry="2" />
<text x="185.55" y="1071.5" ></text>
</g>
<g >
<title>__madvise (3 samples, 0.01%)</title><rect x="230.0" y="997" width="0.1" height="15.0" fill="rgb(227,217,9)" rx="2" ry="2" />
<text x="232.95" y="1007.5" ></text>
</g>
<g >
<title>filename_lookup (3 samples, 0.01%)</title><rect x="1040.1" y="1013" width="0.1" height="15.0" fill="rgb(229,106,31)" rx="2" ry="2" />
<text x="1043.09" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1025.9" y="917" width="0.2" height="15.0" fill="rgb(229,127,12)" rx="2" ry="2" />
<text x="1028.87" y="927.5" ></text>
</g>
<g >
<title>page_fault (10 samples, 0.03%)</title><rect x="30.1" y="901" width="0.4" height="15.0" fill="rgb(246,42,16)" rx="2" ry="2" />
<text x="33.09" y="911.5" ></text>
</g>
<g >
<title>try_to_unmap_one (3 samples, 0.01%)</title><rect x="1010.6" y="869" width="0.1" height="15.0" fill="rgb(227,165,29)" rx="2" ry="2" />
<text x="1013.58" y="879.5" ></text>
</g>
<g >
<title>__se_sys_futex (21 samples, 0.07%)</title><rect x="1044.8" y="1125" width="0.8" height="15.0" fill="rgb(213,112,18)" rx="2" ry="2" />
<text x="1047.80" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1038.2" y="997" width="0.1" height="15.0" fill="rgb(247,27,20)" rx="2" ry="2" />
<text x="1041.17" y="1007.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (7 samples, 0.02%)</title><rect x="1092.4" y="1237" width="0.3" height="15.0" fill="rgb(232,106,11)" rx="2" ry="2" />
<text x="1095.40" y="1247.5" ></text>
</g>
<g >
<title>ksys_read (3 samples, 0.01%)</title><rect x="1026.1" y="885" width="0.1" height="15.0" fill="rgb(228,49,13)" rx="2" ry="2" />
<text x="1029.11" y="895.5" ></text>
</g>
<g >
<title>ip6_xmit (12 samples, 0.04%)</title><rect x="1059.3" y="1157" width="0.4" height="15.0" fill="rgb(225,163,30)" rx="2" ry="2" />
<text x="1062.26" y="1167.5" ></text>
</g>
<g >
<title>page_fault (22 samples, 0.07%)</title><rect x="1177.1" y="1285" width="0.8" height="15.0" fill="rgb(219,93,28)" rx="2" ry="2" />
<text x="1180.06" y="1295.5" ></text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="986.0" y="1013" width="0.1" height="15.0" fill="rgb(243,196,26)" rx="2" ry="2" />
<text x="988.98" y="1023.5" ></text>
</g>
<g >
<title>__lru_cache_add (3 samples, 0.01%)</title><rect x="1035.2" y="661" width="0.1" height="15.0" fill="rgb(235,66,4)" rx="2" ry="2" />
<text x="1038.18" y="671.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (126 samples, 0.43%)</title><rect x="1031.7" y="965" width="5.0" height="15.0" fill="rgb(244,172,32)" rx="2" ry="2" />
<text x="1034.66" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="204.4" y="901" width="0.2" height="15.0" fill="rgb(214,192,42)" rx="2" ry="2" />
<text x="207.36" y="911.5" ></text>
</g>
<g >
<title>arena_decay (6 samples, 0.02%)</title><rect x="1025.9" y="821" width="0.2" height="15.0" fill="rgb(225,135,22)" rx="2" ry="2" />
<text x="1028.87" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1040.1" y="1077" width="0.1" height="15.0" fill="rgb(254,103,28)" rx="2" ry="2" />
<text x="1043.09" y="1087.5" ></text>
</g>
<g >
<title>__select (4 samples, 0.01%)</title><rect x="1094.9" y="1285" width="0.1" height="15.0" fill="rgb(232,110,8)" rx="2" ry="2" />
<text x="1097.88" y="1295.5" ></text>
</g>
<g >
<title>core_sys_select (4 samples, 0.01%)</title><rect x="1067.4" y="1189" width="0.2" height="15.0" fill="rgb(217,111,13)" rx="2" ry="2" />
<text x="1070.40" y="1199.5" ></text>
</g>
<g >
<title>try_to_wake_up (28 samples, 0.09%)</title><rect x="1107.8" y="1029" width="1.1" height="15.0" fill="rgb(212,165,33)" rx="2" ry="2" />
<text x="1110.78" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1009.3" y="1013" width="0.1" height="15.0" fill="rgb(240,184,10)" rx="2" ry="2" />
<text x="1012.30" y="1023.5" ></text>
</g>
<g >
<title>memcpy (19 samples, 0.06%)</title><rect x="29.7" y="917" width="0.8" height="15.0" fill="rgb(249,65,54)" rx="2" ry="2" />
<text x="32.73" y="927.5" ></text>
</g>
<g >
<title>__vfs_read (95 samples, 0.32%)</title><rect x="1032.7" y="853" width="3.8" height="15.0" fill="rgb(247,97,29)" rx="2" ry="2" />
<text x="1035.70" y="863.5" ></text>
</g>
<g >
<title>[unknown] (64 samples, 0.22%)</title><rect x="1067.7" y="1301" width="2.6" height="15.0" fill="rgb(219,144,45)" rx="2" ry="2" />
<text x="1070.72" y="1311.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt; &gt;::addFree (14 samples, 0.05%)</title><rect x="29.0" y="917" width="0.5" height="15.0" fill="rgb(209,9,27)" rx="2" ry="2" />
<text x="31.97" y="927.5" ></text>
</g>
<g >
<title>large_dalloc (4 samples, 0.01%)</title><rect x="181.1" y="1173" width="0.2" height="15.0" fill="rgb(215,223,39)" rx="2" ry="2" />
<text x="184.12" y="1183.5" ></text>
</g>
<g >
<title>DB::AggregatingBlockInputStream::~AggregatingBlockInputStream (9 samples, 0.03%)</title><rect x="1042.0" y="949" width="0.4" height="15.0" fill="rgb(211,182,1)" rx="2" ry="2" />
<text x="1045.05" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1036.6" y="869" width="0.1" height="15.0" fill="rgb(248,94,30)" rx="2" ry="2" />
<text x="1039.57" y="879.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4 samples, 0.01%)</title><rect x="1067.4" y="1141" width="0.2" height="15.0" fill="rgb(233,45,42)" rx="2" ry="2" />
<text x="1070.40" y="1151.5" ></text>
</g>
<g >
<title>page_fault (3 samples, 0.01%)</title><rect x="74.8" y="789" width="0.1" height="15.0" fill="rgb(205,126,22)" rx="2" ry="2" />
<text x="77.77" y="799.5" ></text>
</g>
<g >
<title>__sched_text_start (6 samples, 0.02%)</title><rect x="1080.2" y="1237" width="0.3" height="15.0" fill="rgb(252,139,38)" rx="2" ry="2" />
<text x="1083.22" y="1247.5" ></text>
</g>
<g >
<title>handle_mm_fault (50 samples, 0.17%)</title><rect x="26.7" y="869" width="2.0" height="15.0" fill="rgb(242,111,14)" rx="2" ry="2" />
<text x="29.69" y="879.5" ></text>
</g>
<g >
<title>release_pages (8 samples, 0.03%)</title><rect x="1042.6" y="693" width="0.4" height="15.0" fill="rgb(211,117,39)" rx="2" ry="2" />
<text x="1045.64" y="703.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::enumerateStreams (16 samples, 0.05%)</title><rect x="1038.6" y="1077" width="0.6" height="15.0" fill="rgb(252,84,36)" rx="2" ry="2" />
<text x="1041.57" y="1087.5" ></text>
</g>
<g >
<title>tick_sched_timer (32 samples, 0.11%)</title><rect x="986.9" y="1013" width="1.3" height="15.0" fill="rgb(232,16,25)" rx="2" ry="2" />
<text x="989.94" y="1023.5" ></text>
</g>
<g >
<title>remote_function (4 samples, 0.01%)</title><rect x="1085.3" y="981" width="0.1" height="15.0" fill="rgb(242,121,50)" rx="2" ry="2" />
<text x="1088.25" y="991.5" ></text>
</g>
<g >
<title>update_curr (3 samples, 0.01%)</title><rect x="987.9" y="949" width="0.2" height="15.0" fill="rgb(228,62,13)" rx="2" ry="2" />
<text x="990.94" y="959.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (3 samples, 0.01%)</title><rect x="1042.0" y="821" width="0.2" height="15.0" fill="rgb(242,183,16)" rx="2" ry="2" />
<text x="1045.05" y="831.5" ></text>
</g>
<g >
<title>large_dalloc (4 samples, 0.01%)</title><rect x="232.3" y="1061" width="0.1" height="15.0" fill="rgb(219,40,29)" rx="2" ry="2" />
<text x="235.27" y="1071.5" ></text>
</g>
<g >
<title>find_busiest_group (79 samples, 0.27%)</title><rect x="1063.1" y="1077" width="3.1" height="15.0" fill="rgb(217,222,4)" rx="2" ry="2" />
<text x="1066.09" y="1087.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (3 samples, 0.01%)</title><rect x="24.0" y="773" width="0.1" height="15.0" fill="rgb(228,137,54)" rx="2" ry="2" />
<text x="26.98" y="783.5" ></text>
</g>
<g >
<title>__ia32_sys_exit_group (8 samples, 0.03%)</title><rect x="1093.2" y="1269" width="0.4" height="15.0" fill="rgb(252,160,34)" rx="2" ry="2" />
<text x="1096.24" y="1279.5" ></text>
</g>
<g >
<title>clickhouse-serv (176 samples, 0.60%)</title><rect x="1059.8" y="1317" width="7.0" height="15.0" fill="rgb(246,182,3)" rx="2" ry="2" />
<text x="1062.82" y="1327.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (4 samples, 0.01%)</title><rect x="1025.9" y="661" width="0.1" height="15.0" fill="rgb(207,1,5)" rx="2" ry="2" />
<text x="1028.87" y="671.5" ></text>
</g>
<g >
<title>unmap_region (11 samples, 0.04%)</title><rect x="79.4" y="789" width="0.4" height="15.0" fill="rgb(252,29,18)" rx="2" ry="2" />
<text x="82.36" y="799.5" ></text>
</g>
<g >
<title>DB::IDataType::deserializeBinaryBulkWithMultipleStreams (128 samples, 0.43%)</title><rect x="1031.6" y="1029" width="5.1" height="15.0" fill="rgb(245,195,33)" rx="2" ry="2" />
<text x="1034.62" y="1039.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge_delay (3 samples, 0.01%)</title><rect x="206.8" y="949" width="0.1" height="15.0" fill="rgb(211,165,35)" rx="2" ry="2" />
<text x="209.75" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1025.9" y="741" width="0.2" height="15.0" fill="rgb(208,95,30)" rx="2" ry="2" />
<text x="1028.87" y="751.5" ></text>
</g>
<g >
<title>DB::Client::main (72 samples, 0.24%)</title><rect x="1056.0" y="1253" width="2.9" height="15.0" fill="rgb(253,18,49)" rx="2" ry="2" />
<text x="1059.02" y="1263.5" ></text>
</g>
<g >
<title>ovl_read_iter (43 samples, 0.15%)</title><rect x="1023.8" y="821" width="1.7" height="15.0" fill="rgb(235,203,44)" rx="2" ry="2" />
<text x="1026.80" y="831.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (13 samples, 0.04%)</title><rect x="978.0" y="1029" width="0.6" height="15.0" fill="rgb(239,80,19)" rx="2" ry="2" />
<text x="981.03" y="1039.5" ></text>
</g>
<g >
<title>find_lock_entry (4 samples, 0.01%)</title><rect x="1022.9" y="773" width="0.2" height="15.0" fill="rgb(227,128,32)" rx="2" ry="2" />
<text x="1025.92" y="783.5" ></text>
</g>
<g >
<title>__xstat64 (4 samples, 0.01%)</title><rect x="1039.0" y="1045" width="0.2" height="15.0" fill="rgb(247,195,38)" rx="2" ry="2" />
<text x="1042.01" y="1055.5" ></text>
</g>
<g >
<title>DB::BlockIO::operator= (24 samples, 0.08%)</title><rect x="1042.0" y="1173" width="1.0" height="15.0" fill="rgb(220,80,9)" rx="2" ry="2" />
<text x="1045.05" y="1183.5" ></text>
</g>
<g >
<title>clear_page_rep (5 samples, 0.02%)</title><rect x="12.2" y="821" width="0.2" height="15.0" fill="rgb(222,28,4)" rx="2" ry="2" />
<text x="15.16" y="831.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3 samples, 0.01%)</title><rect x="203.4" y="933" width="0.1" height="15.0" fill="rgb(221,193,2)" rx="2" ry="2" />
<text x="206.36" y="943.5" ></text>
</g>
<g >
<title>tcp_v6_rcv (8 samples, 0.03%)</title><rect x="1059.4" y="949" width="0.3" height="15.0" fill="rgb(239,25,24)" rx="2" ry="2" />
<text x="1062.42" y="959.5" ></text>
</g>
<g >
<title>ep_poll (7 samples, 0.02%)</title><rect x="1057.4" y="1109" width="0.3" height="15.0" fill="rgb(211,182,11)" rx="2" ry="2" />
<text x="1060.38" y="1119.5" ></text>
</g>
<g >
<title>free (4 samples, 0.01%)</title><rect x="181.1" y="1189" width="0.2" height="15.0" fill="rgb(206,172,6)" rx="2" ry="2" />
<text x="184.12" y="1199.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3 samples, 0.01%)</title><rect x="1078.1" y="1221" width="0.2" height="15.0" fill="rgb(251,158,43)" rx="2" ry="2" />
<text x="1081.15" y="1231.5" ></text>
</g>
<g >
<title>copy_page_to_iter (9 samples, 0.03%)</title><rect x="1022.5" y="805" width="0.4" height="15.0" fill="rgb(253,54,39)" rx="2" ry="2" />
<text x="1025.52" y="815.5" ></text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::EqualsOp, DB::NameEquals&gt;::executeImpl (13 samples, 0.04%)</title><rect x="184.4" y="1141" width="0.5" height="15.0" fill="rgb(226,116,38)" rx="2" ry="2" />
<text x="187.43" y="1151.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="205.0" y="965" width="0.2" height="15.0" fill="rgb(241,211,32)" rx="2" ry="2" />
<text x="208.00" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="95.0" y="1061" width="0.1" height="15.0" fill="rgb(208,91,54)" rx="2" ry="2" />
<text x="98.02" y="1071.5" ></text>
</g>
<g >
<title>schedule (4 samples, 0.01%)</title><rect x="1067.4" y="1125" width="0.2" height="15.0" fill="rgb(237,146,13)" rx="2" ry="2" />
<text x="1070.40" y="1135.5" ></text>
</g>
<g >
<title>do_munmap (14 samples, 0.05%)</title><rect x="1042.4" y="773" width="0.6" height="15.0" fill="rgb(219,76,34)" rx="2" ry="2" />
<text x="1045.41" y="783.5" ></text>
</g>
<g >
<title>do_execve (4 samples, 0.01%)</title><rect x="1094.7" y="1237" width="0.1" height="15.0" fill="rgb(216,11,17)" rx="2" ry="2" />
<text x="1097.68" y="1247.5" ></text>
</g>
<g >
<title>tcp_rcv_established (9 samples, 0.03%)</title><rect x="1167.3" y="981" width="0.3" height="15.0" fill="rgb(248,56,16)" rx="2" ry="2" />
<text x="1170.28" y="991.5" ></text>
</g>
<g >
<title>DB::ParserPrefixUnaryOperatorExpression::parseImpl (27 samples, 0.09%)</title><rect x="210.7" y="613" width="1.1" height="15.0" fill="rgb(234,68,39)" rx="2" ry="2" />
<text x="213.75" y="623.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (4 samples, 0.01%)</title><rect x="1038.2" y="1013" width="0.1" height="15.0" fill="rgb(217,178,30)" rx="2" ry="2" />
<text x="1041.17" y="1023.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (4 samples, 0.01%)</title><rect x="1096.4" y="1205" width="0.2" height="15.0" fill="rgb(208,44,44)" rx="2" ry="2" />
<text x="1099.40" y="1215.5" ></text>
</g>
<g >
<title>clear_page_rep (10 samples, 0.03%)</title><rect x="24.2" y="741" width="0.4" height="15.0" fill="rgb(232,139,26)" rx="2" ry="2" />
<text x="27.22" y="751.5" ></text>
</g>
<g >
<title>worker_thread (5 samples, 0.02%)</title><rect x="1082.9" y="1269" width="0.2" height="15.0" fill="rgb(234,104,54)" rx="2" ry="2" />
<text x="1085.94" y="1279.5" ></text>
</g>
<g >
<title>_do_fork (20 samples, 0.07%)</title><rect x="1184.0" y="1237" width="0.8" height="15.0" fill="rgb(216,76,17)" rx="2" ry="2" />
<text x="1187.01" y="1247.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (3 samples, 0.01%)</title><rect x="1171.9" y="1237" width="0.2" height="15.0" fill="rgb(238,73,17)" rx="2" ry="2" />
<text x="1174.95" y="1247.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (388 samples, 1.31%)</title><rect x="1098.3" y="1205" width="15.5" height="15.0" fill="rgb(207,102,30)" rx="2" ry="2" />
<text x="1101.27" y="1215.5" ></text>
</g>
<g >
<title>remote_function (240 samples, 0.81%)</title><rect x="1156.0" y="1173" width="9.6" height="15.0" fill="rgb(213,6,27)" rx="2" ry="2" />
<text x="1158.98" y="1183.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (37 samples, 0.13%)</title><rect x="210.7" y="805" width="1.4" height="15.0" fill="rgb(240,37,54)" rx="2" ry="2" />
<text x="213.67" y="815.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (7 samples, 0.02%)</title><rect x="985.7" y="981" width="0.3" height="15.0" fill="rgb(230,207,10)" rx="2" ry="2" />
<text x="988.70" y="991.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (4 samples, 0.01%)</title><rect x="977.4" y="1029" width="0.1" height="15.0" fill="rgb(244,127,8)" rx="2" ry="2" />
<text x="980.35" y="1039.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;true, AllocatorHints::DefaultHint, 67108864ul&gt;::alloc (23 samples, 0.08%)</title><rect x="97.3" y="1173" width="0.9" height="15.0" fill="rgb(208,85,52)" rx="2" ry="2" />
<text x="100.30" y="1183.5" ></text>
</g>
<g >
<title>__lock_text_start (3 samples, 0.01%)</title><rect x="1104.4" y="1141" width="0.1" height="15.0" fill="rgb(220,30,14)" rx="2" ry="2" />
<text x="1107.42" y="1151.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (232 samples, 0.79%)</title><rect x="162.1" y="1189" width="9.2" height="15.0" fill="rgb(220,180,32)" rx="2" ry="2" />
<text x="165.07" y="1199.5" ></text>
</g>
<g >
<title>search_binary_handler (12 samples, 0.04%)</title><rect x="1054.3" y="1205" width="0.4" height="15.0" fill="rgb(253,51,1)" rx="2" ry="2" />
<text x="1057.27" y="1215.5" ></text>
</g>
<g >
<title>ep_eventpoll_release (13 samples, 0.04%)</title><rect x="1060.4" y="1157" width="0.5" height="15.0" fill="rgb(234,212,44)" rx="2" ry="2" />
<text x="1063.38" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1037.9" y="821" width="0.1" height="15.0" fill="rgb(218,20,33)" rx="2" ry="2" />
<text x="1040.85" y="831.5" ></text>
</g>
<g >
<title>tmux:_server (260 samples, 0.88%)</title><rect x="1176.3" y="1317" width="10.4" height="15.0" fill="rgb(244,163,52)" rx="2" ry="2" />
<text x="1179.30" y="1327.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (2,127 samples, 7.20%)</title><rect x="10.2" y="1141" width="84.9" height="15.0" fill="rgb(234,95,28)" rx="2" ry="2" />
<text x="13.20" y="1151.5" >DB::IBloc..</text>
</g>
<g >
<title>path_lookupat (4 samples, 0.01%)</title><rect x="1039.8" y="965" width="0.2" height="15.0" fill="rgb(234,68,16)" rx="2" ry="2" />
<text x="1042.85" y="975.5" ></text>
</g>
<g >
<title>realloc (5 samples, 0.02%)</title><rect x="32.4" y="757" width="0.2" height="15.0" fill="rgb(233,84,39)" rx="2" ry="2" />
<text x="35.36" y="767.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (5 samples, 0.02%)</title><rect x="1040.3" y="1125" width="0.2" height="15.0" fill="rgb(223,212,44)" rx="2" ry="2" />
<text x="1043.33" y="1135.5" ></text>
</g>
<g >
<title>__do_page_fault (8 samples, 0.03%)</title><rect x="1001.5" y="917" width="0.3" height="15.0" fill="rgb(220,54,15)" rx="2" ry="2" />
<text x="1004.51" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (13 samples, 0.04%)</title><rect x="1057.7" y="1157" width="0.6" height="15.0" fill="rgb(233,175,49)" rx="2" ry="2" />
<text x="1060.74" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.04%)</title><rect x="1092.7" y="1301" width="0.5" height="15.0" fill="rgb(243,33,26)" rx="2" ry="2" />
<text x="1095.72" y="1311.5" ></text>
</g>
<g >
<title>zap_page_range (7 samples, 0.02%)</title><rect x="204.7" y="869" width="0.3" height="15.0" fill="rgb(237,61,20)" rx="2" ry="2" />
<text x="207.72" y="879.5" ></text>
</g>
<g >
<title>iterate_dir (16 samples, 0.05%)</title><rect x="1067.9" y="1221" width="0.6" height="15.0" fill="rgb(225,198,40)" rx="2" ry="2" />
<text x="1070.88" y="1231.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3 samples, 0.01%)</title><rect x="1066.5" y="1077" width="0.1" height="15.0" fill="rgb(246,208,9)" rx="2" ry="2" />
<text x="1069.49" y="1087.5" ></text>
</g>
<g >
<title>change_prot_numa (5 samples, 0.02%)</title><rect x="993.0" y="997" width="0.2" height="15.0" fill="rgb(224,165,51)" rx="2" ry="2" />
<text x="995.97" y="1007.5" ></text>
</g>
<g >
<title>vfs_statx (4 samples, 0.01%)</title><rect x="1039.0" y="981" width="0.2" height="15.0" fill="rgb(235,189,8)" rx="2" ry="2" />
<text x="1042.01" y="991.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3 samples, 0.01%)</title><rect x="1075.6" y="1221" width="0.1" height="15.0" fill="rgb(213,30,14)" rx="2" ry="2" />
<text x="1078.63" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="98.1" y="1109" width="0.1" height="15.0" fill="rgb(205,63,36)" rx="2" ry="2" />
<text x="101.05" y="1119.5" ></text>
</g>
<g >
<title>ksys_read (80 samples, 0.27%)</title><rect x="1005.5" y="933" width="3.2" height="15.0" fill="rgb(223,18,16)" rx="2" ry="2" />
<text x="1008.51" y="943.5" ></text>
</g>
<g >
<title>find_busiest_group (3 samples, 0.01%)</title><rect x="1072.5" y="1189" width="0.1" height="15.0" fill="rgb(216,196,50)" rx="2" ry="2" />
<text x="1075.52" y="1199.5" ></text>
</g>
<g >
<title>ep_item_poll (5 samples, 0.02%)</title><rect x="1062.0" y="1189" width="0.2" height="15.0" fill="rgb(243,93,22)" rx="2" ry="2" />
<text x="1064.97" y="1199.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (17 samples, 0.06%)</title><rect x="1098.8" y="1157" width="0.6" height="15.0" fill="rgb(212,64,51)" rx="2" ry="2" />
<text x="1101.75" y="1167.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (5 samples, 0.02%)</title><rect x="1025.0" y="629" width="0.2" height="15.0" fill="rgb(206,169,26)" rx="2" ry="2" />
<text x="1028.03" y="639.5" ></text>
</g>
<g >
<title>[clickhouse] (16 samples, 0.05%)</title><rect x="1038.6" y="1061" width="0.6" height="15.0" fill="rgb(231,0,26)" rx="2" ry="2" />
<text x="1041.57" y="1071.5" ></text>
</g>
<g >
<title>read (27 samples, 0.09%)</title><rect x="1054.8" y="1301" width="1.1" height="15.0" fill="rgb(235,158,7)" rx="2" ry="2" />
<text x="1057.78" y="1311.5" ></text>
</g>
<g >
<title>napi_gro_receive (14 samples, 0.05%)</title><rect x="1167.2" y="1109" width="0.5" height="15.0" fill="rgb(205,128,15)" rx="2" ry="2" />
<text x="1170.16" y="1119.5" ></text>
</g>
<g >
<title>reschedule_interrupt (14 samples, 0.05%)</title><rect x="1096.6" y="1221" width="0.5" height="15.0" fill="rgb(246,164,49)" rx="2" ry="2" />
<text x="1099.56" y="1231.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertFrom (26 samples, 0.09%)</title><rect x="231.2" y="1093" width="1.1" height="15.0" fill="rgb(235,171,49)" rx="2" ry="2" />
<text x="234.23" y="1103.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,443 samples, 4.88%)</title><rect x="99.5" y="1189" width="57.6" height="15.0" fill="rgb(244,105,22)" rx="2" ry="2" />
<text x="102.49" y="1199.5" >DB::Ag..</text>
</g>
<g >
<title>ioctl (5 samples, 0.02%)</title><rect x="1085.2" y="1205" width="0.2" height="15.0" fill="rgb(220,222,7)" rx="2" ry="2" />
<text x="1088.21" y="1215.5" ></text>
</g>
<g >
<title>tg3_poll_work (21 samples, 0.07%)</title><rect x="1166.9" y="1125" width="0.9" height="15.0" fill="rgb(243,17,3)" rx="2" ry="2" />
<text x="1169.92" y="1135.5" ></text>
</g>
<g >
<title>__sys_sendto (42 samples, 0.14%)</title><rect x="1045.9" y="1237" width="1.7" height="15.0" fill="rgb(253,4,48)" rx="2" ry="2" />
<text x="1048.88" y="1247.5" ></text>
</g>
<g >
<title>kworker/34:1-ev (3 samples, 0.01%)</title><rect x="1076.5" y="1317" width="0.1" height="15.0" fill="rgb(221,6,24)" rx="2" ry="2" />
<text x="1079.51" y="1327.5" ></text>
</g>
<g >
<title>arena_ralloc (3 samples, 0.01%)</title><rect x="74.8" y="821" width="0.1" height="15.0" fill="rgb(232,109,14)" rx="2" ry="2" />
<text x="77.77" y="831.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3 samples, 0.01%)</title><rect x="1073.5" y="1221" width="0.1" height="15.0" fill="rgb(223,126,54)" rx="2" ry="2" />
<text x="1076.47" y="1231.5" ></text>
</g>
<g >
<title>sock_sendmsg (3 samples, 0.01%)</title><rect x="997.3" y="997" width="0.1" height="15.0" fill="rgb(223,101,22)" rx="2" ry="2" />
<text x="1000.32" y="1007.5" ></text>
</g>
<g >
<title>large_palloc (5 samples, 0.02%)</title><rect x="1037.9" y="917" width="0.2" height="15.0" fill="rgb(210,188,11)" rx="2" ry="2" />
<text x="1040.85" y="927.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5 samples, 0.02%)</title><rect x="75.7" y="773" width="0.2" height="15.0" fill="rgb(221,132,49)" rx="2" ry="2" />
<text x="78.69" y="783.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (22 samples, 0.07%)</title><rect x="1058.9" y="1253" width="0.9" height="15.0" fill="rgb(206,217,3)" rx="2" ry="2" />
<text x="1061.94" y="1263.5" ></text>
</g>
<g >
<title>__se_sys_madvise (4 samples, 0.01%)</title><rect x="977.8" y="853" width="0.2" height="15.0" fill="rgb(218,189,8)" rx="2" ry="2" />
<text x="980.79" y="863.5" ></text>
</g>
<g >
<title>native_write_msr (3 samples, 0.01%)</title><rect x="1100.9" y="1061" width="0.1" height="15.0" fill="rgb(240,162,24)" rx="2" ry="2" />
<text x="1103.91" y="1071.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (4 samples, 0.01%)</title><rect x="1084.2" y="1237" width="0.2" height="15.0" fill="rgb(211,136,9)" rx="2" ry="2" />
<text x="1087.22" y="1247.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned char&gt;::deserializeBinaryBulk (40 samples, 0.14%)</title><rect x="1026.2" y="1029" width="1.6" height="15.0" fill="rgb(228,223,36)" rx="2" ry="2" />
<text x="1029.23" y="1039.5" ></text>
</g>
<g >
<title>__xstat64 (5 samples, 0.02%)</title><rect x="1052.8" y="1285" width="0.2" height="15.0" fill="rgb(231,199,23)" rx="2" ry="2" />
<text x="1055.83" y="1295.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (4 samples, 0.01%)</title><rect x="1093.8" y="1301" width="0.2" height="15.0" fill="rgb(207,99,28)" rx="2" ry="2" />
<text x="1096.80" y="1311.5" ></text>
</g>
<g >
<title>__do_page_fault (6 samples, 0.02%)</title><rect x="1010.5" y="981" width="0.2" height="15.0" fill="rgb(248,135,6)" rx="2" ry="2" />
<text x="1013.50" y="991.5" ></text>
</g>
<g >
<title>tcp_v4_do_rcv (9 samples, 0.03%)</title><rect x="1167.3" y="997" width="0.3" height="15.0" fill="rgb(240,107,53)" rx="2" ry="2" />
<text x="1170.28" y="1007.5" ></text>
</g>
<g >
<title>pthread_mutex_trylock (3 samples, 0.01%)</title><rect x="96.5" y="1285" width="0.2" height="15.0" fill="rgb(225,153,37)" rx="2" ry="2" />
<text x="99.54" y="1295.5" ></text>
</g>
<g >
<title>[clickhouse] (375 samples, 1.27%)</title><rect x="79.8" y="1077" width="15.0" height="15.0" fill="rgb(251,76,11)" rx="2" ry="2" />
<text x="82.80" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="181.5" y="1061" width="0.2" height="15.0" fill="rgb(227,184,0)" rx="2" ry="2" />
<text x="184.48" y="1071.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (3 samples, 0.01%)</title><rect x="1083.5" y="1189" width="0.1" height="15.0" fill="rgb(209,10,37)" rx="2" ry="2" />
<text x="1086.50" y="1199.5" ></text>
</g>
<g >
<title>try_to_unmap_one (3 samples, 0.01%)</title><rect x="1001.7" y="805" width="0.1" height="15.0" fill="rgb(231,76,51)" rx="2" ry="2" />
<text x="1004.67" y="815.5" ></text>
</g>
<g >
<title>path_lookupat (4 samples, 0.01%)</title><rect x="1039.0" y="949" width="0.2" height="15.0" fill="rgb(252,140,24)" rx="2" ry="2" />
<text x="1042.01" y="959.5" ></text>
</g>
<g >
<title>tcp_v6_do_rcv (8 samples, 0.03%)</title><rect x="1046.8" y="885" width="0.4" height="15.0" fill="rgb(214,155,15)" rx="2" ry="2" />
<text x="1049.84" y="895.5" ></text>
</g>
<g >
<title>kmem_cache_free (3 samples, 0.01%)</title><rect x="1102.8" y="1141" width="0.1" height="15.0" fill="rgb(233,60,13)" rx="2" ry="2" />
<text x="1105.82" y="1151.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="96.0" y="1173" width="0.3" height="15.0" fill="rgb(215,140,13)" rx="2" ry="2" />
<text x="99.02" y="1183.5" ></text>
</g>
<g >
<title>__madvise (4 samples, 0.01%)</title><rect x="977.8" y="901" width="0.2" height="15.0" fill="rgb(215,122,2)" rx="2" ry="2" />
<text x="980.79" y="911.5" ></text>
</g>
<g >
<title>__libc_fork (3 samples, 0.01%)</title><rect x="1189.4" y="1269" width="0.2" height="15.0" fill="rgb(249,73,3)" rx="2" ry="2" />
<text x="1192.44" y="1279.5" ></text>
</g>
<g >
<title>futex_wait (4 samples, 0.01%)</title><rect x="1039.5" y="965" width="0.1" height="15.0" fill="rgb(232,222,26)" rx="2" ry="2" />
<text x="1042.49" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.04%)</title><rect x="79.4" y="853" width="0.4" height="15.0" fill="rgb(244,115,53)" rx="2" ry="2" />
<text x="82.36" y="863.5" ></text>
</g>
<g >
<title>ttwu_do_activate.isra.7 (3 samples, 0.01%)</title><rect x="1113.5" y="1093" width="0.1" height="15.0" fill="rgb(229,122,13)" rx="2" ry="2" />
<text x="1116.49" y="1103.5" ></text>
</g>
<g >
<title>DB::MergingAndConvertingBlockInputStream::thread (12 samples, 0.04%)</title><rect x="96.0" y="1221" width="0.5" height="15.0" fill="rgb(241,158,51)" rx="2" ry="2" />
<text x="99.02" y="1231.5" ></text>
</g>
<g >
<title>schedule (8 samples, 0.03%)</title><rect x="992.6" y="1029" width="0.4" height="15.0" fill="rgb(244,67,37)" rx="2" ry="2" />
<text x="995.65" y="1039.5" ></text>
</g>
<g >
<title>memequalSSE2Wide (13 samples, 0.04%)</title><rect x="25.5" y="901" width="0.5" height="15.0" fill="rgb(254,56,1)" rx="2" ry="2" />
<text x="28.45" y="911.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (12 samples, 0.04%)</title><rect x="1059.3" y="1125" width="0.4" height="15.0" fill="rgb(218,90,2)" rx="2" ry="2" />
<text x="1062.26" y="1135.5" ></text>
</g>
<g >
<title>memcpy (6 samples, 0.02%)</title><rect x="1023.1" y="997" width="0.3" height="15.0" fill="rgb(220,115,9)" rx="2" ry="2" />
<text x="1026.12" y="1007.5" ></text>
</g>
<g >
<title>ret_from_fork (52 samples, 0.18%)</title><rect x="1072.9" y="1301" width="2.1" height="15.0" fill="rgb(238,57,23)" rx="2" ry="2" />
<text x="1075.87" y="1311.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (6 samples, 0.02%)</title><rect x="1038.6" y="1029" width="0.2" height="15.0" fill="rgb(253,14,31)" rx="2" ry="2" />
<text x="1041.57" y="1039.5" ></text>
</g>
<g >
<title>__do_page_fault (9 samples, 0.03%)</title><rect x="30.1" y="885" width="0.4" height="15.0" fill="rgb(227,137,45)" rx="2" ry="2" />
<text x="33.13" y="895.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.03%)</title><rect x="1084.8" y="1301" width="0.4" height="15.0" fill="rgb(253,68,35)" rx="2" ry="2" />
<text x="1087.81" y="1311.5" ></text>
</g>
<g >
<title>scheduler_ipi (3 samples, 0.01%)</title><rect x="1166.4" y="1205" width="0.1" height="15.0" fill="rgb(236,129,47)" rx="2" ry="2" />
<text x="1169.40" y="1215.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (3 samples, 0.01%)</title><rect x="1038.9" y="1029" width="0.1" height="15.0" fill="rgb(229,53,32)" rx="2" ry="2" />
<text x="1041.85" y="1039.5" ></text>
</g>
<g >
<title>__wake_up_common (3 samples, 0.01%)</title><rect x="1083.5" y="1173" width="0.1" height="15.0" fill="rgb(211,215,35)" rx="2" ry="2" />
<text x="1086.50" y="1183.5" ></text>
</g>
<g >
<title>queue_work_on (5 samples, 0.02%)</title><rect x="1113.2" y="1013" width="0.2" height="15.0" fill="rgb(215,153,6)" rx="2" ry="2" />
<text x="1116.21" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1094.9" y="1253" width="0.1" height="15.0" fill="rgb(218,167,13)" rx="2" ry="2" />
<text x="1097.88" y="1263.5" ></text>
</g>
<g >
<title>__switch_to (4 samples, 0.01%)</title><rect x="1062.3" y="1237" width="0.1" height="15.0" fill="rgb(250,3,9)" rx="2" ry="2" />
<text x="1065.25" y="1247.5" ></text>
</g>
<g >
<title>try_to_wake_up (5 samples, 0.02%)</title><rect x="1039.6" y="933" width="0.2" height="15.0" fill="rgb(229,63,16)" rx="2" ry="2" />
<text x="1042.65" y="943.5" ></text>
</g>
<g >
<title>[unknown] (7 samples, 0.02%)</title><rect x="1084.5" y="1301" width="0.2" height="15.0" fill="rgb(240,35,44)" rx="2" ry="2" />
<text x="1087.46" y="1311.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="357" width="0.9" height="15.0" fill="rgb(253,11,26)" rx="2" ry="2" />
<text x="213.79" y="367.5" ></text>
</g>
<g >
<title>kworker/6:1-eve (16 samples, 0.05%)</title><rect x="1081.6" y="1317" width="0.6" height="15.0" fill="rgb(242,85,18)" rx="2" ry="2" />
<text x="1084.58" y="1327.5" ></text>
</g>
<g >
<title>__GI___libc_read (96 samples, 0.32%)</title><rect x="1032.7" y="933" width="3.8" height="15.0" fill="rgb(230,24,23)" rx="2" ry="2" />
<text x="1035.70" y="943.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (11 samples, 0.04%)</title><rect x="1038.6" y="1045" width="0.4" height="15.0" fill="rgb(218,225,30)" rx="2" ry="2" />
<text x="1041.57" y="1055.5" ></text>
</g>
<g >
<title>__sched_text_start (19 samples, 0.06%)</title><rect x="1080.8" y="1237" width="0.7" height="15.0" fill="rgb(229,100,41)" rx="2" ry="2" />
<text x="1083.78" y="1247.5" ></text>
</g>
<g >
<title>kthread (14 samples, 0.05%)</title><rect x="1076.8" y="1285" width="0.6" height="15.0" fill="rgb(216,109,40)" rx="2" ry="2" />
<text x="1079.83" y="1295.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1189.4" y="1301" width="0.2" height="15.0" fill="rgb(217,59,39)" rx="2" ry="2" />
<text x="1192.44" y="1311.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (5 samples, 0.02%)</title><rect x="1061.5" y="1125" width="0.2" height="15.0" fill="rgb(217,166,22)" rx="2" ry="2" />
<text x="1064.45" y="1135.5" ></text>
</g>
<g >
<title>dequeue_entity (3 samples, 0.01%)</title><rect x="1062.6" y="1093" width="0.1" height="15.0" fill="rgb(234,121,1)" rx="2" ry="2" />
<text x="1065.61" y="1103.5" ></text>
</g>
<g >
<title>mmput (8 samples, 0.03%)</title><rect x="1084.9" y="1221" width="0.3" height="15.0" fill="rgb(229,178,30)" rx="2" ry="2" />
<text x="1087.85" y="1231.5" ></text>
</g>
<g >
<title>target_load (3 samples, 0.01%)</title><rect x="1052.6" y="1141" width="0.1" height="15.0" fill="rgb(235,137,32)" rx="2" ry="2" />
<text x="1055.59" y="1151.5" ></text>
</g>
<g >
<title>vm_munmap (14 samples, 0.05%)</title><rect x="1042.4" y="789" width="0.6" height="15.0" fill="rgb(240,124,6)" rx="2" ry="2" />
<text x="1045.41" y="799.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1042.0" y="837" width="0.2" height="15.0" fill="rgb(237,72,15)" rx="2" ry="2" />
<text x="1045.05" y="847.5" ></text>
</g>
<g >
<title>ThreadFromGlobalPool::ThreadFromGlobalPool&lt;void (10 samples, 0.03%)</title><rect x="95.5" y="1269" width="0.4" height="15.0" fill="rgb(225,215,33)" rx="2" ry="2" />
<text x="98.50" y="1279.5" ></text>
</g>
<g >
<title>DB::ParserIdentifierWithParameters::parseImpl (45 samples, 0.15%)</title><rect x="210.6" y="965" width="1.8" height="15.0" fill="rgb(221,69,50)" rx="2" ry="2" />
<text x="213.63" y="975.5" ></text>
</g>
<g >
<title>process_one_work (3 samples, 0.01%)</title><rect x="1072.7" y="1253" width="0.1" height="15.0" fill="rgb(214,172,5)" rx="2" ry="2" />
<text x="1075.67" y="1263.5" ></text>
</g>
<g >
<title>unmap_page_range (4 samples, 0.01%)</title><rect x="204.4" y="853" width="0.2" height="15.0" fill="rgb(237,192,22)" rx="2" ry="2" />
<text x="207.44" y="863.5" ></text>
</g>
<g >
<title>link_path_walk (4 samples, 0.01%)</title><rect x="1039.0" y="933" width="0.2" height="15.0" fill="rgb(251,91,4)" rx="2" ry="2" />
<text x="1042.01" y="943.5" ></text>
</g>
<g >
<title>alloc_pages_vma (6 samples, 0.02%)</title><rect x="1035.4" y="661" width="0.2" height="15.0" fill="rgb(254,21,24)" rx="2" ry="2" />
<text x="1038.38" y="671.5" ></text>
</g>
<g >
<title>update_blocked_averages (15 samples, 0.05%)</title><rect x="1091.0" y="1141" width="0.6" height="15.0" fill="rgb(249,168,16)" rx="2" ry="2" />
<text x="1094.04" y="1151.5" ></text>
</g>
<g >
<title>reschedule_interrupt (3 samples, 0.01%)</title><rect x="1166.4" y="1221" width="0.1" height="15.0" fill="rgb(218,152,11)" rx="2" ry="2" />
<text x="1169.40" y="1231.5" ></text>
</g>
<g >
<title>wp_page_copy (45 samples, 0.15%)</title><rect x="92.9" y="981" width="1.8" height="15.0" fill="rgb(225,114,7)" rx="2" ry="2" />
<text x="95.86" y="991.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (7 samples, 0.02%)</title><rect x="24.7" y="773" width="0.3" height="15.0" fill="rgb(232,147,6)" rx="2" ry="2" />
<text x="27.74" y="783.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (24 samples, 0.08%)</title><rect x="1042.0" y="997" width="1.0" height="15.0" fill="rgb(230,220,33)" rx="2" ry="2" />
<text x="1045.05" y="1007.5" ></text>
</g>
<g >
<title>__do_page_fault (9 samples, 0.03%)</title><rect x="1025.0" y="693" width="0.3" height="15.0" fill="rgb(222,72,14)" rx="2" ry="2" />
<text x="1027.95" y="703.5" ></text>
</g>
<g >
<title>run_rebalance_domains (147 samples, 0.50%)</title><rect x="1106.8" y="1157" width="5.9" height="15.0" fill="rgb(222,154,4)" rx="2" ry="2" />
<text x="1109.82" y="1167.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (82 samples, 0.28%)</title><rect x="1002.2" y="965" width="3.3" height="15.0" fill="rgb(234,201,0)" rx="2" ry="2" />
<text x="1005.23" y="975.5" ></text>
</g>
<g >
<title>__GI___libc_sendto (6 samples, 0.02%)</title><rect x="997.2" y="1077" width="0.3" height="15.0" fill="rgb(216,37,29)" rx="2" ry="2" />
<text x="1000.24" y="1087.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (281 samples, 0.95%)</title><rect x="1102.4" y="1173" width="11.2" height="15.0" fill="rgb(210,21,8)" rx="2" ry="2" />
<text x="1105.39" y="1183.5" ></text>
</g>
<g >
<title>DB::Arena::alloc (5 samples, 0.02%)</title><rect x="28.8" y="917" width="0.2" height="15.0" fill="rgb(251,91,5)" rx="2" ry="2" />
<text x="31.77" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (17 samples, 0.06%)</title><rect x="1067.8" y="1269" width="0.7" height="15.0" fill="rgb(213,229,0)" rx="2" ry="2" />
<text x="1070.84" y="1279.5" ></text>
</g>
<g >
<title>unmap_vmas (5 samples, 0.02%)</title><rect x="1054.1" y="1189" width="0.2" height="15.0" fill="rgb(237,115,11)" rx="2" ry="2" />
<text x="1057.07" y="1199.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (5 samples, 0.02%)</title><rect x="10.0" y="1173" width="0.2" height="15.0" fill="rgb(208,213,53)" rx="2" ry="2" />
<text x="13.00" y="1183.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (6 samples, 0.02%)</title><rect x="94.4" y="917" width="0.3" height="15.0" fill="rgb(238,122,25)" rx="2" ry="2" />
<text x="97.42" y="927.5" ></text>
</g>
<g >
<title>epoll_create (5 samples, 0.02%)</title><rect x="1057.1" y="1189" width="0.2" height="15.0" fill="rgb(208,101,38)" rx="2" ry="2" />
<text x="1060.14" y="1199.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (6 samples, 0.02%)</title><rect x="1035.4" y="645" width="0.2" height="15.0" fill="rgb(221,179,27)" rx="2" ry="2" />
<text x="1038.38" y="655.5" ></text>
</g>
<g >
<title>note_gp_changes (10 samples, 0.03%)</title><rect x="1102.9" y="1141" width="0.4" height="15.0" fill="rgb(249,126,25)" rx="2" ry="2" />
<text x="1105.94" y="1151.5" ></text>
</g>
<g >
<title>__x64_sys_execve (31 samples, 0.10%)</title><rect x="1185.2" y="1253" width="1.2" height="15.0" fill="rgb(209,77,2)" rx="2" ry="2" />
<text x="1188.17" y="1263.5" ></text>
</g>
<g >
<title>page_fault (13 samples, 0.04%)</title><rect x="207.2" y="1093" width="0.5" height="15.0" fill="rgb(236,10,45)" rx="2" ry="2" />
<text x="210.15" y="1103.5" ></text>
</g>
<g >
<title>do_execve (12 samples, 0.04%)</title><rect x="1054.3" y="1237" width="0.4" height="15.0" fill="rgb(243,123,34)" rx="2" ry="2" />
<text x="1057.27" y="1247.5" ></text>
</g>
<g >
<title>smp_call_function_single (5 samples, 0.02%)</title><rect x="1085.2" y="1013" width="0.2" height="15.0" fill="rgb(220,174,34)" rx="2" ry="2" />
<text x="1088.21" y="1023.5" ></text>
</g>
<g >
<title>sshd (9 samples, 0.03%)</title><rect x="1094.8" y="1317" width="0.4" height="15.0" fill="rgb(216,50,52)" rx="2" ry="2" />
<text x="1097.84" y="1327.5" ></text>
</g>
<g >
<title>update_nohz_stats (8 samples, 0.03%)</title><rect x="1089.3" y="1173" width="0.3" height="15.0" fill="rgb(231,117,11)" rx="2" ry="2" />
<text x="1092.29" y="1183.5" ></text>
</g>
<g >
<title>ProfileEvents::increment (5 samples, 0.02%)</title><rect x="1021.8" y="965" width="0.2" height="15.0" fill="rgb(237,9,23)" rx="2" ry="2" />
<text x="1024.76" y="975.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromPocoSocket::poll (31 samples, 0.10%)</title><rect x="1043.1" y="1157" width="1.3" height="15.0" fill="rgb(243,193,13)" rx="2" ry="2" />
<text x="1046.12" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (19,047 samples, 64.46%)</title><rect x="232.6" y="1093" width="760.6" height="15.0" fill="rgb(210,166,40)" rx="2" ry="2" />
<text x="235.55" y="1103.5" >[clickhouse]</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1094.1" y="1253" width="0.2" height="15.0" fill="rgb(220,173,41)" rx="2" ry="2" />
<text x="1097.08" y="1263.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromPocoSocket::nextImpl (3 samples, 0.01%)</title><rect x="1056.2" y="1173" width="0.1" height="15.0" fill="rgb(206,90,30)" rx="2" ry="2" />
<text x="1059.22" y="1183.5" ></text>
</g>
<g >
<title>ep_unregister_pollwait.isra.0 (3 samples, 0.01%)</title><rect x="1056.9" y="1061" width="0.1" height="15.0" fill="rgb(243,59,29)" rx="2" ry="2" />
<text x="1059.90" y="1071.5" ></text>
</g>
<g >
<title>clear_page_rep (5 samples, 0.02%)</title><rect x="1025.0" y="597" width="0.2" height="15.0" fill="rgb(221,80,13)" rx="2" ry="2" />
<text x="1028.03" y="607.5" ></text>
</g>
<g >
<title>queue_work_on (3 samples, 0.01%)</title><rect x="1057.9" y="1045" width="0.1" height="15.0" fill="rgb(219,9,32)" rx="2" ry="2" />
<text x="1060.90" y="1055.5" ></text>
</g>
<g >
<title>DB::Block::insert (3 samples, 0.01%)</title><rect x="184.2" y="1125" width="0.2" height="15.0" fill="rgb(233,109,32)" rx="2" ry="2" />
<text x="187.23" y="1135.5" ></text>
</g>
<g >
<title>unmap_page_range (5 samples, 0.02%)</title><rect x="1054.1" y="1173" width="0.2" height="15.0" fill="rgb(207,197,22)" rx="2" ry="2" />
<text x="1057.07" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="1036.5" y="949" width="0.2" height="15.0" fill="rgb(227,152,40)" rx="2" ry="2" />
<text x="1039.53" y="959.5" ></text>
</g>
<g >
<title>__sched_text_start (103 samples, 0.35%)</title><rect x="1062.6" y="1125" width="4.1" height="15.0" fill="rgb(243,106,42)" rx="2" ry="2" />
<text x="1065.57" y="1135.5" ></text>
</g>
<g >
<title>copy_strings.isra.7 (3 samples, 0.01%)</title><rect x="1052.3" y="1173" width="0.1" height="15.0" fill="rgb(226,199,31)" rx="2" ry="2" />
<text x="1055.31" y="1183.5" ></text>
</g>
<g >
<title>update_nohz_stats (7 samples, 0.02%)</title><rect x="1077.0" y="1173" width="0.3" height="15.0" fill="rgb(234,157,45)" rx="2" ry="2" />
<text x="1080.03" y="1183.5" ></text>
</g>
<g >
<title>__se_sys_madvise (3 samples, 0.01%)</title><rect x="1016.6" y="821" width="0.1" height="15.0" fill="rgb(233,167,33)" rx="2" ry="2" />
<text x="1019.61" y="831.5" ></text>
</g>
<g >
<title>worker_thread (16 samples, 0.05%)</title><rect x="1081.6" y="1269" width="0.6" height="15.0" fill="rgb(232,216,48)" rx="2" ry="2" />
<text x="1084.58" y="1279.5" ></text>
</g>
<g >
<title>__do_page_fault (24 samples, 0.08%)</title><rect x="1179.5" y="1253" width="1.0" height="15.0" fill="rgb(229,145,22)" rx="2" ry="2" />
<text x="1182.54" y="1263.5" ></text>
</g>
<g >
<title>ksys_read (22 samples, 0.07%)</title><rect x="1054.9" y="1253" width="0.9" height="15.0" fill="rgb(211,90,26)" rx="2" ry="2" />
<text x="1057.94" y="1263.5" ></text>
</g>
<g >
<title>rcu_process_callbacks (27 samples, 0.09%)</title><rect x="1102.6" y="1157" width="1.1" height="15.0" fill="rgb(227,217,6)" rx="2" ry="2" />
<text x="1105.63" y="1167.5" ></text>
</g>
<g >
<title>Poco::ThreadImpl::runnableEntry (95 samples, 0.32%)</title><rect x="1042.0" y="1285" width="3.8" height="15.0" fill="rgb(246,77,32)" rx="2" ry="2" />
<text x="1045.05" y="1295.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1085.2" y="1221" width="0.2" height="15.0" fill="rgb(227,100,21)" rx="2" ry="2" />
<text x="1088.21" y="1231.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (5 samples, 0.02%)</title><rect x="201.4" y="949" width="0.2" height="15.0" fill="rgb(216,221,17)" rx="2" ry="2" />
<text x="204.40" y="959.5" ></text>
</g>
<g >
<title>clear_page_rep (12 samples, 0.04%)</title><rect x="90.9" y="901" width="0.5" height="15.0" fill="rgb(209,19,42)" rx="2" ry="2" />
<text x="93.95" y="911.5" ></text>
</g>
<g >
<title>search_binary_handler (4 samples, 0.01%)</title><rect x="1189.8" y="1205" width="0.2" height="15.0" fill="rgb(251,209,41)" rx="2" ry="2" />
<text x="1192.84" y="1215.5" ></text>
</g>
<g >
<title>unmap_page_range (3 samples, 0.01%)</title><rect x="204.9" y="853" width="0.1" height="15.0" fill="rgb(219,186,1)" rx="2" ry="2" />
<text x="207.88" y="863.5" ></text>
</g>
<g >
<title>alloc_pages_vma (5 samples, 0.02%)</title><rect x="1025.0" y="645" width="0.2" height="15.0" fill="rgb(207,55,13)" rx="2" ry="2" />
<text x="1028.03" y="655.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="341" width="0.9" height="15.0" fill="rgb(250,151,39)" rx="2" ry="2" />
<text x="213.79" y="351.5" ></text>
</g>
<g >
<title>handle_irq_event (3 samples, 0.01%)</title><rect x="1166.6" y="1157" width="0.2" height="15.0" fill="rgb(244,200,6)" rx="2" ry="2" />
<text x="1169.64" y="1167.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (6 samples, 0.02%)</title><rect x="24.8" y="757" width="0.2" height="15.0" fill="rgb(219,95,51)" rx="2" ry="2" />
<text x="27.78" y="767.5" ></text>
</g>
<g >
<title>worker_thread (54 samples, 0.18%)</title><rect x="1077.9" y="1269" width="2.2" height="15.0" fill="rgb(239,227,2)" rx="2" ry="2" />
<text x="1080.91" y="1279.5" ></text>
</g>
<g >
<title>event_function_call (5 samples, 0.02%)</title><rect x="1085.2" y="1045" width="0.2" height="15.0" fill="rgb(221,127,11)" rx="2" ry="2" />
<text x="1088.21" y="1055.5" ></text>
</g>
<g >
<title>vfs_ioctl (5 samples, 0.02%)</title><rect x="1085.2" y="1109" width="0.2" height="15.0" fill="rgb(236,69,27)" rx="2" ry="2" />
<text x="1088.21" y="1119.5" ></text>
</g>
<g >
<title>memcpy (18 samples, 0.06%)</title><rect x="32.6" y="725" width="0.8" height="15.0" fill="rgb(244,219,22)" rx="2" ry="2" />
<text x="35.64" y="735.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (32 samples, 0.11%)</title><rect x="1014.8" y="789" width="1.2" height="15.0" fill="rgb(240,202,18)" rx="2" ry="2" />
<text x="1017.77" y="799.5" ></text>
</g>
<g >
<title>exit_mmap (9 samples, 0.03%)</title><rect x="1053.9" y="1205" width="0.4" height="15.0" fill="rgb(207,28,51)" rx="2" ry="2" />
<text x="1056.91" y="1215.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.01%)</title><rect x="1032.4" y="885" width="0.1" height="15.0" fill="rgb(252,60,53)" rx="2" ry="2" />
<text x="1035.38" y="895.5" ></text>
</g>
<g >
<title>find_busiest_group (7 samples, 0.02%)</title><rect x="1077.0" y="1189" width="0.3" height="15.0" fill="rgb(214,133,0)" rx="2" ry="2" />
<text x="1080.03" y="1199.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (24 samples, 0.08%)</title><rect x="1042.0" y="1157" width="1.0" height="15.0" fill="rgb(225,58,44)" rx="2" ry="2" />
<text x="1045.05" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.04%)</title><rect x="1180.5" y="1253" width="0.5" height="15.0" fill="rgb(218,30,39)" rx="2" ry="2" />
<text x="1183.54" y="1263.5" ></text>
</g>
<g >
<title>clear_page_rep (4 samples, 0.01%)</title><rect x="1035.5" y="613" width="0.1" height="15.0" fill="rgb(254,33,1)" rx="2" ry="2" />
<text x="1038.46" y="623.5" ></text>
</g>
<g >
<title>schedule (6 samples, 0.02%)</title><rect x="1080.2" y="1253" width="0.3" height="15.0" fill="rgb(252,166,33)" rx="2" ry="2" />
<text x="1083.22" y="1263.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (7 samples, 0.02%)</title><rect x="201.0" y="997" width="0.2" height="15.0" fill="rgb(209,179,38)" rx="2" ry="2" />
<text x="203.96" y="1007.5" ></text>
</g>
<g >
<title>try_to_unmap (7 samples, 0.02%)</title><rect x="1015.6" y="629" width="0.3" height="15.0" fill="rgb(214,217,1)" rx="2" ry="2" />
<text x="1018.65" y="639.5" ></text>
</g>
<g >
<title>kthread (3 samples, 0.01%)</title><rect x="1072.7" y="1285" width="0.1" height="15.0" fill="rgb(250,214,37)" rx="2" ry="2" />
<text x="1075.67" y="1295.5" ></text>
</g>
<g >
<title>DB::recursiveRemoveLowCardinality (397 samples, 1.34%)</title><rect x="213.9" y="1141" width="15.9" height="15.0" fill="rgb(218,39,10)" rx="2" ry="2" />
<text x="216.94" y="1151.5" ></text>
</g>
<g >
<title>__select (4 samples, 0.01%)</title><rect x="1067.4" y="1269" width="0.2" height="15.0" fill="rgb(205,103,38)" rx="2" ry="2" />
<text x="1070.40" y="1279.5" ></text>
</g>
<g >
<title>__do_page_fault (18 samples, 0.06%)</title><rect x="1177.2" y="1269" width="0.7" height="15.0" fill="rgb(232,171,38)" rx="2" ry="2" />
<text x="1180.22" y="1279.5" ></text>
</g>
<g >
<title>DB::ColumnString::index (275 samples, 0.93%)</title><rect x="214.1" y="1109" width="10.9" height="15.0" fill="rgb(228,67,50)" rx="2" ry="2" />
<text x="217.06" y="1119.5" ></text>
</g>
<g >
<title>check_preempt_curr (3 samples, 0.01%)</title><rect x="988.7" y="885" width="0.2" height="15.0" fill="rgb(242,168,18)" rx="2" ry="2" />
<text x="991.73" y="895.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="97.3" y="1141" width="0.2" height="15.0" fill="rgb(214,195,10)" rx="2" ry="2" />
<text x="100.33" y="1151.5" ></text>
</g>
<g >
<title>do_filp_open (3 samples, 0.01%)</title><rect x="1038.4" y="933" width="0.1" height="15.0" fill="rgb(245,165,50)" rx="2" ry="2" />
<text x="1041.41" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="1044.0" y="1125" width="0.4" height="15.0" fill="rgb(251,41,44)" rx="2" ry="2" />
<text x="1047.04" y="1135.5" ></text>
</g>
<g >
<title>ovl_read_iter (32 samples, 0.11%)</title><rect x="1014.8" y="837" width="1.2" height="15.0" fill="rgb(246,210,27)" rx="2" ry="2" />
<text x="1017.77" y="847.5" ></text>
</g>
<g >
<title>zap_page_range (6 samples, 0.02%)</title><rect x="97.8" y="997" width="0.3" height="15.0" fill="rgb(219,59,12)" rx="2" ry="2" />
<text x="100.81" y="1007.5" ></text>
</g>
<g >
<title>DB::MergeTreeThreadSelectBlockInputStream::getNewTask (62 samples, 0.21%)</title><rect x="1037.9" y="1125" width="2.4" height="15.0" fill="rgb(237,125,29)" rx="2" ry="2" />
<text x="1040.85" y="1135.5" ></text>
</g>
<g >
<title>arena_decay (4 samples, 0.01%)</title><rect x="230.5" y="1093" width="0.2" height="15.0" fill="rgb(209,82,54)" rx="2" ry="2" />
<text x="233.51" y="1103.5" ></text>
</g>
<g >
<title>schedule (3 samples, 0.01%)</title><rect x="1083.0" y="1253" width="0.1" height="15.0" fill="rgb(243,6,22)" rx="2" ry="2" />
<text x="1086.02" y="1263.5" ></text>
</g>
<g >
<title>_init (50 samples, 0.17%)</title><rect x="1183.0" y="1301" width="2.0" height="15.0" fill="rgb(247,75,26)" rx="2" ry="2" />
<text x="1186.01" y="1311.5" ></text>
</g>
<g >
<title>__indirect_thunk_start (9 samples, 0.03%)</title><rect x="1095.2" y="1301" width="0.4" height="15.0" fill="rgb(254,171,40)" rx="2" ry="2" />
<text x="1098.20" y="1311.5" ></text>
</g>
<g >
<title>[clickhouse] (116 samples, 0.39%)</title><rect x="1017.1" y="933" width="4.6" height="15.0" fill="rgb(221,151,8)" rx="2" ry="2" />
<text x="1020.09" y="943.5" ></text>
</g>
<g >
<title>__wake_up_common (3 samples, 0.01%)</title><rect x="1047.0" y="789" width="0.1" height="15.0" fill="rgb(232,31,37)" rx="2" ry="2" />
<text x="1050.00" y="799.5" ></text>
</g>
<g >
<title>mmput (9 samples, 0.03%)</title><rect x="1053.9" y="1221" width="0.4" height="15.0" fill="rgb(235,128,31)" rx="2" ry="2" />
<text x="1056.91" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1094.7" y="1269" width="0.1" height="15.0" fill="rgb(248,43,25)" rx="2" ry="2" />
<text x="1097.68" y="1279.5" ></text>
</g>
<g >
<title>update_process_times (11 samples, 0.04%)</title><rect x="978.1" y="981" width="0.5" height="15.0" fill="rgb(230,102,0)" rx="2" ry="2" />
<text x="981.11" y="991.5" ></text>
</g>
<g >
<title>pty_write (5 samples, 0.02%)</title><rect x="1057.9" y="1061" width="0.2" height="15.0" fill="rgb(250,189,11)" rx="2" ry="2" />
<text x="1060.86" y="1071.5" ></text>
</g>
<g >
<title>__do_page_fault (5 samples, 0.02%)</title><rect x="74.3" y="853" width="0.2" height="15.0" fill="rgb(207,182,40)" rx="2" ry="2" />
<text x="77.25" y="863.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (8 samples, 0.03%)</title><rect x="79.5" y="741" width="0.3" height="15.0" fill="rgb(239,103,51)" rx="2" ry="2" />
<text x="82.48" y="751.5" ></text>
</g>
<g >
<title>__tcp_push_pending_frames (36 samples, 0.12%)</title><rect x="1046.0" y="1173" width="1.4" height="15.0" fill="rgb(214,139,41)" rx="2" ry="2" />
<text x="1049.00" y="1183.5" ></text>
</g>
<g >
<title>DB::JoinBlockInputStream::readImpl (992 samples, 3.36%)</title><rect x="31.1" y="869" width="39.6" height="15.0" fill="rgb(215,40,11)" rx="2" ry="2" />
<text x="34.08" y="879.5" >DB:..</text>
</g>
<g >
<title>worker_thread (11 samples, 0.04%)</title><rect x="1072.2" y="1269" width="0.5" height="15.0" fill="rgb(220,141,14)" rx="2" ry="2" />
<text x="1075.24" y="1279.5" ></text>
</g>
<g >
<title>vfs_statx (3 samples, 0.01%)</title><rect x="1040.1" y="1029" width="0.1" height="15.0" fill="rgb(245,134,9)" rx="2" ry="2" />
<text x="1043.09" y="1039.5" ></text>
</g>
<g >
<title>anon_inode_getfile (11 samples, 0.04%)</title><rect x="1061.4" y="1173" width="0.4" height="15.0" fill="rgb(218,161,23)" rx="2" ry="2" />
<text x="1064.37" y="1183.5" ></text>
</g>
<g >
<title>arena_ralloc (20 samples, 0.07%)</title><rect x="32.6" y="741" width="0.8" height="15.0" fill="rgb(229,201,15)" rx="2" ry="2" />
<text x="35.56" y="751.5" ></text>
</g>
<g >
<title>find_busiest_group (39 samples, 0.13%)</title><rect x="1090.1" y="1173" width="1.5" height="15.0" fill="rgb(223,149,51)" rx="2" ry="2" />
<text x="1093.09" y="1183.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (126 samples, 0.43%)</title><rect x="1031.7" y="997" width="5.0" height="15.0" fill="rgb(214,196,23)" rx="2" ry="2" />
<text x="1034.66" y="1007.5" ></text>
</g>
<g >
<title>netlink_sendmsg (3 samples, 0.01%)</title><rect x="997.3" y="981" width="0.1" height="15.0" fill="rgb(212,10,39)" rx="2" ry="2" />
<text x="1000.32" y="991.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (4 samples, 0.01%)</title><rect x="1096.4" y="1189" width="0.2" height="15.0" fill="rgb(215,183,2)" rx="2" ry="2" />
<text x="1099.40" y="1199.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (3 samples, 0.01%)</title><rect x="1025.9" y="645" width="0.1" height="15.0" fill="rgb(206,158,50)" rx="2" ry="2" />
<text x="1028.91" y="655.5" ></text>
</g>
<g >
<title>wp_page_copy (3 samples, 0.01%)</title><rect x="1187.6" y="1189" width="0.2" height="15.0" fill="rgb(245,73,12)" rx="2" ry="2" />
<text x="1190.64" y="1199.5" ></text>
</g>
<g >
<title>poll (7 samples, 0.02%)</title><rect x="1178.1" y="1269" width="0.3" height="15.0" fill="rgb(207,123,48)" rx="2" ry="2" />
<text x="1181.10" y="1279.5" ></text>
</g>
<g >
<title>inode_permission (4 samples, 0.01%)</title><rect x="1069.4" y="1173" width="0.1" height="15.0" fill="rgb(239,4,21)" rx="2" ry="2" />
<text x="1072.36" y="1183.5" ></text>
</g>
<g >
<title>page_fault (61 samples, 0.21%)</title><rect x="92.3" y="1061" width="2.4" height="15.0" fill="rgb(229,187,52)" rx="2" ry="2" />
<text x="95.30" y="1071.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::addStreams (56 samples, 0.19%)</title><rect x="1037.9" y="1093" width="2.2" height="15.0" fill="rgb(249,75,25)" rx="2" ry="2" />
<text x="1040.85" y="1103.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (5 samples, 0.02%)</title><rect x="1016.3" y="997" width="0.2" height="15.0" fill="rgb(250,118,50)" rx="2" ry="2" />
<text x="1019.29" y="1007.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (6 samples, 0.02%)</title><rect x="1037.9" y="1013" width="0.2" height="15.0" fill="rgb(224,125,23)" rx="2" ry="2" />
<text x="1040.85" y="1023.5" ></text>
</g>
<g >
<title>get_page_from_freelist (20 samples, 0.07%)</title><rect x="93.1" y="933" width="0.8" height="15.0" fill="rgb(228,226,1)" rx="2" ry="2" />
<text x="96.10" y="943.5" ></text>
</g>
<g >
<title>clockevents_program_event (3 samples, 0.01%)</title><rect x="1174.3" y="1189" width="0.2" height="15.0" fill="rgb(253,108,7)" rx="2" ry="2" />
<text x="1177.35" y="1199.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (12 samples, 0.04%)</title><rect x="1174.2" y="1205" width="0.5" height="15.0" fill="rgb(212,205,50)" rx="2" ry="2" />
<text x="1177.23" y="1215.5" ></text>
</g>
<g >
<title>copyout (29 samples, 0.10%)</title><rect x="1014.8" y="757" width="1.2" height="15.0" fill="rgb(245,213,17)" rx="2" ry="2" />
<text x="1017.81" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (43 samples, 0.15%)</title><rect x="1023.8" y="885" width="1.7" height="15.0" fill="rgb(236,208,25)" rx="2" ry="2" />
<text x="1026.80" y="895.5" ></text>
</g>
<g >
<title>epoll_wait (9 samples, 0.03%)</title><rect x="1057.3" y="1189" width="0.4" height="15.0" fill="rgb(227,56,22)" rx="2" ry="2" />
<text x="1060.34" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (172 samples, 0.58%)</title><rect x="979.6" y="1077" width="6.9" height="15.0" fill="rgb(217,205,21)" rx="2" ry="2" />
<text x="982.59" y="1087.5" ></text>
</g>
<g >
<title>__accumulate_pelt_segments (5 samples, 0.02%)</title><rect x="1111.6" y="1109" width="0.2" height="15.0" fill="rgb(217,200,44)" rx="2" ry="2" />
<text x="1114.57" y="1119.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (4 samples, 0.01%)</title><rect x="97.8" y="981" width="0.2" height="15.0" fill="rgb(228,113,27)" rx="2" ry="2" />
<text x="100.81" y="991.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (28 samples, 0.09%)</title><rect x="1022.0" y="981" width="1.1" height="15.0" fill="rgb(206,197,37)" rx="2" ry="2" />
<text x="1024.96" y="991.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1038.9" y="1013" width="0.1" height="15.0" fill="rgb(217,22,8)" rx="2" ry="2" />
<text x="1041.85" y="1023.5" ></text>
</g>
<g >
<title>tick_sched_timer (4 samples, 0.01%)</title><rect x="156.8" y="1109" width="0.2" height="15.0" fill="rgb(205,106,47)" rx="2" ry="2" />
<text x="159.84" y="1119.5" ></text>
</g>
<g >
<title>large_ralloc (7 samples, 0.02%)</title><rect x="1011.2" y="901" width="0.3" height="15.0" fill="rgb(234,128,44)" rx="2" ry="2" />
<text x="1014.18" y="911.5" ></text>
</g>
<g >
<title>__sched_text_start (5 samples, 0.02%)</title><rect x="1057.5" y="1061" width="0.2" height="15.0" fill="rgb(222,188,5)" rx="2" ry="2" />
<text x="1060.46" y="1071.5" ></text>
</g>
<g >
<title>x86_pmu_enable_all (152 samples, 0.51%)</title><rect x="1159.5" y="1141" width="6.1" height="15.0" fill="rgb(237,151,7)" rx="2" ry="2" />
<text x="1162.49" y="1151.5" ></text>
</g>
<g >
<title>schedule (5 samples, 0.02%)</title><rect x="1057.5" y="1077" width="0.2" height="15.0" fill="rgb(240,32,50)" rx="2" ry="2" />
<text x="1060.46" y="1087.5" ></text>
</g>
<g >
<title>do_exit (5 samples, 0.02%)</title><rect x="1176.1" y="1237" width="0.2" height="15.0" fill="rgb(227,178,17)" rx="2" ry="2" />
<text x="1179.10" y="1247.5" ></text>
</g>
<g >
<title>ret_from_fork (54 samples, 0.18%)</title><rect x="1077.9" y="1301" width="2.2" height="15.0" fill="rgb(223,1,8)" rx="2" ry="2" />
<text x="1080.91" y="1311.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (42 samples, 0.14%)</title><rect x="1023.8" y="789" width="1.7" height="15.0" fill="rgb(218,190,25)" rx="2" ry="2" />
<text x="1026.80" y="799.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="194.9" y="1029" width="0.2" height="15.0" fill="rgb(220,160,35)" rx="2" ry="2" />
<text x="197.93" y="1039.5" ></text>
</g>
<g >
<title>acpi_idle_do_entry (5 samples, 0.02%)</title><rect x="1096.2" y="1205" width="0.2" height="15.0" fill="rgb(252,10,53)" rx="2" ry="2" />
<text x="1099.20" y="1215.5" ></text>
</g>
<g >
<title>DB::TCPHandler::sendProgress (5 samples, 0.02%)</title><rect x="1044.5" y="1173" width="0.2" height="15.0" fill="rgb(254,77,39)" rx="2" ry="2" />
<text x="1047.48" y="1183.5" ></text>
</g>
<g >
<title>flush_old_exec (31 samples, 0.10%)</title><rect x="1185.2" y="1173" width="1.2" height="15.0" fill="rgb(215,28,50)" rx="2" ry="2" />
<text x="1188.17" y="1183.5" ></text>
</g>
<g >
<title>__do_page_fault (29 samples, 0.10%)</title><rect x="1034.9" y="709" width="1.2" height="15.0" fill="rgb(241,164,4)" rx="2" ry="2" />
<text x="1037.90" y="719.5" ></text>
</g>
<g >
<title>DB::Aggregator::destroyImpl&lt;DB::AggregationMethodString&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;, 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; (67 samples, 0.23%)</title><rect x="76.1" y="901" width="2.6" height="15.0" fill="rgb(215,81,46)" rx="2" ry="2" />
<text x="79.05" y="911.5" ></text>
</g>
<g >
<title>tick_irq_enter (8 samples, 0.03%)</title><rect x="1101.9" y="1173" width="0.3" height="15.0" fill="rgb(243,42,6)" rx="2" ry="2" />
<text x="1104.87" y="1183.5" ></text>
</g>
<g >
<title>kthread (11 samples, 0.04%)</title><rect x="1072.2" y="1285" width="0.5" height="15.0" fill="rgb(248,81,5)" rx="2" ry="2" />
<text x="1075.24" y="1295.5" ></text>
</g>
<g >
<title>try_to_unmap_one (6 samples, 0.02%)</title><rect x="1035.7" y="597" width="0.2" height="15.0" fill="rgb(247,64,37)" rx="2" ry="2" />
<text x="1038.66" y="607.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5 samples, 0.02%)</title><rect x="156.8" y="1125" width="0.2" height="15.0" fill="rgb(236,128,38)" rx="2" ry="2" />
<text x="159.80" y="1135.5" ></text>
</g>
<g >
<title>_init (7 samples, 0.02%)</title><rect x="1180.5" y="1221" width="0.3" height="15.0" fill="rgb(238,86,23)" rx="2" ry="2" />
<text x="1183.54" y="1231.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionDataHelper&lt;DB::AggregateFunctionSumData&lt;unsigned long&gt;, DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt; &gt;::create (10 samples, 0.03%)</title><rect x="18.0" y="901" width="0.4" height="15.0" fill="rgb(220,151,14)" rx="2" ry="2" />
<text x="20.99" y="911.5" ></text>
</g>
<g >
<title>ret_from_fork (15 samples, 0.05%)</title><rect x="1082.3" y="1301" width="0.6" height="15.0" fill="rgb(249,192,35)" rx="2" ry="2" />
<text x="1085.26" y="1311.5" ></text>
</g>
<g >
<title>execve (4 samples, 0.01%)</title><rect x="1184.8" y="1285" width="0.2" height="15.0" fill="rgb(206,149,14)" rx="2" ry="2" />
<text x="1187.81" y="1295.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="182.8" y="1061" width="0.3" height="15.0" fill="rgb(236,152,10)" rx="2" ry="2" />
<text x="185.79" y="1071.5" ></text>
</g>
<g >
<title>find_lock_entry (14 samples, 0.05%)</title><rect x="1008.1" y="789" width="0.6" height="15.0" fill="rgb(229,150,52)" rx="2" ry="2" />
<text x="1011.14" y="799.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (14 samples, 0.05%)</title><rect x="1022.5" y="837" width="0.6" height="15.0" fill="rgb(210,144,40)" rx="2" ry="2" />
<text x="1025.52" y="847.5" ></text>
</g>
<g >
<title>DB::DataTypeLowCardinality::deserializeBinaryBulkStatePrefix (4 samples, 0.01%)</title><rect x="1010.7" y="1029" width="0.2" height="15.0" fill="rgb(220,9,30)" rx="2" ry="2" />
<text x="1013.74" y="1039.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (5 samples, 0.02%)</title><rect x="1042.2" y="709" width="0.2" height="15.0" fill="rgb(219,82,18)" rx="2" ry="2" />
<text x="1045.21" y="719.5" ></text>
</g>
<g >
<title>exit_mmap (4 samples, 0.01%)</title><rect x="1176.1" y="1205" width="0.2" height="15.0" fill="rgb(237,99,6)" rx="2" ry="2" />
<text x="1179.10" y="1215.5" ></text>
</g>
<g >
<title>DB::ColumnString::serializeValueIntoArena (3 samples, 0.01%)</title><rect x="98.7" y="1157" width="0.2" height="15.0" fill="rgb(235,53,14)" rx="2" ry="2" />
<text x="101.73" y="1167.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromFileBase::ReadBufferFromFileBase (5 samples, 0.02%)</title><rect x="1037.9" y="965" width="0.2" height="15.0" fill="rgb(226,38,50)" rx="2" ry="2" />
<text x="1040.85" y="975.5" ></text>
</g>
<g >
<title>DB::DataTypeFactory::get (61 samples, 0.21%)</title><rect x="210.4" y="1061" width="2.5" height="15.0" fill="rgb(216,47,30)" rx="2" ry="2" />
<text x="213.43" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1069.0" y="1253" width="0.1" height="15.0" fill="rgb(243,228,43)" rx="2" ry="2" />
<text x="1071.96" y="1263.5" ></text>
</g>
<g >
<title>source_load (3 samples, 0.01%)</title><rect x="1090.5" y="1157" width="0.1" height="15.0" fill="rgb(213,37,6)" rx="2" ry="2" />
<text x="1093.49" y="1167.5" ></text>
</g>
<g >
<title>DB::ColumnString::~ColumnString (4 samples, 0.01%)</title><rect x="181.1" y="1205" width="0.2" height="15.0" fill="rgb(208,145,27)" rx="2" ry="2" />
<text x="184.12" y="1215.5" ></text>
</g>
<g >
<title>find_busiest_group (8 samples, 0.03%)</title><rect x="1096.8" y="1125" width="0.3" height="15.0" fill="rgb(223,158,36)" rx="2" ry="2" />
<text x="1099.79" y="1135.5" ></text>
</g>
<g >
<title>epoll_ctl (8 samples, 0.03%)</title><rect x="1044.0" y="1141" width="0.4" height="15.0" fill="rgb(244,28,14)" rx="2" ry="2" />
<text x="1047.04" y="1151.5" ></text>
</g>
<g >
<title>wp_page_copy (7 samples, 0.02%)</title><rect x="1177.6" y="1205" width="0.3" height="15.0" fill="rgb(235,45,27)" rx="2" ry="2" />
<text x="1180.62" y="1215.5" ></text>
</g>
<g >
<title>handle_mm_fault (5 samples, 0.02%)</title><rect x="1010.5" y="965" width="0.2" height="15.0" fill="rgb(235,158,14)" rx="2" ry="2" />
<text x="1013.54" y="975.5" ></text>
</g>
<g >
<title>__vfs_read (34 samples, 0.12%)</title><rect x="1070.5" y="1221" width="1.4" height="15.0" fill="rgb(248,64,1)" rx="2" ry="2" />
<text x="1073.52" y="1231.5" ></text>
</g>
<g >
<title>__irqentry_text_start (392 samples, 1.33%)</title><rect x="1098.1" y="1221" width="15.7" height="15.0" fill="rgb(235,108,43)" rx="2" ry="2" />
<text x="1101.11" y="1231.5" ></text>
</g>
<g >
<title>do_execve (3 samples, 0.01%)</title><rect x="1093.6" y="1237" width="0.1" height="15.0" fill="rgb(226,220,42)" rx="2" ry="2" />
<text x="1096.56" y="1247.5" ></text>
</g>
<g >
<title>DB::ParserBetweenExpression::parseImpl (25 samples, 0.08%)</title><rect x="210.7" y="501" width="1.0" height="15.0" fill="rgb(229,27,14)" rx="2" ry="2" />
<text x="213.75" y="511.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (9 samples, 0.03%)</title><rect x="1025.9" y="949" width="0.3" height="15.0" fill="rgb(225,53,7)" rx="2" ry="2" />
<text x="1028.87" y="959.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.01%)</title><rect x="1052.1" y="1269" width="0.2" height="15.0" fill="rgb(218,12,16)" rx="2" ry="2" />
<text x="1055.15" y="1279.5" ></text>
</g>
<g >
<title>__sched_text_start (21 samples, 0.07%)</title><rect x="1075.6" y="1237" width="0.8" height="15.0" fill="rgb(218,32,34)" rx="2" ry="2" />
<text x="1078.59" y="1247.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (4 samples, 0.01%)</title><rect x="1165.8" y="1125" width="0.2" height="15.0" fill="rgb(229,215,51)" rx="2" ry="2" />
<text x="1168.84" y="1135.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (248 samples, 0.84%)</title><rect x="1155.7" y="1205" width="9.9" height="15.0" fill="rgb(236,212,30)" rx="2" ry="2" />
<text x="1158.66" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="1037.9" y="869" width="0.1" height="15.0" fill="rgb(230,131,27)" rx="2" ry="2" />
<text x="1040.85" y="879.5" ></text>
</g>
<g >
<title>__vfs_read (3 samples, 0.01%)</title><rect x="1026.1" y="853" width="0.1" height="15.0" fill="rgb(237,226,5)" rx="2" ry="2" />
<text x="1029.11" y="863.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3 samples, 0.01%)</title><rect x="204.8" y="805" width="0.1" height="15.0" fill="rgb(246,12,15)" rx="2" ry="2" />
<text x="207.76" y="815.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (1,755 samples, 5.94%)</title><rect x="1097.8" y="1237" width="70.1" height="15.0" fill="rgb(216,109,50)" rx="2" ry="2" />
<text x="1100.83" y="1247.5" >cpuidle..</text>
</g>
<g >
<title>tlb_flush_mmu_free (11 samples, 0.04%)</title><rect x="1185.2" y="1093" width="0.4" height="15.0" fill="rgb(248,100,32)" rx="2" ry="2" />
<text x="1188.21" y="1103.5" ></text>
</g>
<g >
<title>ip_local_deliver (11 samples, 0.04%)</title><rect x="1167.2" y="1045" width="0.4" height="15.0" fill="rgb(206,160,42)" rx="2" ry="2" />
<text x="1170.20" y="1055.5" ></text>
</g>
<g >
<title>close (3 samples, 0.01%)</title><rect x="1053.1" y="1285" width="0.2" height="15.0" fill="rgb(234,73,32)" rx="2" ry="2" />
<text x="1056.15" y="1295.5" ></text>
</g>
<g >
<title>alloc_pages_vma (13 samples, 0.04%)</title><rect x="24.1" y="789" width="0.5" height="15.0" fill="rgb(240,130,11)" rx="2" ry="2" />
<text x="27.10" y="799.5" ></text>
</g>
<g >
<title>__do_page_fault (8 samples, 0.03%)</title><rect x="1181.3" y="1237" width="0.4" height="15.0" fill="rgb(250,212,54)" rx="2" ry="2" />
<text x="1184.33" y="1247.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3 samples, 0.01%)</title><rect x="977.8" y="821" width="0.1" height="15.0" fill="rgb(247,97,52)" rx="2" ry="2" />
<text x="980.79" y="831.5" ></text>
</g>
<g >
<title>rmap_walk_anon (7 samples, 0.02%)</title><rect x="1015.6" y="613" width="0.3" height="15.0" fill="rgb(211,85,31)" rx="2" ry="2" />
<text x="1018.65" y="623.5" ></text>
</g>
<g >
<title>ret_from_fork (155 samples, 0.52%)</title><rect x="1085.6" y="1301" width="6.2" height="15.0" fill="rgb(215,217,24)" rx="2" ry="2" />
<text x="1088.57" y="1311.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="997.3" y="1061" width="0.2" height="15.0" fill="rgb(245,229,33)" rx="2" ry="2" />
<text x="1000.32" y="1071.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1039.8" y="917" width="0.2" height="15.0" fill="rgb(248,219,38)" rx="2" ry="2" />
<text x="1042.85" y="927.5" ></text>
</g>
<g >
<title>realloc (76 samples, 0.26%)</title><rect x="200.6" y="1061" width="3.1" height="15.0" fill="rgb(223,189,25)" rx="2" ry="2" />
<text x="203.64" y="1071.5" ></text>
</g>
<g >
<title>DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::loop (23,632 samples, 79.98%)</title><rect x="96.9" y="1237" width="943.7" height="15.0" fill="rgb(209,0,36)" rx="2" ry="2" />
<text x="99.90" y="1247.5" >DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::loop</text>
</g>
<g >
<title>do_futex (3 samples, 0.01%)</title><rect x="1038.9" y="965" width="0.1" height="15.0" fill="rgb(241,124,54)" rx="2" ry="2" />
<text x="1041.85" y="975.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (11 samples, 0.04%)</title><rect x="1025.8" y="981" width="0.4" height="15.0" fill="rgb(252,165,0)" rx="2" ry="2" />
<text x="1028.79" y="991.5" ></text>
</g>
<g >
<title>sock_sendmsg (40 samples, 0.14%)</title><rect x="1045.9" y="1221" width="1.6" height="15.0" fill="rgb(237,122,32)" rx="2" ry="2" />
<text x="1048.92" y="1231.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (261 samples, 0.88%)</title><rect x="998.9" y="1013" width="10.4" height="15.0" fill="rgb(209,154,44)" rx="2" ry="2" />
<text x="1001.88" y="1023.5" ></text>
</g>
<g >
<title>force_qs_rnp (78 samples, 0.26%)</title><rect x="1085.9" y="1253" width="3.1" height="15.0" fill="rgb(230,215,28)" rx="2" ry="2" />
<text x="1088.89" y="1263.5" ></text>
</g>
<g >
<title>DB::Aggregator::createAggregateStates (3 samples, 0.01%)</title><rect x="17.5" y="901" width="0.1" height="15.0" fill="rgb(206,123,11)" rx="2" ry="2" />
<text x="20.47" y="911.5" ></text>
</g>
<g >
<title>update_process_times (31 samples, 0.10%)</title><rect x="987.0" y="997" width="1.2" height="15.0" fill="rgb(210,66,54)" rx="2" ry="2" />
<text x="989.98" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (21 samples, 0.07%)</title><rect x="1044.8" y="1141" width="0.8" height="15.0" fill="rgb(253,214,51)" rx="2" ry="2" />
<text x="1047.80" y="1151.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (1,099 samples, 3.72%)</title><rect x="996.7" y="1157" width="43.9" height="15.0" fill="rgb(207,105,31)" rx="2" ry="2" />
<text x="999.68" y="1167.5" >DB::..</text>
</g>
<g >
<title>malloc_default (5 samples, 0.02%)</title><rect x="1037.9" y="933" width="0.2" height="15.0" fill="rgb(215,63,38)" rx="2" ry="2" />
<text x="1040.85" y="943.5" ></text>
</g>
<g >
<title>arena_decay (4 samples, 0.01%)</title><rect x="977.8" y="965" width="0.2" height="15.0" fill="rgb(224,98,39)" rx="2" ry="2" />
<text x="980.79" y="975.5" ></text>
</g>
<g >
<title>DB::PODArrayBase&lt;8ul, 4096ul, AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;, 15ul, 16ul&gt;::reserveForNextSize&lt;&gt; (79 samples, 0.27%)</title><rect x="200.6" y="1093" width="3.1" height="15.0" fill="rgb(216,91,18)" rx="2" ry="2" />
<text x="203.56" y="1103.5" ></text>
</g>
<g >
<title>do_munmap (5 samples, 0.02%)</title><rect x="1042.2" y="773" width="0.2" height="15.0" fill="rgb(215,226,51)" rx="2" ry="2" />
<text x="1045.21" y="783.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (20 samples, 0.07%)</title><rect x="210.8" y="85" width="0.8" height="15.0" fill="rgb(252,14,53)" rx="2" ry="2" />
<text x="213.79" y="95.5" ></text>
</g>
<g >
<title>update_dl_rq_load_avg (3 samples, 0.01%)</title><rect x="1112.4" y="1125" width="0.1" height="15.0" fill="rgb(223,164,34)" rx="2" ry="2" />
<text x="1115.41" y="1135.5" ></text>
</g>
<g >
<title>__GI___libc_read (3 samples, 0.01%)</title><rect x="1026.1" y="933" width="0.1" height="15.0" fill="rgb(241,9,51)" rx="2" ry="2" />
<text x="1029.11" y="943.5" ></text>
</g>
<g >
<title>update_nohz_stats (9 samples, 0.03%)</title><rect x="1045.2" y="981" width="0.4" height="15.0" fill="rgb(205,28,25)" rx="2" ry="2" />
<text x="1048.24" y="991.5" ></text>
</g>
<g >
<title>handle_irq (6 samples, 0.02%)</title><rect x="1166.6" y="1189" width="0.2" height="15.0" fill="rgb(239,55,45)" rx="2" ry="2" />
<text x="1169.56" y="1199.5" ></text>
</g>
<g >
<title>handle_mm_fault (25 samples, 0.08%)</title><rect x="1034.9" y="693" width="1.0" height="15.0" fill="rgb(239,67,33)" rx="2" ry="2" />
<text x="1037.94" y="703.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (28 samples, 0.09%)</title><rect x="210.7" y="677" width="1.2" height="15.0" fill="rgb(215,57,0)" rx="2" ry="2" />
<text x="213.75" y="687.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertFrom (3,715 samples, 12.57%)</title><rect x="831.2" y="1077" width="148.4" height="15.0" fill="rgb(226,149,15)" rx="2" ry="2" />
<text x="834.24" y="1087.5" >DB::ColumnVector&lt;u..</text>
</g>
<g >
<title>unmap_vmas (7 samples, 0.02%)</title><rect x="1054.4" y="1125" width="0.3" height="15.0" fill="rgb(231,160,13)" rx="2" ry="2" />
<text x="1057.43" y="1135.5" ></text>
</g>
<g >
<title>DB::FunctionIf::executeTyped&lt;unsigned char, unsigned char&gt; (11 samples, 0.04%)</title><rect x="10.6" y="917" width="0.4" height="15.0" fill="rgb(215,72,27)" rx="2" ry="2" />
<text x="13.56" y="927.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (8 samples, 0.03%)</title><rect x="97.5" y="1157" width="0.3" height="15.0" fill="rgb(212,95,48)" rx="2" ry="2" />
<text x="100.45" y="1167.5" ></text>
</g>
<g >
<title>smp_call_function_many (3 samples, 0.01%)</title><rect x="977.8" y="757" width="0.1" height="15.0" fill="rgb(228,224,10)" rx="2" ry="2" />
<text x="980.79" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (4 samples, 0.01%)</title><rect x="1092.1" y="1237" width="0.2" height="15.0" fill="rgb(207,63,9)" rx="2" ry="2" />
<text x="1095.12" y="1247.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="1045" width="1.0" height="15.0" fill="rgb(252,17,22)" rx="2" ry="2" />
<text x="1045.05" y="1055.5" ></text>
</g>
<g >
<title>execve (4 samples, 0.01%)</title><rect x="1094.7" y="1301" width="0.1" height="15.0" fill="rgb(230,10,47)" rx="2" ry="2" />
<text x="1097.68" y="1311.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertDefault (64 samples, 0.22%)</title><rect x="983.6" y="1061" width="2.5" height="15.0" fill="rgb(222,222,22)" rx="2" ry="2" />
<text x="986.58" y="1071.5" ></text>
</g>
<g >
<title>std::_Sp_counted_ptr_inplace&lt;DB::ExpressionActions, std::allocator&lt;DB::ExpressionActions&gt;, (15 samples, 0.05%)</title><rect x="1042.4" y="933" width="0.6" height="15.0" fill="rgb(217,158,29)" rx="2" ry="2" />
<text x="1045.41" y="943.5" ></text>
</g>
<g >
<title>ttwu_do_activate.isra.7 (18 samples, 0.06%)</title><rect x="1108.0" y="1013" width="0.7" height="15.0" fill="rgb(222,97,2)" rx="2" ry="2" />
<text x="1110.98" y="1023.5" ></text>
</g>
<g >
<title>smp_call_function_many (3 samples, 0.01%)</title><rect x="1001.7" y="757" width="0.1" height="15.0" fill="rgb(233,98,14)" rx="2" ry="2" />
<text x="1004.67" y="767.5" ></text>
</g>
<g >
<title>find_busiest_group (36 samples, 0.12%)</title><rect x="1078.5" y="1189" width="1.4" height="15.0" fill="rgb(225,130,19)" rx="2" ry="2" />
<text x="1081.47" y="1199.5" ></text>
</g>
<g >
<title>arena_decay (3 samples, 0.01%)</title><rect x="985.8" y="965" width="0.1" height="15.0" fill="rgb(210,171,10)" rx="2" ry="2" />
<text x="988.82" y="975.5" ></text>
</g>
<g >
<title>do_softirq (9 samples, 0.03%)</title><rect x="1059.4" y="1093" width="0.3" height="15.0" fill="rgb(243,172,19)" rx="2" ry="2" />
<text x="1062.38" y="1103.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (79 samples, 0.27%)</title><rect x="1005.5" y="853" width="3.2" height="15.0" fill="rgb(220,33,34)" rx="2" ry="2" />
<text x="1008.55" y="863.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (10 samples, 0.03%)</title><rect x="1055.4" y="1205" width="0.4" height="15.0" fill="rgb(232,172,2)" rx="2" ry="2" />
<text x="1058.38" y="1215.5" ></text>
</g>
<g >
<title>DB::ParserTernaryOperatorExpression::parseImpl (29 samples, 0.10%)</title><rect x="210.7" y="757" width="1.2" height="15.0" fill="rgb(245,6,14)" rx="2" ry="2" />
<text x="213.75" y="767.5" ></text>
</g>
<g >
<title>__se_sys_futex (3 samples, 0.01%)</title><rect x="1038.9" y="981" width="0.1" height="15.0" fill="rgb(222,59,2)" rx="2" ry="2" />
<text x="1041.85" y="991.5" ></text>
</g>
<g >
<title>DB::Aggregator::createAggregateStates (3 samples, 0.01%)</title><rect x="12.8" y="917" width="0.2" height="15.0" fill="rgb(245,163,20)" rx="2" ry="2" />
<text x="15.84" y="927.5" ></text>
</g>
<g >
<title>DB::ColumnLowCardinality::insertRangeFrom (16 samples, 0.05%)</title><rect x="1011.1" y="1013" width="0.6" height="15.0" fill="rgb(219,19,2)" rx="2" ry="2" />
<text x="1014.10" y="1023.5" ></text>
</g>
<g >
<title>irq_enter (3 samples, 0.01%)</title><rect x="1166.4" y="1189" width="0.1" height="15.0" fill="rgb(218,138,34)" rx="2" ry="2" />
<text x="1169.40" y="1199.5" ></text>
</g>
<g >
<title>malloc_default (6 samples, 0.02%)</title><rect x="1016.6" y="965" width="0.2" height="15.0" fill="rgb(210,220,13)" rx="2" ry="2" />
<text x="1019.57" y="975.5" ></text>
</g>
<g >
<title>__do_page_fault (5 samples, 0.02%)</title><rect x="18.2" y="869" width="0.2" height="15.0" fill="rgb(229,0,54)" rx="2" ry="2" />
<text x="21.19" y="879.5" ></text>
</g>
<g >
<title>ksys_write (13 samples, 0.04%)</title><rect x="1057.7" y="1141" width="0.6" height="15.0" fill="rgb(231,4,40)" rx="2" ry="2" />
<text x="1060.74" y="1151.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (35 samples, 0.12%)</title><rect x="1014.7" y="949" width="1.3" height="15.0" fill="rgb(218,160,28)" rx="2" ry="2" />
<text x="1017.65" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (13 samples, 0.04%)</title><rect x="1022.0" y="965" width="0.5" height="15.0" fill="rgb(247,16,15)" rx="2" ry="2" />
<text x="1025.00" y="975.5" ></text>
</g>
<g >
<title>ksys_read (32 samples, 0.11%)</title><rect x="1014.8" y="885" width="1.2" height="15.0" fill="rgb(253,197,17)" rx="2" ry="2" />
<text x="1017.77" y="895.5" ></text>
</g>
<g >
<title>page_fault (8 samples, 0.03%)</title><rect x="74.2" y="869" width="0.3" height="15.0" fill="rgb(253,109,4)" rx="2" ry="2" />
<text x="77.17" y="879.5" ></text>
</g>
<g >
<title>__clock_gettime (3 samples, 0.01%)</title><rect x="1041.0" y="1285" width="0.1" height="15.0" fill="rgb(216,202,6)" rx="2" ry="2" />
<text x="1043.97" y="1295.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImpl&lt;DB::AggregationMethodString&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; (455 samples, 1.54%)</title><rect x="12.8" y="933" width="18.2" height="15.0" fill="rgb(248,141,10)" rx="2" ry="2" />
<text x="15.84" y="943.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3 samples, 0.01%)</title><rect x="1069.1" y="1157" width="0.1" height="15.0" fill="rgb(235,208,42)" rx="2" ry="2" />
<text x="1072.12" y="1167.5" ></text>
</g>
<g >
<title>clear_page_rep (5 samples, 0.02%)</title><rect x="75.7" y="757" width="0.2" height="15.0" fill="rgb(244,105,25)" rx="2" ry="2" />
<text x="78.69" y="767.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (2,127 samples, 7.20%)</title><rect x="10.2" y="1157" width="84.9" height="15.0" fill="rgb(242,132,37)" rx="2" ry="2" />
<text x="13.20" y="1167.5" >DB::IBloc..</text>
</g>
<g >
<title>make_child (3 samples, 0.01%)</title><rect x="1189.4" y="1285" width="0.2" height="15.0" fill="rgb(211,196,23)" rx="2" ry="2" />
<text x="1192.44" y="1295.5" ></text>
</g>
<g >
<title>collect_expired_timers (4 samples, 0.01%)</title><rect x="1112.8" y="1141" width="0.2" height="15.0" fill="rgb(225,134,27)" rx="2" ry="2" />
<text x="1115.81" y="1151.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (18 samples, 0.06%)</title><rect x="977.3" y="1045" width="0.7" height="15.0" fill="rgb(241,68,39)" rx="2" ry="2" />
<text x="980.31" y="1055.5" ></text>
</g>
<g >
<title>do_epoll_wait (7 samples, 0.02%)</title><rect x="1057.4" y="1125" width="0.3" height="15.0" fill="rgb(228,171,15)" rx="2" ry="2" />
<text x="1060.38" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (35 samples, 0.12%)</title><rect x="1070.5" y="1269" width="1.4" height="15.0" fill="rgb(233,183,1)" rx="2" ry="2" />
<text x="1073.48" y="1279.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3 samples, 0.01%)</title><rect x="1179.9" y="1173" width="0.2" height="15.0" fill="rgb(226,67,51)" rx="2" ry="2" />
<text x="1182.94" y="1183.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="998.0" y="1029" width="0.1" height="15.0" fill="rgb(251,198,54)" rx="2" ry="2" />
<text x="1000.96" y="1039.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (12 samples, 0.04%)</title><rect x="1054.3" y="1221" width="0.4" height="15.0" fill="rgb(211,104,20)" rx="2" ry="2" />
<text x="1057.27" y="1231.5" ></text>
</g>
<g >
<title>DB::ParserList::parseImpl (37 samples, 0.13%)</title><rect x="210.7" y="869" width="1.4" height="15.0" fill="rgb(237,72,16)" rx="2" ry="2" />
<text x="213.67" y="879.5" ></text>
</g>
<g >
<title>enqueue_task_fair (9 samples, 0.03%)</title><rect x="1108.1" y="997" width="0.3" height="15.0" fill="rgb(251,227,13)" rx="2" ry="2" />
<text x="1111.06" y="1007.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (79 samples, 0.27%)</title><rect x="1005.5" y="837" width="3.2" height="15.0" fill="rgb(248,60,35)" rx="2" ry="2" />
<text x="1008.55" y="847.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (3 samples, 0.01%)</title><rect x="985.8" y="917" width="0.1" height="15.0" fill="rgb(207,194,3)" rx="2" ry="2" />
<text x="988.82" y="927.5" ></text>
</g>
<g >
<title>copy_page_range (16 samples, 0.05%)</title><rect x="1184.2" y="1205" width="0.6" height="15.0" fill="rgb(241,89,2)" rx="2" ry="2" />
<text x="1187.17" y="1215.5" ></text>
</g>
<g >
<title>pick_next_task_fair (8 samples, 0.03%)</title><rect x="1081.9" y="1221" width="0.3" height="15.0" fill="rgb(242,32,45)" rx="2" ry="2" />
<text x="1084.86" y="1231.5" ></text>
</g>
<g >
<title>_copy_to_user (3 samples, 0.01%)</title><rect x="1055.1" y="1173" width="0.1" height="15.0" fill="rgb(222,10,51)" rx="2" ry="2" />
<text x="1058.06" y="1183.5" ></text>
</g>
<g >
<title>zap_page_range (3 samples, 0.01%)</title><rect x="985.8" y="837" width="0.1" height="15.0" fill="rgb(236,90,18)" rx="2" ry="2" />
<text x="988.82" y="847.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromFileBase::ReadBufferFromFileBase (3 samples, 0.01%)</title><rect x="1039.3" y="997" width="0.1" height="15.0" fill="rgb(229,101,3)" rx="2" ry="2" />
<text x="1042.25" y="1007.5" ></text>
</g>
<g >
<title>cpu_startup_entry (1,969 samples, 6.66%)</title><rect x="1097.2" y="1269" width="78.6" height="15.0" fill="rgb(212,29,32)" rx="2" ry="2" />
<text x="1100.19" y="1279.5" >cpu_start..</text>
</g>
<g >
<title>do_syscall_64 (22 samples, 0.07%)</title><rect x="1058.9" y="1269" width="0.9" height="15.0" fill="rgb(244,178,31)" rx="2" ry="2" />
<text x="1061.94" y="1279.5" ></text>
</g>
<g >
<title>__ia32_sys_exit_group (9 samples, 0.03%)</title><rect x="1084.8" y="1269" width="0.4" height="15.0" fill="rgb(242,223,4)" rx="2" ry="2" />
<text x="1087.81" y="1279.5" ></text>
</g>
<g >
<title>DB::ParserArrayElementExpression::parseImpl (23 samples, 0.08%)</title><rect x="210.8" y="165" width="0.9" height="15.0" fill="rgb(211,173,35)" rx="2" ry="2" />
<text x="213.79" y="175.5" ></text>
</g>
<g >
<title>do_idle (1,968 samples, 6.66%)</title><rect x="1097.2" y="1253" width="78.6" height="15.0" fill="rgb(224,107,7)" rx="2" ry="2" />
<text x="1100.23" y="1263.5" >do_idle</text>
</g>
<g >
<title>release_pages (8 samples, 0.03%)</title><rect x="1185.3" y="1077" width="0.3" height="15.0" fill="rgb(237,94,24)" rx="2" ry="2" />
<text x="1188.33" y="1087.5" ></text>
</g>
<g >
<title>arena_ralloc (13 samples, 0.04%)</title><rect x="985.5" y="1013" width="0.5" height="15.0" fill="rgb(252,66,24)" rx="2" ry="2" />
<text x="988.46" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (21 samples, 0.07%)</title><rect x="1031.7" y="901" width="0.8" height="15.0" fill="rgb(224,92,35)" rx="2" ry="2" />
<text x="1034.70" y="911.5" ></text>
</g>
<g >
<title>__remove_hrtimer (3 samples, 0.01%)</title><rect x="986.8" y="1013" width="0.1" height="15.0" fill="rgb(232,181,39)" rx="2" ry="2" />
<text x="989.82" y="1023.5" ></text>
</g>
<g >
<title>try_to_unmap (6 samples, 0.02%)</title><rect x="1035.7" y="629" width="0.2" height="15.0" fill="rgb(249,218,26)" rx="2" ry="2" />
<text x="1038.66" y="639.5" ></text>
</g>
<g >
<title>find_busiest_group (8 samples, 0.03%)</title><rect x="1081.9" y="1189" width="0.3" height="15.0" fill="rgb(253,11,44)" rx="2" ry="2" />
<text x="1084.86" y="1199.5" ></text>
</g>
<g >
<title>zap_page_range (5 samples, 0.02%)</title><rect x="181.5" y="1013" width="0.2" height="15.0" fill="rgb(233,131,2)" rx="2" ry="2" />
<text x="184.48" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="181.5" y="1109" width="0.2" height="15.0" fill="rgb(216,189,46)" rx="2" ry="2" />
<text x="184.48" y="1119.5" ></text>
</g>
<g >
<title>vfs_read (3 samples, 0.01%)</title><rect x="1026.1" y="869" width="0.1" height="15.0" fill="rgb(226,24,49)" rx="2" ry="2" />
<text x="1029.11" y="879.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (12 samples, 0.04%)</title><rect x="1011.1" y="949" width="0.5" height="15.0" fill="rgb(233,118,24)" rx="2" ry="2" />
<text x="1014.14" y="959.5" ></text>
</g>
<g >
<title>DB::Client::writeProgress (26 samples, 0.09%)</title><rect x="1057.7" y="1221" width="1.0" height="15.0" fill="rgb(230,32,27)" rx="2" ry="2" />
<text x="1060.70" y="1231.5" ></text>
</g>
<g >
<title>execve (5 samples, 0.02%)</title><rect x="1094.1" y="1269" width="0.2" height="15.0" fill="rgb(212,157,26)" rx="2" ry="2" />
<text x="1097.08" y="1279.5" ></text>
</g>
<g >
<title>DB::ConfigProcessor::getConfigMergeFiles (7 samples, 0.02%)</title><rect x="95.5" y="1205" width="0.3" height="15.0" fill="rgb(220,127,30)" rx="2" ry="2" />
<text x="98.54" y="1215.5" ></text>
</g>
<g >
<title>DB::Block::Block (3 samples, 0.01%)</title><rect x="210.1" y="1109" width="0.1" height="15.0" fill="rgb(225,196,10)" rx="2" ry="2" />
<text x="213.11" y="1119.5" ></text>
</g>
<g >
<title>malloc (3 samples, 0.01%)</title><rect x="1186.4" y="1301" width="0.1" height="15.0" fill="rgb(216,201,26)" rx="2" ry="2" />
<text x="1189.41" y="1311.5" ></text>
</g>
<g >
<title>haveged (4 samples, 0.01%)</title><rect x="1067.4" y="1317" width="0.2" height="15.0" fill="rgb(236,178,54)" rx="2" ry="2" />
<text x="1070.40" y="1327.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (40 samples, 0.14%)</title><rect x="210.6" y="917" width="1.6" height="15.0" fill="rgb(251,18,29)" rx="2" ry="2" />
<text x="213.63" y="927.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="201.4" y="981" width="0.2" height="15.0" fill="rgb(234,43,26)" rx="2" ry="2" />
<text x="204.40" y="991.5" ></text>
</g>
<g >
<title>rcu_sched (159 samples, 0.54%)</title><rect x="1085.4" y="1317" width="6.4" height="15.0" fill="rgb(237,60,16)" rx="2" ry="2" />
<text x="1088.41" y="1327.5" ></text>
</g>
<g >
<title>DB::Block::erase (5 samples, 0.02%)</title><rect x="10.2" y="965" width="0.2" height="15.0" fill="rgb(250,117,35)" rx="2" ry="2" />
<text x="13.20" y="975.5" ></text>
</g>
<g >
<title>do_iter_read (5 samples, 0.02%)</title><rect x="1031.1" y="869" width="0.2" height="15.0" fill="rgb(225,181,2)" rx="2" ry="2" />
<text x="1034.06" y="879.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned short&gt;::deserializeBinaryBulk (95 samples, 0.32%)</title><rect x="1027.8" y="1029" width="3.8" height="15.0" fill="rgb(230,14,22)" rx="2" ry="2" />
<text x="1030.83" y="1039.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (2,127 samples, 7.20%)</title><rect x="10.2" y="1189" width="84.9" height="15.0" fill="rgb(237,22,43)" rx="2" ry="2" />
<text x="13.20" y="1199.5" >DB::IBloc..</text>
</g>
<g >
<title>smp_call_function_many (7 samples, 0.02%)</title><rect x="1015.6" y="549" width="0.3" height="15.0" fill="rgb(248,5,19)" rx="2" ry="2" />
<text x="1018.65" y="559.5" ></text>
</g>
<g >
<title>m_show (3 samples, 0.01%)</title><rect x="1055.2" y="1173" width="0.1" height="15.0" fill="rgb(246,81,0)" rx="2" ry="2" />
<text x="1058.18" y="1183.5" ></text>
</g>
<g >
<title>scheduler_tick (27 samples, 0.09%)</title><rect x="1100.2" y="1125" width="1.1" height="15.0" fill="rgb(205,213,2)" rx="2" ry="2" />
<text x="1103.19" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="1051.4" y="1237" width="0.3" height="15.0" fill="rgb(206,112,24)" rx="2" ry="2" />
<text x="1054.43" y="1247.5" ></text>
</g>
<g >
<title>change_protection (5 samples, 0.02%)</title><rect x="993.0" y="981" width="0.2" height="15.0" fill="rgb(245,98,37)" rx="2" ry="2" />
<text x="995.97" y="991.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1025.9" y="789" width="0.2" height="15.0" fill="rgb(234,62,42)" rx="2" ry="2" />
<text x="1028.87" y="799.5" ></text>
</g>
<g >
<title>do_execve (11 samples, 0.04%)</title><rect x="1052.3" y="1205" width="0.4" height="15.0" fill="rgb(244,206,19)" rx="2" ry="2" />
<text x="1055.31" y="1215.5" ></text>
</g>
<g >
<title>__x64_sys_execve (12 samples, 0.04%)</title><rect x="1054.3" y="1253" width="0.4" height="15.0" fill="rgb(212,162,10)" rx="2" ry="2" />
<text x="1057.27" y="1263.5" ></text>
</g>
<g >
<title>proc_reg_read (10 samples, 0.03%)</title><rect x="1070.5" y="1205" width="0.4" height="15.0" fill="rgb(243,133,9)" rx="2" ry="2" />
<text x="1073.52" y="1215.5" ></text>
</g>
<g >
<title>memcpy (76 samples, 0.26%)</title><rect x="143.1" y="1157" width="3.0" height="15.0" fill="rgb(249,164,20)" rx="2" ry="2" />
<text x="146.06" y="1167.5" ></text>
</g>
<g >
<title>tcp_v4_rcv (9 samples, 0.03%)</title><rect x="1167.3" y="1013" width="0.3" height="15.0" fill="rgb(240,184,50)" rx="2" ry="2" />
<text x="1170.28" y="1023.5" ></text>
</g>
<g >
<title>__se_sys_futex (4 samples, 0.01%)</title><rect x="1039.5" y="997" width="0.1" height="15.0" fill="rgb(226,26,7)" rx="2" ry="2" />
<text x="1042.49" y="1007.5" ></text>
</g>
<g >
<title>inode_permission (3 samples, 0.01%)</title><rect x="1039.0" y="917" width="0.1" height="15.0" fill="rgb(253,100,46)" rx="2" ry="2" />
<text x="1042.01" y="927.5" ></text>
</g>
<g >
<title>DB::WriteBuffer::next (14 samples, 0.05%)</title><rect x="1057.7" y="1205" width="0.6" height="15.0" fill="rgb(219,112,14)" rx="2" ry="2" />
<text x="1060.70" y="1215.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::~IBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="1013" width="1.0" height="15.0" fill="rgb(253,212,53)" rx="2" ry="2" />
<text x="1045.05" y="1023.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (4 samples, 0.01%)</title><rect x="28.4" y="757" width="0.2" height="15.0" fill="rgb(243,178,52)" rx="2" ry="2" />
<text x="31.45" y="767.5" ></text>
</g>
<g >
<title>Poco::DirectoryIterator::DirectoryIterator (3 samples, 0.01%)</title><rect x="95.5" y="1189" width="0.2" height="15.0" fill="rgb(220,159,33)" rx="2" ry="2" />
<text x="98.54" y="1199.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; (20 samples, 0.07%)</title><rect x="98.2" y="1189" width="0.8" height="15.0" fill="rgb(213,115,43)" rx="2" ry="2" />
<text x="101.21" y="1199.5" ></text>
</g>
<g >
<title>large_dalloc (5 samples, 0.02%)</title><rect x="230.0" y="1077" width="0.2" height="15.0" fill="rgb(246,147,47)" rx="2" ry="2" />
<text x="232.95" y="1087.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (3 samples, 0.01%)</title><rect x="1036.6" y="901" width="0.1" height="15.0" fill="rgb(229,100,45)" rx="2" ry="2" />
<text x="1039.57" y="911.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::progressImpl (14 samples, 0.05%)</title><rect x="997.0" y="1109" width="0.6" height="15.0" fill="rgb(212,193,46)" rx="2" ry="2" />
<text x="1000.00" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1068.8" y="1253" width="0.2" height="15.0" fill="rgb(246,202,11)" rx="2" ry="2" />
<text x="1071.76" y="1263.5" ></text>
</g>
<g >
<title>exit_mmap (4 samples, 0.01%)</title><rect x="1189.8" y="1141" width="0.2" height="15.0" fill="rgb(238,91,15)" rx="2" ry="2" />
<text x="1192.84" y="1151.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (13 samples, 0.04%)</title><rect x="1022.0" y="949" width="0.5" height="15.0" fill="rgb(219,127,27)" rx="2" ry="2" />
<text x="1025.00" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1039.0" y="1013" width="0.2" height="15.0" fill="rgb(219,177,13)" rx="2" ry="2" />
<text x="1042.01" y="1023.5" ></text>
</g>
<g >
<title>__switch_to_asm (4 samples, 0.01%)</title><rect x="1096.0" y="1301" width="0.1" height="15.0" fill="rgb(236,88,54)" rx="2" ry="2" />
<text x="1098.96" y="1311.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; (11 samples, 0.04%)</title><rect x="96.0" y="1205" width="0.5" height="15.0" fill="rgb(208,215,50)" rx="2" ry="2" />
<text x="99.02" y="1215.5" ></text>
</g>
<g >
<title>process_one_work (5 samples, 0.02%)</title><rect x="1081.7" y="1253" width="0.2" height="15.0" fill="rgb(252,64,49)" rx="2" ry="2" />
<text x="1084.66" y="1263.5" ></text>
</g>
<g >
<title>try_to_unmap (3 samples, 0.01%)</title><rect x="1010.6" y="901" width="0.1" height="15.0" fill="rgb(237,166,24)" rx="2" ry="2" />
<text x="1013.58" y="911.5" ></text>
</g>
<g >
<title>HashTable&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;::resize (171 samples, 0.58%)</title><rect x="18.4" y="901" width="6.8" height="15.0" fill="rgb(210,9,21)" rx="2" ry="2" />
<text x="21.39" y="911.5" ></text>
</g>
<g >
<title>__vfs_read (14 samples, 0.05%)</title><rect x="1022.5" y="885" width="0.6" height="15.0" fill="rgb(248,36,7)" rx="2" ry="2" />
<text x="1025.52" y="895.5" ></text>
</g>
<g >
<title>call_timer_fn (15 samples, 0.05%)</title><rect x="1113.0" y="1125" width="0.6" height="15.0" fill="rgb(213,173,23)" rx="2" ry="2" />
<text x="1116.01" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.01%)</title><rect x="1066.9" y="1301" width="0.2" height="15.0" fill="rgb(237,105,44)" rx="2" ry="2" />
<text x="1069.92" y="1311.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (3 samples, 0.01%)</title><rect x="1023.0" y="725" width="0.1" height="15.0" fill="rgb(230,18,12)" rx="2" ry="2" />
<text x="1025.96" y="735.5" ></text>
</g>
<g >
<title>od_dbs_update (5 samples, 0.02%)</title><rect x="1073.1" y="1221" width="0.2" height="15.0" fill="rgb(238,48,43)" rx="2" ry="2" />
<text x="1076.11" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="229.4" y="1061" width="0.2" height="15.0" fill="rgb(230,50,19)" rx="2" ry="2" />
<text x="232.44" y="1071.5" ></text>
</g>
<g >
<title>decay_load (3 samples, 0.01%)</title><rect x="1111.7" y="1093" width="0.1" height="15.0" fill="rgb(232,140,34)" rx="2" ry="2" />
<text x="1114.65" y="1103.5" ></text>
</g>
<g >
<title>sock_def_readable (5 samples, 0.02%)</title><rect x="1047.0" y="853" width="0.2" height="15.0" fill="rgb(228,202,10)" rx="2" ry="2" />
<text x="1049.96" y="863.5" ></text>
</g>
<g >
<title>__irqentry_text_start (16 samples, 0.05%)</title><rect x="978.0" y="1061" width="0.7" height="15.0" fill="rgb(231,217,44)" rx="2" ry="2" />
<text x="981.03" y="1071.5" ></text>
</g>
<g >
<title>epoll_create (21 samples, 0.07%)</title><rect x="1061.0" y="1253" width="0.9" height="15.0" fill="rgb(250,227,26)" rx="2" ry="2" />
<text x="1064.01" y="1263.5" ></text>
</g>
<g >
<title>large_palloc (3 samples, 0.01%)</title><rect x="194.8" y="1045" width="0.1" height="15.0" fill="rgb(207,59,35)" rx="2" ry="2" />
<text x="197.81" y="1055.5" ></text>
</g>
<g >
<title>__xstat64 (4 samples, 0.01%)</title><rect x="1039.8" y="1061" width="0.2" height="15.0" fill="rgb(242,106,19)" rx="2" ry="2" />
<text x="1042.85" y="1071.5" ></text>
</g>
<g >
<title>update_nohz_stats (10 samples, 0.03%)</title><rect x="1081.1" y="1173" width="0.4" height="15.0" fill="rgb(208,228,47)" rx="2" ry="2" />
<text x="1084.06" y="1183.5" ></text>
</g>
<g >
<title>seq_read (7 samples, 0.02%)</title><rect x="1055.1" y="1189" width="0.2" height="15.0" fill="rgb(214,44,35)" rx="2" ry="2" />
<text x="1058.06" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1039.3" y="901" width="0.1" height="15.0" fill="rgb(222,12,39)" rx="2" ry="2" />
<text x="1042.25" y="911.5" ></text>
</g>
<g >
<title>ksys_read (95 samples, 0.32%)</title><rect x="1032.7" y="885" width="3.8" height="15.0" fill="rgb(246,77,9)" rx="2" ry="2" />
<text x="1035.70" y="895.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (3 samples, 0.01%)</title><rect x="977.8" y="805" width="0.1" height="15.0" fill="rgb(247,214,27)" rx="2" ry="2" />
<text x="980.79" y="815.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (42 samples, 0.14%)</title><rect x="1045.9" y="1253" width="1.7" height="15.0" fill="rgb(219,71,5)" rx="2" ry="2" />
<text x="1048.88" y="1263.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (23 samples, 0.08%)</title><rect x="1044.8" y="1173" width="0.9" height="15.0" fill="rgb(244,156,1)" rx="2" ry="2" />
<text x="1047.76" y="1183.5" ></text>
</g>
<g >
<title>kthread_data (7 samples, 0.02%)</title><rect x="1108.4" y="981" width="0.3" height="15.0" fill="rgb(238,40,18)" rx="2" ry="2" />
<text x="1111.42" y="991.5" ></text>
</g>
<g >
<title>queue_work_on (8 samples, 0.03%)</title><rect x="988.6" y="949" width="0.3" height="15.0" fill="rgb(205,74,35)" rx="2" ry="2" />
<text x="991.57" y="959.5" ></text>
</g>
<g >
<title>byobu-status (208 samples, 0.70%)</title><rect x="1047.6" y="1317" width="8.3" height="15.0" fill="rgb(226,130,22)" rx="2" ry="2" />
<text x="1050.64" y="1327.5" ></text>
</g>
<g >
<title>page_fault (60 samples, 0.20%)</title><rect x="22.7" y="885" width="2.4" height="15.0" fill="rgb(215,171,34)" rx="2" ry="2" />
<text x="25.70" y="895.5" ></text>
</g>
<g >
<title>[dash] (42 samples, 0.14%)</title><rect x="1047.6" y="1301" width="1.7" height="15.0" fill="rgb(206,225,42)" rx="2" ry="2" />
<text x="1050.64" y="1311.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1038.6" y="869" width="0.1" height="15.0" fill="rgb(228,51,26)" rx="2" ry="2" />
<text x="1041.61" y="879.5" ></text>
</g>
<g >
<title>large_ralloc (12 samples, 0.04%)</title><rect x="985.5" y="997" width="0.5" height="15.0" fill="rgb(212,121,1)" rx="2" ry="2" />
<text x="988.50" y="1007.5" ></text>
</g>
<g >
<title>__sys_sendto (4 samples, 0.01%)</title><rect x="997.3" y="1013" width="0.2" height="15.0" fill="rgb(211,209,26)" rx="2" ry="2" />
<text x="1000.32" y="1023.5" ></text>
</g>
<g >
<title>futex_wake (4 samples, 0.01%)</title><rect x="1038.2" y="933" width="0.1" height="15.0" fill="rgb(228,144,10)" rx="2" ry="2" />
<text x="1041.17" y="943.5" ></text>
</g>
<g >
<title>do_select (4 samples, 0.01%)</title><rect x="1067.4" y="1173" width="0.2" height="15.0" fill="rgb(233,41,32)" rx="2" ry="2" />
<text x="1070.40" y="1183.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3 samples, 0.01%)</title><rect x="1043.7" y="1013" width="0.1" height="15.0" fill="rgb(234,184,19)" rx="2" ry="2" />
<text x="1046.72" y="1023.5" ></text>
</g>
<g >
<title>copy_page_to_iter (7 samples, 0.02%)</title><rect x="1055.4" y="1189" width="0.3" height="15.0" fill="rgb(247,218,46)" rx="2" ry="2" />
<text x="1058.42" y="1199.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1038.4" y="965" width="0.1" height="15.0" fill="rgb(233,33,20)" rx="2" ry="2" />
<text x="1041.41" y="975.5" ></text>
</g>
<g >
<title>DB::tryParseQuery (57 samples, 0.19%)</title><rect x="210.6" y="1029" width="2.3" height="15.0" fill="rgb(244,54,21)" rx="2" ry="2" />
<text x="213.59" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.02%)</title><rect x="1016.5" y="981" width="0.3" height="15.0" fill="rgb(229,101,33)" rx="2" ry="2" />
<text x="1019.53" y="991.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (79 samples, 0.27%)</title><rect x="998.9" y="981" width="3.2" height="15.0" fill="rgb(247,32,38)" rx="2" ry="2" />
<text x="1001.92" y="991.5" ></text>
</g>
<g >
<title>__handle_mm_fault (25 samples, 0.08%)</title><rect x="1034.9" y="677" width="1.0" height="15.0" fill="rgb(229,107,33)" rx="2" ry="2" />
<text x="1037.94" y="687.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="205.1" y="949" width="0.1" height="15.0" fill="rgb(244,70,34)" rx="2" ry="2" />
<text x="208.08" y="959.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (68 samples, 0.23%)</title><rect x="986.7" y="1061" width="2.7" height="15.0" fill="rgb(248,35,8)" rx="2" ry="2" />
<text x="989.66" y="1071.5" ></text>
</g>
<g >
<title>std::vector&lt;DB::ColumnWithTypeAndName, std::allocator&lt;DB::ColumnWithTypeAndName&gt; &gt;::~vector (11 samples, 0.04%)</title><rect x="229.9" y="1141" width="0.4" height="15.0" fill="rgb(219,194,48)" rx="2" ry="2" />
<text x="232.87" y="1151.5" ></text>
</g>
<g >
<title>queue_work_on (40 samples, 0.14%)</title><rect x="1107.3" y="1061" width="1.6" height="15.0" fill="rgb(249,69,54)" rx="2" ry="2" />
<text x="1110.30" y="1071.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (6 samples, 0.02%)</title><rect x="1039.2" y="1045" width="0.3" height="15.0" fill="rgb(222,13,35)" rx="2" ry="2" />
<text x="1042.21" y="1055.5" ></text>
</g>
<g >
<title>ipv6_rcv (12 samples, 0.04%)</title><rect x="1046.7" y="949" width="0.5" height="15.0" fill="rgb(217,146,2)" rx="2" ry="2" />
<text x="1049.68" y="959.5" ></text>
</g>
<g >
<title>__sched_text_start (38 samples, 0.13%)</title><rect x="1172.1" y="1221" width="1.5" height="15.0" fill="rgb(249,107,32)" rx="2" ry="2" />
<text x="1175.11" y="1231.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1084.2" y="1285" width="0.2" height="15.0" fill="rgb(254,186,24)" rx="2" ry="2" />
<text x="1087.22" y="1295.5" ></text>
</g>
<g >
<title>__irqentry_text_start (7 samples, 0.02%)</title><rect x="156.8" y="1173" width="0.3" height="15.0" fill="rgb(225,80,21)" rx="2" ry="2" />
<text x="159.80" y="1183.5" ></text>
</g>
<g >
<title>link_path_walk (4 samples, 0.01%)</title><rect x="1070.0" y="1189" width="0.1" height="15.0" fill="rgb(252,193,11)" rx="2" ry="2" />
<text x="1072.96" y="1199.5" ></text>
</g>
<g >
<title>copy_page_to_iter (50 samples, 0.17%)</title><rect x="1005.5" y="821" width="2.0" height="15.0" fill="rgb(246,196,31)" rx="2" ry="2" />
<text x="1008.55" y="831.5" ></text>
</g>
<g >
<title>DB::ThreadStatus::updatePerformanceCounters (11 samples, 0.04%)</title><rect x="997.1" y="1093" width="0.4" height="15.0" fill="rgb(222,35,52)" rx="2" ry="2" />
<text x="1000.08" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1187.3" y="1253" width="0.3" height="15.0" fill="rgb(212,23,38)" rx="2" ry="2" />
<text x="1190.32" y="1263.5" ></text>
</g>
<g >
<title>select_task_rq_fair (4 samples, 0.01%)</title><rect x="1052.5" y="1157" width="0.2" height="15.0" fill="rgb(237,29,6)" rx="2" ry="2" />
<text x="1055.55" y="1167.5" ></text>
</g>
<g >
<title>free_unref_page_list (7 samples, 0.02%)</title><rect x="79.5" y="709" width="0.3" height="15.0" fill="rgb(253,29,53)" rx="2" ry="2" />
<text x="82.52" y="719.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="182.6" y="1029" width="0.1" height="15.0" fill="rgb(244,22,13)" rx="2" ry="2" />
<text x="185.55" y="1039.5" ></text>
</g>
<g >
<title>update_blocked_averages (4 samples, 0.01%)</title><rect x="1081.3" y="1157" width="0.2" height="15.0" fill="rgb(234,154,53)" rx="2" ry="2" />
<text x="1084.30" y="1167.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3 samples, 0.01%)</title><rect x="18.2" y="805" width="0.1" height="15.0" fill="rgb(231,88,27)" rx="2" ry="2" />
<text x="21.23" y="815.5" ></text>
</g>
<g >
<title>do_wp_page (6 samples, 0.02%)</title><rect x="1181.4" y="1189" width="0.2" height="15.0" fill="rgb(222,202,27)" rx="2" ry="2" />
<text x="1184.37" y="1199.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (4 samples, 0.01%)</title><rect x="201.4" y="853" width="0.2" height="15.0" fill="rgb(227,116,34)" rx="2" ry="2" />
<text x="204.40" y="863.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (44 samples, 0.15%)</title><rect x="1014.3" y="997" width="1.8" height="15.0" fill="rgb(241,203,26)" rx="2" ry="2" />
<text x="1017.33" y="1007.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (8 samples, 0.03%)</title><rect x="1023.4" y="917" width="0.3" height="15.0" fill="rgb(217,97,11)" rx="2" ry="2" />
<text x="1026.40" y="927.5" ></text>
</g>
<g >
<title>__handle_mm_fault (37 samples, 0.13%)</title><rect x="23.6" y="837" width="1.5" height="15.0" fill="rgb(213,58,48)" rx="2" ry="2" />
<text x="26.58" y="847.5" ></text>
</g>
<g >
<title>__sched_text_start (3 samples, 0.01%)</title><rect x="1039.5" y="917" width="0.1" height="15.0" fill="rgb(244,40,31)" rx="2" ry="2" />
<text x="1042.53" y="927.5" ></text>
</g>
<g >
<title>load_elf_binary (11 samples, 0.04%)</title><rect x="1054.3" y="1189" width="0.4" height="15.0" fill="rgb(243,182,53)" rx="2" ry="2" />
<text x="1057.27" y="1199.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="206.8" y="981" width="0.1" height="15.0" fill="rgb(222,159,25)" rx="2" ry="2" />
<text x="209.75" y="991.5" ></text>
</g>
<g >
<title>worker_thread (3 samples, 0.01%)</title><rect x="1072.7" y="1269" width="0.1" height="15.0" fill="rgb(246,96,45)" rx="2" ry="2" />
<text x="1075.67" y="1279.5" ></text>
</g>
<g >
<title>kworker/26:2-ev (29 samples, 0.10%)</title><rect x="1075.3" y="1317" width="1.2" height="15.0" fill="rgb(254,16,34)" rx="2" ry="2" />
<text x="1078.31" y="1327.5" ></text>
</g>
<g >
<title>handle_mm_fault (8 samples, 0.03%)</title><rect x="1001.5" y="901" width="0.3" height="15.0" fill="rgb(234,30,35)" rx="2" ry="2" />
<text x="1004.51" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.03%)</title><rect x="1061.9" y="1237" width="0.4" height="15.0" fill="rgb(212,38,44)" rx="2" ry="2" />
<text x="1064.89" y="1247.5" ></text>
</g>
<g >
<title>__se_sys_madvise (3 samples, 0.01%)</title><rect x="232.3" y="933" width="0.1" height="15.0" fill="rgb(215,192,27)" rx="2" ry="2" />
<text x="235.27" y="943.5" ></text>
</g>
<g >
<title>memequalSSE2Wide (13 samples, 0.04%)</title><rect x="30.5" y="917" width="0.5" height="15.0" fill="rgb(252,33,50)" rx="2" ry="2" />
<text x="33.49" y="927.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3 samples, 0.01%)</title><rect x="1010.6" y="837" width="0.1" height="15.0" fill="rgb(246,228,22)" rx="2" ry="2" />
<text x="1013.58" y="847.5" ></text>
</g>
<g >
<title>ThreadFromGlobalPool::ThreadFromGlobalPool&lt;DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::process (23,640 samples, 80.00%)</title><rect x="96.7" y="1269" width="944.0" height="15.0" fill="rgb(221,181,50)" rx="2" ry="2" />
<text x="99.66" y="1279.5" >ThreadFromGlobalPool::ThreadFromGlobalPool&lt;DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::process</text>
</g>
<g >
<title>do_epoll_create (18 samples, 0.06%)</title><rect x="1061.1" y="1189" width="0.8" height="15.0" fill="rgb(242,208,52)" rx="2" ry="2" />
<text x="1064.13" y="1199.5" ></text>
</g>
<g >
<title>ptep_clear_flush (7 samples, 0.02%)</title><rect x="24.7" y="789" width="0.3" height="15.0" fill="rgb(217,102,6)" rx="2" ry="2" />
<text x="27.74" y="799.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="1032.4" y="853" width="0.1" height="15.0" fill="rgb(227,0,19)" rx="2" ry="2" />
<text x="1035.42" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.04%)</title><rect x="1052.3" y="1253" width="0.4" height="15.0" fill="rgb(242,175,14)" rx="2" ry="2" />
<text x="1055.31" y="1263.5" ></text>
</g>
<g >
<title>run_posix_cpu_timers (5 samples, 0.02%)</title><rect x="1099.5" y="1141" width="0.2" height="15.0" fill="rgb(216,188,46)" rx="2" ry="2" />
<text x="1102.47" y="1151.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (126 samples, 0.43%)</title><rect x="1031.7" y="981" width="5.0" height="15.0" fill="rgb(252,151,41)" rx="2" ry="2" />
<text x="1034.66" y="991.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (7 samples, 0.02%)</title><rect x="204.7" y="949" width="0.3" height="15.0" fill="rgb(234,98,29)" rx="2" ry="2" />
<text x="207.72" y="959.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.01%)</title><rect x="1067.4" y="1301" width="0.2" height="15.0" fill="rgb(229,172,9)" rx="2" ry="2" />
<text x="1070.40" y="1311.5" ></text>
</g>
<g >
<title>ovl_read_iter (3 samples, 0.01%)</title><rect x="1026.1" y="837" width="0.1" height="15.0" fill="rgb(224,145,47)" rx="2" ry="2" />
<text x="1029.11" y="847.5" ></text>
</g>
<g >
<title>large_palloc (12 samples, 0.04%)</title><rect x="204.7" y="1013" width="0.5" height="15.0" fill="rgb(208,12,13)" rx="2" ry="2" />
<text x="207.72" y="1023.5" ></text>
</g>
<g >
<title>find_lock_entry (6 samples, 0.02%)</title><rect x="1036.3" y="741" width="0.2" height="15.0" fill="rgb(253,213,43)" rx="2" ry="2" />
<text x="1039.26" y="751.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1060.7" y="1093" width="0.1" height="15.0" fill="rgb(241,226,28)" rx="2" ry="2" />
<text x="1063.65" y="1103.5" ></text>
</g>
<g >
<title>double_conversion::DoubleToStringConverter::ToFixed (4 samples, 0.01%)</title><rect x="1058.3" y="1189" width="0.2" height="15.0" fill="rgb(233,66,5)" rx="2" ry="2" />
<text x="1061.34" y="1199.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (1,743 samples, 5.90%)</title><rect x="10.2" y="1045" width="69.6" height="15.0" fill="rgb(208,197,1)" rx="2" ry="2" />
<text x="13.20" y="1055.5" >DB::Exp..</text>
</g>
<g >
<title>__do_page_fault (12 samples, 0.04%)</title><rect x="1015.5" y="709" width="0.5" height="15.0" fill="rgb(226,193,36)" rx="2" ry="2" />
<text x="1018.49" y="719.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="201.1" y="949" width="0.1" height="15.0" fill="rgb(226,165,37)" rx="2" ry="2" />
<text x="204.08" y="959.5" ></text>
</g>
<g >
<title>DB::WriteBufferFromPocoSocket::nextImpl (3 samples, 0.01%)</title><rect x="1044.6" y="1157" width="0.1" height="15.0" fill="rgb(205,119,14)" rx="2" ry="2" />
<text x="1047.56" y="1167.5" ></text>
</g>
<g >
<title>kmem_cache_free (3 samples, 0.01%)</title><rect x="1056.9" y="1045" width="0.1" height="15.0" fill="rgb(215,56,28)" rx="2" ry="2" />
<text x="1059.90" y="1055.5" ></text>
</g>
<g >
<title>[libevent-2.0.so.5.1.9] (11 samples, 0.04%)</title><rect x="1177.9" y="1301" width="0.5" height="15.0" fill="rgb(212,73,27)" rx="2" ry="2" />
<text x="1180.94" y="1311.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3 samples, 0.01%)</title><rect x="1037.9" y="757" width="0.1" height="15.0" fill="rgb(221,146,28)" rx="2" ry="2" />
<text x="1040.85" y="767.5" ></text>
</g>
<g >
<title>exit_mmap (31 samples, 0.10%)</title><rect x="1185.2" y="1141" width="1.2" height="15.0" fill="rgb(227,173,36)" rx="2" ry="2" />
<text x="1188.17" y="1151.5" ></text>
</g>
<g >
<title>LZ4::decompress (43 samples, 0.15%)</title><rect x="1012.0" y="965" width="1.7" height="15.0" fill="rgb(236,147,32)" rx="2" ry="2" />
<text x="1014.98" y="975.5" ></text>
</g>
<g >
<title>vm_munmap (5 samples, 0.02%)</title><rect x="1042.2" y="789" width="0.2" height="15.0" fill="rgb(251,23,44)" rx="2" ry="2" />
<text x="1045.21" y="799.5" ></text>
</g>
<g >
<title>__libc_start_main (72 samples, 0.24%)</title><rect x="1056.0" y="1285" width="2.9" height="15.0" fill="rgb(209,137,4)" rx="2" ry="2" />
<text x="1059.02" y="1295.5" ></text>
</g>
<g >
<title>schedule (47 samples, 0.16%)</title><rect x="1078.1" y="1253" width="1.9" height="15.0" fill="rgb(233,142,17)" rx="2" ry="2" />
<text x="1081.15" y="1263.5" ></text>
</g>
<g >
<title>DB::Client::receiveResult (27 samples, 0.09%)</title><rect x="1056.6" y="1221" width="1.1" height="15.0" fill="rgb(220,216,36)" rx="2" ry="2" />
<text x="1059.62" y="1231.5" ></text>
</g>
<g >
<title>futex_wake (3 samples, 0.01%)</title><rect x="1038.9" y="949" width="0.1" height="15.0" fill="rgb(238,35,25)" rx="2" ry="2" />
<text x="1041.85" y="959.5" ></text>
</g>
<g >
<title>DB::AggregatedDataVariants::~AggregatedDataVariants (9 samples, 0.03%)</title><rect x="1042.0" y="901" width="0.4" height="15.0" fill="rgb(215,199,43)" rx="2" ry="2" />
<text x="1045.05" y="911.5" ></text>
</g>
<g >
<title>__se_sys_poll (7 samples, 0.02%)</title><rect x="1178.1" y="1221" width="0.3" height="15.0" fill="rgb(254,48,30)" rx="2" ry="2" />
<text x="1181.10" y="1231.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (5 samples, 0.02%)</title><rect x="1043.3" y="1093" width="0.2" height="15.0" fill="rgb(227,187,35)" rx="2" ry="2" />
<text x="1046.28" y="1103.5" ></text>
</g>
<g >
<title>rcu_process_callbacks (5 samples, 0.02%)</title><rect x="988.9" y="1013" width="0.2" height="15.0" fill="rgb(253,109,53)" rx="2" ry="2" />
<text x="991.89" y="1023.5" ></text>
</g>
<g >
<title>DB::MergeTreeBaseSelectBlockInputStream::readFromPart (1,025 samples, 3.47%)</title><rect x="996.7" y="1125" width="41.0" height="15.0" fill="rgb(237,16,31)" rx="2" ry="2" />
<text x="999.72" y="1135.5" >DB:..</text>
</g>
<g >
<title>dequeue_task_fair (3 samples, 0.01%)</title><rect x="1080.9" y="1221" width="0.1" height="15.0" fill="rgb(228,16,24)" rx="2" ry="2" />
<text x="1083.86" y="1231.5" ></text>
</g>
<g >
<title>DB::FunctionCast::prepareRemoveNullable (4 samples, 0.01%)</title><rect x="213.5" y="1045" width="0.1" height="15.0" fill="rgb(206,198,36)" rx="2" ry="2" />
<text x="216.46" y="1055.5" ></text>
</g>
<g >
<title>ksys_ioctl (5 samples, 0.02%)</title><rect x="1085.2" y="1141" width="0.2" height="15.0" fill="rgb(248,125,42)" rx="2" ry="2" />
<text x="1088.21" y="1151.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; (24 samples, 0.08%)</title><rect x="97.3" y="1189" width="0.9" height="15.0" fill="rgb(237,214,48)" rx="2" ry="2" />
<text x="100.26" y="1199.5" ></text>
</g>
<g >
<title>proc_task_name (5 samples, 0.02%)</title><rect x="1071.3" y="1157" width="0.2" height="15.0" fill="rgb(213,73,37)" rx="2" ry="2" />
<text x="1074.28" y="1167.5" ></text>
</g>
<g >
<title>large_ralloc (27 samples, 0.09%)</title><rect x="204.4" y="1029" width="1.0" height="15.0" fill="rgb(234,184,6)" rx="2" ry="2" />
<text x="207.36" y="1039.5" ></text>
</g>
<g >
<title>do_exit (9 samples, 0.03%)</title><rect x="1053.9" y="1237" width="0.4" height="15.0" fill="rgb(216,9,44)" rx="2" ry="2" />
<text x="1056.91" y="1247.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (5 samples, 0.02%)</title><rect x="24.8" y="741" width="0.2" height="15.0" fill="rgb(208,86,19)" rx="2" ry="2" />
<text x="27.82" y="751.5" ></text>
</g>
<g >
<title>update_curr (4 samples, 0.01%)</title><rect x="1057.5" y="1013" width="0.2" height="15.0" fill="rgb(248,70,25)" rx="2" ry="2" />
<text x="1060.50" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="977.8" y="869" width="0.2" height="15.0" fill="rgb(222,13,42)" rx="2" ry="2" />
<text x="980.79" y="879.5" ></text>
</g>
<g >
<title>DB::PartialSortingBlockInputStream::readImpl (4 samples, 0.01%)</title><rect x="10.0" y="1125" width="0.2" height="15.0" fill="rgb(248,76,35)" rx="2" ry="2" />
<text x="13.00" y="1135.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (45 samples, 0.15%)</title><rect x="1023.8" y="933" width="1.8" height="15.0" fill="rgb(216,91,22)" rx="2" ry="2" />
<text x="1026.76" y="943.5" ></text>
</g>
<g >
<title>__do_page_fault (52 samples, 0.18%)</title><rect x="92.7" y="1045" width="2.0" height="15.0" fill="rgb(214,138,26)" rx="2" ry="2" />
<text x="95.66" y="1055.5" ></text>
</g>
<g >
<title>ovl_read_iter (5 samples, 0.02%)</title><rect x="1031.1" y="885" width="0.2" height="15.0" fill="rgb(240,164,11)" rx="2" ry="2" />
<text x="1034.06" y="895.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (16 samples, 0.05%)</title><rect x="978.0" y="1045" width="0.7" height="15.0" fill="rgb(254,127,14)" rx="2" ry="2" />
<text x="981.03" y="1055.5" ></text>
</g>
<g >
<title>worker_thread (8 samples, 0.03%)</title><rect x="1083.3" y="1269" width="0.4" height="15.0" fill="rgb(223,56,21)" rx="2" ry="2" />
<text x="1086.34" y="1279.5" ></text>
</g>
<g >
<title>find_busiest_group (15 samples, 0.05%)</title><rect x="1045.0" y="997" width="0.6" height="15.0" fill="rgb(228,204,22)" rx="2" ry="2" />
<text x="1048.00" y="1007.5" ></text>
</g>
<g >
<title>realloc (20 samples, 0.07%)</title><rect x="32.6" y="757" width="0.8" height="15.0" fill="rgb(220,142,19)" rx="2" ry="2" />
<text x="35.56" y="767.5" ></text>
</g>
<g >
<title>load_elf_binary (3 samples, 0.01%)</title><rect x="1093.6" y="1189" width="0.1" height="15.0" fill="rgb(236,205,14)" rx="2" ry="2" />
<text x="1096.56" y="1199.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (11 samples, 0.04%)</title><rect x="1052.3" y="1189" width="0.4" height="15.0" fill="rgb(240,19,16)" rx="2" ry="2" />
<text x="1055.31" y="1199.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1069.4" y="1157" width="0.1" height="15.0" fill="rgb(218,153,40)" rx="2" ry="2" />
<text x="1072.40" y="1167.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (3 samples, 0.01%)</title><rect x="211.3" y="53" width="0.2" height="15.0" fill="rgb(253,61,49)" rx="2" ry="2" />
<text x="214.35" y="63.5" ></text>
</g>
<g >
<title>ipv6_rcv (8 samples, 0.03%)</title><rect x="1059.4" y="997" width="0.3" height="15.0" fill="rgb(233,139,21)" rx="2" ry="2" />
<text x="1062.42" y="1007.5" ></text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (6 samples, 0.02%)</title><rect x="1038.6" y="1013" width="0.2" height="15.0" fill="rgb(228,22,13)" rx="2" ry="2" />
<text x="1041.57" y="1023.5" ></text>
</g>
<g >
<title>DB::selectIndexImpl&lt;DB::ColumnVector&lt;unsigned char&gt; &gt; (114 samples, 0.39%)</title><rect x="225.0" y="1093" width="4.6" height="15.0" fill="rgb(244,70,22)" rx="2" ry="2" />
<text x="228.04" y="1103.5" ></text>
</g>
<g >
<title>ret_from_fork (8 samples, 0.03%)</title><rect x="1083.3" y="1301" width="0.4" height="15.0" fill="rgb(241,124,45)" rx="2" ry="2" />
<text x="1086.34" y="1311.5" ></text>
</g>
<g >
<title>DB::FunctionBuilderCast::getReturnTypeImpl (62 samples, 0.21%)</title><rect x="210.4" y="1077" width="2.5" height="15.0" fill="rgb(247,144,52)" rx="2" ry="2" />
<text x="213.43" y="1087.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (16 samples, 0.05%)</title><rect x="1046.6" y="1029" width="0.6" height="15.0" fill="rgb(211,43,50)" rx="2" ry="2" />
<text x="1049.56" y="1039.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (6 samples, 0.02%)</title><rect x="97.8" y="1077" width="0.3" height="15.0" fill="rgb(233,207,52)" rx="2" ry="2" />
<text x="100.81" y="1087.5" ></text>
</g>
<g >
<title>search_binary_handler (4 samples, 0.01%)</title><rect x="1094.7" y="1205" width="0.1" height="15.0" fill="rgb(236,118,2)" rx="2" ry="2" />
<text x="1097.68" y="1215.5" ></text>
</g>
<g >
<title>link_path_walk (7 samples, 0.02%)</title><rect x="1069.4" y="1189" width="0.2" height="15.0" fill="rgb(221,24,42)" rx="2" ry="2" />
<text x="1072.36" y="1199.5" ></text>
</g>
<g >
<title>sed (48 samples, 0.16%)</title><rect x="1091.8" y="1317" width="2.0" height="15.0" fill="rgb(251,128,53)" rx="2" ry="2" />
<text x="1094.84" y="1327.5" ></text>
</g>
<g >
<title>copy_process.part.5 (20 samples, 0.07%)</title><rect x="1184.0" y="1221" width="0.8" height="15.0" fill="rgb(209,228,18)" rx="2" ry="2" />
<text x="1187.01" y="1231.5" ></text>
</g>
<g >
<title>cpumask_next_and (3 samples, 0.01%)</title><rect x="1078.9" y="1173" width="0.1" height="15.0" fill="rgb(213,42,32)" rx="2" ry="2" />
<text x="1081.86" y="1183.5" ></text>
</g>
<g >
<title>do_iter_read (79 samples, 0.27%)</title><rect x="1005.5" y="869" width="3.2" height="15.0" fill="rgb(240,190,41)" rx="2" ry="2" />
<text x="1008.55" y="879.5" ></text>
</g>
<g >
<title>dequeue_task_fair (4 samples, 0.01%)</title><rect x="1057.5" y="1045" width="0.2" height="15.0" fill="rgb(222,37,52)" rx="2" ry="2" />
<text x="1060.50" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (20 samples, 0.07%)</title><rect x="1184.0" y="1253" width="0.8" height="15.0" fill="rgb(206,177,36)" rx="2" ry="2" />
<text x="1187.01" y="1263.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (10 samples, 0.03%)</title><rect x="991.0" y="1029" width="0.4" height="15.0" fill="rgb(251,117,51)" rx="2" ry="2" />
<text x="994.01" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1176.1" y="1285" width="0.2" height="15.0" fill="rgb(226,201,4)" rx="2" ry="2" />
<text x="1179.10" y="1295.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="229.4" y="1077" width="0.2" height="15.0" fill="rgb(240,200,28)" rx="2" ry="2" />
<text x="232.44" y="1087.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.02%)</title><rect x="204.7" y="965" width="0.3" height="15.0" fill="rgb(216,164,51)" rx="2" ry="2" />
<text x="207.72" y="975.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (1,743 samples, 5.90%)</title><rect x="10.2" y="1029" width="69.6" height="15.0" fill="rgb(248,114,28)" rx="2" ry="2" />
<text x="13.20" y="1039.5" >DB::IBl..</text>
</g>
<g >
<title>vfs_write (13 samples, 0.04%)</title><rect x="1057.7" y="1125" width="0.6" height="15.0" fill="rgb(247,40,4)" rx="2" ry="2" />
<text x="1060.74" y="1135.5" ></text>
</g>
<g >
<title>open64 (20 samples, 0.07%)</title><rect x="1069.1" y="1285" width="0.8" height="15.0" fill="rgb(251,21,44)" rx="2" ry="2" />
<text x="1072.08" y="1295.5" ></text>
</g>
<g >
<title>task_tick_fair (5 samples, 0.02%)</title><rect x="978.4" y="949" width="0.2" height="15.0" fill="rgb(226,228,33)" rx="2" ry="2" />
<text x="981.35" y="959.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::readData (965 samples, 3.27%)</title><rect x="998.5" y="1045" width="38.5" height="15.0" fill="rgb(247,228,11)" rx="2" ry="2" />
<text x="1001.48" y="1055.5" >DB:..</text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="230.6" y="997" width="0.1" height="15.0" fill="rgb(232,92,54)" rx="2" ry="2" />
<text x="233.55" y="1007.5" ></text>
</g>
<g >
<title>tick_sched_timer (46 samples, 0.16%)</title><rect x="1099.4" y="1157" width="1.9" height="15.0" fill="rgb(217,189,4)" rx="2" ry="2" />
<text x="1102.43" y="1167.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (28 samples, 0.09%)</title><rect x="210.7" y="725" width="1.2" height="15.0" fill="rgb(215,26,34)" rx="2" ry="2" />
<text x="213.75" y="735.5" ></text>
</g>
<g >
<title>do_iter_read (3 samples, 0.01%)</title><rect x="1181.0" y="1173" width="0.1" height="15.0" fill="rgb(209,226,24)" rx="2" ry="2" />
<text x="1183.97" y="1183.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1039.5" y="1029" width="0.1" height="15.0" fill="rgb(238,102,24)" rx="2" ry="2" />
<text x="1042.45" y="1039.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (5 samples, 0.02%)</title><rect x="32.4" y="773" width="0.2" height="15.0" fill="rgb(208,85,14)" rx="2" ry="2" />
<text x="35.36" y="783.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="205.2" y="997" width="0.2" height="15.0" fill="rgb(237,77,17)" rx="2" ry="2" />
<text x="208.24" y="1007.5" ></text>
</g>
<g >
<title>page_fault (6 samples, 0.02%)</title><rect x="1010.5" y="997" width="0.2" height="15.0" fill="rgb(206,149,15)" rx="2" ry="2" />
<text x="1013.50" y="1007.5" ></text>
</g>
<g >
<title>cpu_startup_entry (25 samples, 0.08%)</title><rect x="1096.2" y="1269" width="1.0" height="15.0" fill="rgb(243,186,45)" rx="2" ry="2" />
<text x="1099.20" y="1279.5" ></text>
</g>
<g >
<title>do_syscall_64 (43 samples, 0.15%)</title><rect x="1045.8" y="1269" width="1.8" height="15.0" fill="rgb(225,51,25)" rx="2" ry="2" />
<text x="1048.84" y="1279.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6 samples, 0.02%)</title><rect x="12.1" y="837" width="0.3" height="15.0" fill="rgb(211,133,22)" rx="2" ry="2" />
<text x="15.12" y="847.5" ></text>
</g>
<g >
<title>seq_put_decimal_ull_width (4 samples, 0.01%)</title><rect x="1070.8" y="1157" width="0.1" height="15.0" fill="rgb(211,104,2)" rx="2" ry="2" />
<text x="1073.76" y="1167.5" ></text>
</g>
<g >
<title>local_touch_nmi (4 samples, 0.01%)</title><rect x="1168.2" y="1237" width="0.1" height="15.0" fill="rgb(251,176,54)" rx="2" ry="2" />
<text x="1171.16" y="1247.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (63 samples, 0.21%)</title><rect x="1027.8" y="997" width="2.5" height="15.0" fill="rgb(206,119,38)" rx="2" ry="2" />
<text x="1030.83" y="1007.5" ></text>
</g>
<g >
<title>__sched_text_start (13 samples, 0.04%)</title><rect x="1089.1" y="1237" width="0.5" height="15.0" fill="rgb(229,101,49)" rx="2" ry="2" />
<text x="1092.09" y="1247.5" ></text>
</g>
<g >
<title>exit_mmap (8 samples, 0.03%)</title><rect x="1093.2" y="1205" width="0.4" height="15.0" fill="rgb(245,11,11)" rx="2" ry="2" />
<text x="1096.24" y="1215.5" ></text>
</g>
<g >
<title>mmput (4 samples, 0.01%)</title><rect x="1176.1" y="1221" width="0.2" height="15.0" fill="rgb(242,143,15)" rx="2" ry="2" />
<text x="1179.10" y="1231.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (4 samples, 0.01%)</title><rect x="1092.7" y="1269" width="0.2" height="15.0" fill="rgb(253,188,41)" rx="2" ry="2" />
<text x="1095.72" y="1279.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.05%)</title><rect x="1022.5" y="933" width="0.6" height="15.0" fill="rgb(216,4,25)" rx="2" ry="2" />
<text x="1025.52" y="943.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (20,277 samples, 68.62%)</title><rect x="230.8" y="1173" width="809.8" height="15.0" fill="rgb(230,28,28)" rx="2" ry="2" />
<text x="233.83" y="1183.5" >DB::ExpressionBlockInputStream::readImpl</text>
</g>
<g >
<title>DB::ColumnString::insertData (4 samples, 0.01%)</title><rect x="31.1" y="821" width="0.1" height="15.0" fill="rgb(251,96,20)" rx="2" ry="2" />
<text x="34.08" y="831.5" ></text>
</g>
<g >
<title>__handle_mm_fault (51 samples, 0.17%)</title><rect x="89.9" y="997" width="2.0" height="15.0" fill="rgb(212,19,25)" rx="2" ry="2" />
<text x="92.91" y="1007.5" ></text>
</g>
<g >
<title>unmap_region (3 samples, 0.01%)</title><rect x="95.0" y="997" width="0.1" height="15.0" fill="rgb(225,77,34)" rx="2" ry="2" />
<text x="98.02" y="1007.5" ></text>
</g>
<g >
<title>DB::BackgroundProcessingPool::threadFunction (6 samples, 0.02%)</title><rect x="95.2" y="1253" width="0.2" height="15.0" fill="rgb(211,36,39)" rx="2" ry="2" />
<text x="98.18" y="1263.5" ></text>
</g>
<g >
<title>ip6_xmit (21 samples, 0.07%)</title><rect x="1046.4" y="1109" width="0.8" height="15.0" fill="rgb(205,211,13)" rx="2" ry="2" />
<text x="1049.36" y="1119.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (4 samples, 0.01%)</title><rect x="204.7" y="853" width="0.2" height="15.0" fill="rgb(247,10,46)" rx="2" ry="2" />
<text x="207.72" y="863.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (5 samples, 0.02%)</title><rect x="75.7" y="789" width="0.2" height="15.0" fill="rgb(253,80,54)" rx="2" ry="2" />
<text x="78.69" y="799.5" ></text>
</g>
<g >
<title>task_numa_work (5 samples, 0.02%)</title><rect x="993.0" y="1013" width="0.2" height="15.0" fill="rgb(221,188,21)" rx="2" ry="2" />
<text x="995.97" y="1023.5" ></text>
</g>
<g >
<title>find_worker_executing_work (3 samples, 0.01%)</title><rect x="1073.3" y="1237" width="0.1" height="15.0" fill="rgb(237,198,35)" rx="2" ry="2" />
<text x="1076.31" y="1247.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1187.8" y="1269" width="0.1" height="15.0" fill="rgb(246,119,1)" rx="2" ry="2" />
<text x="1190.76" y="1279.5" ></text>
</g>
<g >
<title>tcp_ack (7 samples, 0.02%)</title><rect x="1167.3" y="965" width="0.3" height="15.0" fill="rgb(213,167,5)" rx="2" ry="2" />
<text x="1170.32" y="975.5" ></text>
</g>
<g >
<title>arena_ralloc (69 samples, 0.23%)</title><rect x="204.2" y="1045" width="2.8" height="15.0" fill="rgb(229,79,20)" rx="2" ry="2" />
<text x="207.24" y="1055.5" ></text>
</g>
<g >
<title>large_palloc (9 samples, 0.03%)</title><rect x="200.9" y="1013" width="0.3" height="15.0" fill="rgb(217,83,31)" rx="2" ry="2" />
<text x="203.88" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (11 samples, 0.04%)</title><rect x="75.6" y="837" width="0.5" height="15.0" fill="rgb(221,188,48)" rx="2" ry="2" />
<text x="78.61" y="847.5" ></text>
</g>
<g >
<title>__se_sys_madvise (4 samples, 0.01%)</title><rect x="1037.9" y="789" width="0.1" height="15.0" fill="rgb(244,79,31)" rx="2" ry="2" />
<text x="1040.85" y="799.5" ></text>
</g>
<g >
<title>DB::LazyBlockInputStream::readImpl (1,743 samples, 5.90%)</title><rect x="10.2" y="1077" width="69.6" height="15.0" fill="rgb(218,43,15)" rx="2" ry="2" />
<text x="13.20" y="1087.5" >DB::Laz..</text>
</g>
<g >
<title>schedule (19 samples, 0.06%)</title><rect x="1044.9" y="1061" width="0.7" height="15.0" fill="rgb(249,168,21)" rx="2" ry="2" />
<text x="1047.88" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_create (19 samples, 0.06%)</title><rect x="1061.1" y="1205" width="0.8" height="15.0" fill="rgb(205,186,34)" rx="2" ry="2" />
<text x="1064.09" y="1215.5" ></text>
</g>
<g >
<title>DB::FunctionIf::executeImpl (11 samples, 0.04%)</title><rect x="10.6" y="949" width="0.4" height="15.0" fill="rgb(217,209,28)" rx="2" ry="2" />
<text x="13.56" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (227 samples, 0.77%)</title><rect x="70.7" y="917" width="9.1" height="15.0" fill="rgb(215,21,7)" rx="2" ry="2" />
<text x="73.74" y="927.5" ></text>
</g>
<g >
<title>copyout (9 samples, 0.03%)</title><rect x="1022.5" y="789" width="0.4" height="15.0" fill="rgb(235,161,54)" rx="2" ry="2" />
<text x="1025.52" y="799.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (5 samples, 0.02%)</title><rect x="10.0" y="1205" width="0.2" height="15.0" fill="rgb(254,181,42)" rx="2" ry="2" />
<text x="13.00" y="1215.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3 samples, 0.01%)</title><rect x="18.2" y="821" width="0.1" height="15.0" fill="rgb(207,126,45)" rx="2" ry="2" />
<text x="21.23" y="831.5" ></text>
</g>
<g >
<title>update_blocked_averages (7 samples, 0.02%)</title><rect x="1082.5" y="1157" width="0.3" height="15.0" fill="rgb(212,98,33)" rx="2" ry="2" />
<text x="1085.54" y="1167.5" ></text>
</g>
<g >
<title>arena_ralloc (11 samples, 0.04%)</title><rect x="194.8" y="1077" width="0.4" height="15.0" fill="rgb(242,80,13)" rx="2" ry="2" />
<text x="197.77" y="1087.5" ></text>
</g>
<g >
<title>realloc (19 samples, 0.06%)</title><rect x="985.3" y="1029" width="0.8" height="15.0" fill="rgb(238,183,28)" rx="2" ry="2" />
<text x="988.34" y="1039.5" ></text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="1016.8" y="997" width="0.1" height="15.0" fill="rgb(221,90,16)" rx="2" ry="2" />
<text x="1019.81" y="1007.5" ></text>
</g>
<g >
<title>load_balance (16 samples, 0.05%)</title><rect x="1045.0" y="1013" width="0.6" height="15.0" fill="rgb(207,227,17)" rx="2" ry="2" />
<text x="1047.96" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1181.0" y="1221" width="0.1" height="15.0" fill="rgb(216,86,0)" rx="2" ry="2" />
<text x="1183.97" y="1231.5" ></text>
</g>
<g >
<title>__GI___libc_read (5 samples, 0.02%)</title><rect x="1031.1" y="981" width="0.2" height="15.0" fill="rgb(251,116,1)" rx="2" ry="2" />
<text x="1034.06" y="991.5" ></text>
</g>
<g >
<title>get_next_timer_interrupt (7 samples, 0.02%)</title><rect x="1171.1" y="1189" width="0.3" height="15.0" fill="rgb(229,123,15)" rx="2" ry="2" />
<text x="1174.07" y="1199.5" ></text>
</g>
<g >
<title>smp_irq_work_interrupt (5 samples, 0.02%)</title><rect x="1113.2" y="1061" width="0.2" height="15.0" fill="rgb(215,125,13)" rx="2" ry="2" />
<text x="1116.21" y="1071.5" ></text>
</g>
<g >
<title>handle_mm_fault (21 samples, 0.07%)</title><rect x="1179.6" y="1237" width="0.9" height="15.0" fill="rgb(213,122,49)" rx="2" ry="2" />
<text x="1182.62" y="1247.5" ></text>
</g>
<g >
<title>handle_mm_fault (16 samples, 0.05%)</title><rect x="1177.3" y="1253" width="0.6" height="15.0" fill="rgb(240,171,9)" rx="2" ry="2" />
<text x="1180.30" y="1263.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9 samples, 0.03%)</title><rect x="1015.6" y="677" width="0.3" height="15.0" fill="rgb(226,179,47)" rx="2" ry="2" />
<text x="1018.57" y="687.5" ></text>
</g>
<g >
<title>tcache_alloc_small_hard (6 samples, 0.02%)</title><rect x="1025.9" y="837" width="0.2" height="15.0" fill="rgb(248,69,49)" rx="2" ry="2" />
<text x="1028.87" y="847.5" ></text>
</g>
<g >
<title>rcu_check_callbacks (9 samples, 0.03%)</title><rect x="1099.8" y="1125" width="0.4" height="15.0" fill="rgb(222,75,7)" rx="2" ry="2" />
<text x="1102.83" y="1135.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.03%)</title><rect x="1178.1" y="1285" width="0.3" height="15.0" fill="rgb(221,218,49)" rx="2" ry="2" />
<text x="1181.06" y="1295.5" ></text>
</g>
<g >
<title>inode_permission (4 samples, 0.01%)</title><rect x="1038.6" y="885" width="0.1" height="15.0" fill="rgb(212,87,4)" rx="2" ry="2" />
<text x="1041.57" y="895.5" ></text>
</g>
<g >
<title>irq_work_interrupt (10 samples, 0.03%)</title><rect x="988.5" y="1013" width="0.4" height="15.0" fill="rgb(232,75,32)" rx="2" ry="2" />
<text x="991.49" y="1023.5" ></text>
</g>
<g >
<title>do_futex (4 samples, 0.01%)</title><rect x="1038.2" y="949" width="0.1" height="15.0" fill="rgb(223,106,53)" rx="2" ry="2" />
<text x="1041.17" y="959.5" ></text>
</g>
<g >
<title>large_dalloc (5 samples, 0.02%)</title><rect x="181.5" y="1157" width="0.2" height="15.0" fill="rgb(245,189,37)" rx="2" ry="2" />
<text x="184.48" y="1167.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (4 samples, 0.01%)</title><rect x="997.3" y="1029" width="0.2" height="15.0" fill="rgb(227,64,2)" rx="2" ry="2" />
<text x="1000.32" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1025.9" y="885" width="0.2" height="15.0" fill="rgb(224,96,28)" rx="2" ry="2" />
<text x="1028.87" y="895.5" ></text>
</g>
<g >
<title>DB::Aggregator::prepareBlockAndFillSingleLevel (227 samples, 0.77%)</title><rect x="70.7" y="933" width="9.1" height="15.0" fill="rgb(211,29,15)" rx="2" ry="2" />
<text x="73.74" y="943.5" ></text>
</g>
<g >
<title>kworker/57:1-ev (8 samples, 0.03%)</title><rect x="1080.1" y="1317" width="0.4" height="15.0" fill="rgb(239,190,49)" rx="2" ry="2" />
<text x="1083.14" y="1327.5" ></text>
</g>
<g >
<title>page_fault (5 samples, 0.02%)</title><rect x="1187.6" y="1269" width="0.2" height="15.0" fill="rgb(222,140,16)" rx="2" ry="2" />
<text x="1190.56" y="1279.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionNullUnary&lt;true&gt; &gt;::addFree (165 samples, 0.56%)</title><rect x="150.1" y="1173" width="6.6" height="15.0" fill="rgb(254,3,43)" rx="2" ry="2" />
<text x="153.09" y="1183.5" ></text>
</g>
<g >
<title>ptep_clear_flush (7 samples, 0.02%)</title><rect x="1015.6" y="581" width="0.3" height="15.0" fill="rgb(231,193,17)" rx="2" ry="2" />
<text x="1018.65" y="591.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (992 samples, 3.36%)</title><rect x="31.1" y="917" width="39.6" height="15.0" fill="rgb(208,196,10)" rx="2" ry="2" />
<text x="34.08" y="927.5" >DB:..</text>
</g>
<g >
<title>clockevents_program_event (6 samples, 0.02%)</title><rect x="1101.3" y="1173" width="0.3" height="15.0" fill="rgb(222,106,41)" rx="2" ry="2" />
<text x="1104.35" y="1183.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (120 samples, 0.41%)</title><rect x="1017.0" y="965" width="4.8" height="15.0" fill="rgb(243,69,54)" rx="2" ry="2" />
<text x="1019.97" y="975.5" ></text>
</g>
<g >
<title>large_dalloc (5 samples, 0.02%)</title><rect x="230.5" y="1109" width="0.2" height="15.0" fill="rgb(205,72,22)" rx="2" ry="2" />
<text x="233.51" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1085.2" y="1189" width="0.2" height="15.0" fill="rgb(219,11,50)" rx="2" ry="2" />
<text x="1088.21" y="1199.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (9 samples, 0.03%)</title><rect x="1042.0" y="885" width="0.4" height="15.0" fill="rgb(210,31,8)" rx="2" ry="2" />
<text x="1045.05" y="895.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (29 samples, 0.10%)</title><rect x="1026.2" y="997" width="1.2" height="15.0" fill="rgb(254,86,39)" rx="2" ry="2" />
<text x="1029.23" y="1007.5" ></text>
</g>
<g >
<title>irq_work_run (44 samples, 0.15%)</title><rect x="1107.1" y="1093" width="1.8" height="15.0" fill="rgb(242,166,46)" rx="2" ry="2" />
<text x="1110.14" y="1103.5" ></text>
</g>
<g >
<title>pick_next_task_fair (48 samples, 0.16%)</title><rect x="1089.8" y="1205" width="2.0" height="15.0" fill="rgb(247,138,22)" rx="2" ry="2" />
<text x="1092.85" y="1215.5" ></text>
</g>
<g >
<title>__GI___libc_open (6 samples, 0.02%)</title><rect x="1038.6" y="997" width="0.2" height="15.0" fill="rgb(211,79,49)" rx="2" ry="2" />
<text x="1041.57" y="1007.5" ></text>
</g>
<g >
<title>arena_dalloc_bin_junked_locked (3 samples, 0.01%)</title><rect x="96.2" y="1125" width="0.1" height="15.0" fill="rgb(254,179,52)" rx="2" ry="2" />
<text x="99.22" y="1135.5" ></text>
</g>
<g >
<title>ttwu_do_activate.isra.7 (4 samples, 0.01%)</title><rect x="1166.0" y="1109" width="0.2" height="15.0" fill="rgb(213,14,18)" rx="2" ry="2" />
<text x="1169.04" y="1119.5" ></text>
</g>
<g >
<title>kfree (3 samples, 0.01%)</title><rect x="1059.5" y="869" width="0.2" height="15.0" fill="rgb(241,154,42)" rx="2" ry="2" />
<text x="1062.54" y="879.5" ></text>
</g>
<g >
<title>[unknown] (90 samples, 0.30%)</title><rect x="1050.1" y="1301" width="3.6" height="15.0" fill="rgb(212,168,4)" rx="2" ry="2" />
<text x="1053.11" y="1311.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (77 samples, 0.26%)</title><rect x="200.6" y="1077" width="3.1" height="15.0" fill="rgb(222,14,52)" rx="2" ry="2" />
<text x="203.60" y="1087.5" ></text>
</g>
<g >
<title>schedule (38 samples, 0.13%)</title><rect x="1073.4" y="1253" width="1.6" height="15.0" fill="rgb(218,229,12)" rx="2" ry="2" />
<text x="1076.43" y="1263.5" ></text>
</g>
<g >
<title>ep_eventpoll_release (5 samples, 0.02%)</title><rect x="1056.9" y="1093" width="0.2" height="15.0" fill="rgb(230,125,15)" rx="2" ry="2" />
<text x="1059.86" y="1103.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (19 samples, 0.06%)</title><rect x="1044.9" y="1077" width="0.7" height="15.0" fill="rgb(246,194,37)" rx="2" ry="2" />
<text x="1047.88" y="1087.5" ></text>
</g>
<g >
<title>DB::parseQuery (57 samples, 0.19%)</title><rect x="210.6" y="1045" width="2.3" height="15.0" fill="rgb(234,173,17)" rx="2" ry="2" />
<text x="213.59" y="1055.5" ></text>
</g>
<g >
<title>ret_from_fork (16 samples, 0.05%)</title><rect x="1081.6" y="1301" width="0.6" height="15.0" fill="rgb(240,30,16)" rx="2" ry="2" />
<text x="1084.58" y="1311.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="1176.0" y="1301" width="0.1" height="15.0" fill="rgb(245,116,26)" rx="2" ry="2" />
<text x="1178.98" y="1311.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::execute (1,211 samples, 4.10%)</title><rect x="182.4" y="1173" width="48.4" height="15.0" fill="rgb(210,124,8)" rx="2" ry="2" />
<text x="185.39" y="1183.5" >DB::..</text>
</g>
<g >
<title>copy_page (5 samples, 0.02%)</title><rect x="1177.7" y="1189" width="0.2" height="15.0" fill="rgb(207,79,29)" rx="2" ry="2" />
<text x="1180.70" y="1199.5" ></text>
</g>
<g >
<title>cpumask_next_and (7 samples, 0.02%)</title><rect x="1105.9" y="1109" width="0.3" height="15.0" fill="rgb(207,219,20)" rx="2" ry="2" />
<text x="1108.94" y="1119.5" ></text>
</g>
<g >
<title>shmem_getpage (11 samples, 0.04%)</title><rect x="1036.1" y="773" width="0.4" height="15.0" fill="rgb(233,210,53)" rx="2" ry="2" />
<text x="1039.06" y="783.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (4 samples, 0.01%)</title><rect x="1025.3" y="741" width="0.2" height="15.0" fill="rgb(243,171,39)" rx="2" ry="2" />
<text x="1028.31" y="751.5" ></text>
</g>
<g >
<title>perf_event_task_tick (4 samples, 0.01%)</title><rect x="987.4" y="965" width="0.2" height="15.0" fill="rgb(246,70,30)" rx="2" ry="2" />
<text x="990.42" y="975.5" ></text>
</g>
<g >
<title>do_dentry_open (3 samples, 0.01%)</title><rect x="1053.3" y="1189" width="0.2" height="15.0" fill="rgb(250,144,24)" rx="2" ry="2" />
<text x="1056.35" y="1199.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3 samples, 0.01%)</title><rect x="203.4" y="949" width="0.1" height="15.0" fill="rgb(222,96,0)" rx="2" ry="2" />
<text x="206.36" y="959.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (81 samples, 0.27%)</title><rect x="998.9" y="997" width="3.2" height="15.0" fill="rgb(239,211,54)" rx="2" ry="2" />
<text x="1001.88" y="1007.5" ></text>
</g>
<g >
<title>DB::ProcessListEntry::~ProcessListEntry (24 samples, 0.08%)</title><rect x="1042.0" y="1141" width="1.0" height="15.0" fill="rgb(227,192,19)" rx="2" ry="2" />
<text x="1045.05" y="1151.5" ></text>
</g>
<g >
<title>dbs_work_handler (4 samples, 0.01%)</title><rect x="1075.4" y="1237" width="0.2" height="15.0" fill="rgb(226,7,39)" rx="2" ry="2" />
<text x="1078.39" y="1247.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="1052.2" y="1221" width="0.1" height="15.0" fill="rgb(243,102,43)" rx="2" ry="2" />
<text x="1055.19" y="1231.5" ></text>
</g>
<g >
<title>next_tgid (5 samples, 0.02%)</title><rect x="1067.9" y="1189" width="0.2" height="15.0" fill="rgb(226,3,23)" rx="2" ry="2" />
<text x="1070.88" y="1199.5" ></text>
</g>
<g >
<title>getconf (3 samples, 0.01%)</title><rect x="1067.2" y="1317" width="0.1" height="15.0" fill="rgb(221,166,24)" rx="2" ry="2" />
<text x="1070.20" y="1327.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (4 samples, 0.01%)</title><rect x="1074.6" y="1141" width="0.2" height="15.0" fill="rgb(237,229,40)" rx="2" ry="2" />
<text x="1077.59" y="1151.5" ></text>
</g>
<g >
<title>exit_mmap (3 samples, 0.01%)</title><rect x="1094.6" y="1205" width="0.1" height="15.0" fill="rgb(222,50,11)" rx="2" ry="2" />
<text x="1097.56" y="1215.5" ></text>
</g>
<g >
<title>net_rx_action (22 samples, 0.07%)</title><rect x="1166.9" y="1157" width="0.9" height="15.0" fill="rgb(249,98,39)" rx="2" ry="2" />
<text x="1169.88" y="1167.5" ></text>
</g>
<g >
<title>pm_qos_request (8 samples, 0.03%)</title><rect x="1170.3" y="1205" width="0.3" height="15.0" fill="rgb(246,129,5)" rx="2" ry="2" />
<text x="1173.27" y="1215.5" ></text>
</g>
<g >
<title>DB::ColumnString::insertData (29 samples, 0.10%)</title><rect x="32.2" y="805" width="1.2" height="15.0" fill="rgb(208,138,45)" rx="2" ry="2" />
<text x="35.20" y="815.5" ></text>
</g>
<g >
<title>__handle_mm_fault (15 samples, 0.05%)</title><rect x="1177.3" y="1237" width="0.6" height="15.0" fill="rgb(228,229,51)" rx="2" ry="2" />
<text x="1180.34" y="1247.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3 samples, 0.01%)</title><rect x="74.3" y="805" width="0.2" height="15.0" fill="rgb(238,28,25)" rx="2" ry="2" />
<text x="77.33" y="815.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (104 samples, 0.35%)</title><rect x="1062.5" y="1157" width="4.2" height="15.0" fill="rgb(212,121,26)" rx="2" ry="2" />
<text x="1065.53" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="977.8" y="885" width="0.2" height="15.0" fill="rgb(205,107,43)" rx="2" ry="2" />
<text x="980.79" y="895.5" ></text>
</g>
<g >
<title>kworker/48:2-ev (3 samples, 0.01%)</title><rect x="1077.7" y="1317" width="0.1" height="15.0" fill="rgb(240,174,16)" rx="2" ry="2" />
<text x="1080.67" y="1327.5" ></text>
</g>
<g >
<title>__x64_sys_execve (4 samples, 0.01%)</title><rect x="1184.8" y="1237" width="0.2" height="15.0" fill="rgb(246,81,5)" rx="2" ry="2" />
<text x="1187.81" y="1247.5" ></text>
</g>
<g >
<title>unmap_region (14 samples, 0.05%)</title><rect x="1042.4" y="757" width="0.6" height="15.0" fill="rgb(234,159,18)" rx="2" ry="2" />
<text x="1045.41" y="767.5" ></text>
</g>
<g >
<title>DB::DataTypeLowCardinality::createColumn (8 samples, 0.03%)</title><rect x="998.1" y="1045" width="0.3" height="15.0" fill="rgb(248,83,5)" rx="2" ry="2" />
<text x="1001.08" y="1055.5" ></text>
</g>
<g >
<title>LZ4::decompress (8 samples, 0.03%)</title><rect x="1023.4" y="901" width="0.3" height="15.0" fill="rgb(213,192,16)" rx="2" ry="2" />
<text x="1026.40" y="911.5" ></text>
</g>
<g >
<title>enqueue_entity (3 samples, 0.01%)</title><rect x="1113.5" y="1061" width="0.1" height="15.0" fill="rgb(225,69,49)" rx="2" ry="2" />
<text x="1116.49" y="1071.5" ></text>
</g>
<g >
<title>__madvise (4 samples, 0.01%)</title><rect x="182.6" y="997" width="0.1" height="15.0" fill="rgb(248,33,53)" rx="2" ry="2" />
<text x="185.55" y="1007.5" ></text>
</g>
<g >
<title>[clickhouse] (10 samples, 0.03%)</title><rect x="95.5" y="1301" width="0.4" height="15.0" fill="rgb(213,80,8)" rx="2" ry="2" />
<text x="98.50" y="1311.5" ></text>
</g>
<g >
<title>target_load (3 samples, 0.01%)</title><rect x="1064.3" y="1061" width="0.1" height="15.0" fill="rgb(225,169,51)" rx="2" ry="2" />
<text x="1067.29" y="1071.5" ></text>
</g>
<g >
<title>__libc_send (43 samples, 0.15%)</title><rect x="1045.8" y="1301" width="1.8" height="15.0" fill="rgb(206,84,27)" rx="2" ry="2" />
<text x="1048.84" y="1311.5" ></text>
</g>
<g >
<title>__x64_sys_execve (5 samples, 0.02%)</title><rect x="1094.1" y="1221" width="0.2" height="15.0" fill="rgb(208,71,39)" rx="2" ry="2" />
<text x="1097.08" y="1231.5" ></text>
</g>
<g >
<title>DB::TCPHandler::runImpl (95 samples, 0.32%)</title><rect x="1042.0" y="1205" width="3.8" height="15.0" fill="rgb(243,226,16)" rx="2" ry="2" />
<text x="1045.05" y="1215.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (27 samples, 0.09%)</title><rect x="210.7" y="629" width="1.1" height="15.0" fill="rgb(246,227,24)" rx="2" ry="2" />
<text x="213.75" y="639.5" ></text>
</g>
<g >
<title>memcpy (21 samples, 0.07%)</title><rect x="75.2" y="885" width="0.9" height="15.0" fill="rgb(247,67,6)" rx="2" ry="2" />
<text x="78.21" y="895.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (1,743 samples, 5.90%)</title><rect x="10.2" y="1093" width="69.6" height="15.0" fill="rgb(222,101,49)" rx="2" ry="2" />
<text x="13.20" y="1103.5" >DB::IBl..</text>
</g>
<g >
<title>kthread (16 samples, 0.05%)</title><rect x="1081.6" y="1285" width="0.6" height="15.0" fill="rgb(205,81,16)" rx="2" ry="2" />
<text x="1084.58" y="1295.5" ></text>
</g>
<g >
<title>find_busiest_group (9 samples, 0.03%)</title><rect x="1089.2" y="1189" width="0.4" height="15.0" fill="rgb(224,66,19)" rx="2" ry="2" />
<text x="1092.25" y="1199.5" ></text>
</g>
<g >
<title>irq_enter (13 samples, 0.04%)</title><rect x="1101.7" y="1189" width="0.5" height="15.0" fill="rgb(213,13,32)" rx="2" ry="2" />
<text x="1104.67" y="1199.5" ></text>
</g>
<g >
<title>malloc_default (6 samples, 0.02%)</title><rect x="1025.9" y="853" width="0.2" height="15.0" fill="rgb(244,27,54)" rx="2" ry="2" />
<text x="1028.87" y="863.5" ></text>
</g>
<g >
<title>large_ralloc (9 samples, 0.03%)</title><rect x="194.8" y="1061" width="0.4" height="15.0" fill="rgb(229,117,17)" rx="2" ry="2" />
<text x="197.81" y="1071.5" ></text>
</g>
<g >
<title>do_idle (25 samples, 0.08%)</title><rect x="1096.2" y="1253" width="1.0" height="15.0" fill="rgb(253,165,2)" rx="2" ry="2" />
<text x="1099.20" y="1263.5" ></text>
</g>
<g >
<title>process_one_work (6 samples, 0.02%)</title><rect x="1077.9" y="1253" width="0.2" height="15.0" fill="rgb(245,228,5)" rx="2" ry="2" />
<text x="1080.91" y="1263.5" ></text>
</g>
<g >
<title>do_sys_open (7 samples, 0.02%)</title><rect x="1069.9" y="1237" width="0.3" height="15.0" fill="rgb(215,46,0)" rx="2" ry="2" />
<text x="1072.92" y="1247.5" ></text>
</g>
<g >
<title>DB::JoinBlockInputStream::createBlock&lt; (992 samples, 3.36%)</title><rect x="31.1" y="837" width="39.6" height="15.0" fill="rgb(226,164,14)" rx="2" ry="2" />
<text x="34.08" y="847.5" >DB:..</text>
</g>
<g >
<title>run_timer_softirq (23 samples, 0.08%)</title><rect x="1112.7" y="1157" width="0.9" height="15.0" fill="rgb(219,65,39)" rx="2" ry="2" />
<text x="1115.69" y="1167.5" ></text>
</g>
<g >
<title>vfs_read (34 samples, 0.12%)</title><rect x="1070.5" y="1237" width="1.4" height="15.0" fill="rgb(218,35,11)" rx="2" ry="2" />
<text x="1073.52" y="1247.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (26 samples, 0.09%)</title><rect x="210.7" y="533" width="1.1" height="15.0" fill="rgb(212,111,20)" rx="2" ry="2" />
<text x="213.75" y="543.5" ></text>
</g>
<g >
<title>schedule (51 samples, 0.17%)</title><rect x="1089.7" y="1237" width="2.1" height="15.0" fill="rgb(253,47,14)" rx="2" ry="2" />
<text x="1092.73" y="1247.5" ></text>
</g>
<g >
<title>update_nohz_stats (6 samples, 0.02%)</title><rect x="1081.9" y="1173" width="0.3" height="15.0" fill="rgb(253,148,20)" rx="2" ry="2" />
<text x="1084.94" y="1183.5" ></text>
</g>
<g >
<title>load_elf_binary (31 samples, 0.10%)</title><rect x="1185.2" y="1189" width="1.2" height="15.0" fill="rgb(221,190,30)" rx="2" ry="2" />
<text x="1188.17" y="1199.5" ></text>
</g>
<g >
<title>vm_munmap (3 samples, 0.01%)</title><rect x="1042.0" y="805" width="0.2" height="15.0" fill="rgb(214,186,33)" rx="2" ry="2" />
<text x="1045.05" y="815.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (32 samples, 0.11%)</title><rect x="1014.8" y="805" width="1.2" height="15.0" fill="rgb(245,164,12)" rx="2" ry="2" />
<text x="1017.77" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (32 samples, 0.11%)</title><rect x="1014.8" y="917" width="1.2" height="15.0" fill="rgb(249,188,10)" rx="2" ry="2" />
<text x="1017.77" y="927.5" ></text>
</g>
<g >
<title>update_process_times (3 samples, 0.01%)</title><rect x="156.9" y="1093" width="0.1" height="15.0" fill="rgb(251,221,16)" rx="2" ry="2" />
<text x="159.88" y="1103.5" ></text>
</g>
<g >
<title>DB::ExpressionActions::execute (66 samples, 0.22%)</title><rect x="10.2" y="997" width="2.6" height="15.0" fill="rgb(249,16,22)" rx="2" ry="2" />
<text x="13.20" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="201.4" y="901" width="0.2" height="15.0" fill="rgb(230,166,36)" rx="2" ry="2" />
<text x="204.40" y="911.5" ></text>
</g>
<g >
<title>irq_exit (14 samples, 0.05%)</title><rect x="1096.6" y="1205" width="0.5" height="15.0" fill="rgb(249,146,37)" rx="2" ry="2" />
<text x="1099.56" y="1215.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (7 samples, 0.02%)</title><rect x="1175.2" y="1221" width="0.3" height="15.0" fill="rgb(219,37,47)" rx="2" ry="2" />
<text x="1178.18" y="1231.5" ></text>
</g>
<g >
<title>schedule (6 samples, 0.02%)</title><rect x="1072.4" y="1253" width="0.3" height="15.0" fill="rgb(239,115,26)" rx="2" ry="2" />
<text x="1075.44" y="1263.5" ></text>
</g>
<g >
<title>DB::DataTypeLowCardinality::deserializeBinaryBulkWithMultipleStreams (134 samples, 0.45%)</title><rect x="1010.9" y="1029" width="5.3" height="15.0" fill="rgb(252,218,35)" rx="2" ry="2" />
<text x="1013.90" y="1039.5" ></text>
</g>
<g >
<title>__se_sys_newstat (4 samples, 0.01%)</title><rect x="1039.8" y="1013" width="0.2" height="15.0" fill="rgb(251,19,19)" rx="2" ry="2" />
<text x="1042.85" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="95.0" y="1077" width="0.1" height="15.0" fill="rgb(218,65,46)" rx="2" ry="2" />
<text x="98.02" y="1087.5" ></text>
</g>
<g >
<title>LZ4::decompress (119 samples, 0.40%)</title><rect x="1017.0" y="949" width="4.7" height="15.0" fill="rgb(209,67,47)" rx="2" ry="2" />
<text x="1019.97" y="959.5" ></text>
</g>
<g >
<title>DB::ColumnString::insertData (10 samples, 0.03%)</title><rect x="78.7" y="901" width="0.4" height="15.0" fill="rgb(240,174,48)" rx="2" ry="2" />
<text x="81.73" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.04%)</title><rect x="1057.7" y="1173" width="0.6" height="15.0" fill="rgb(246,22,49)" rx="2" ry="2" />
<text x="1060.74" y="1183.5" ></text>
</g>
<g >
<title>schedule (103 samples, 0.35%)</title><rect x="1062.6" y="1141" width="4.1" height="15.0" fill="rgb(243,33,48)" rx="2" ry="2" />
<text x="1065.57" y="1151.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (23,640 samples, 80.00%)</title><rect x="96.7" y="1285" width="944.0" height="15.0" fill="rgb(217,69,37)" rx="2" ry="2" />
<text x="99.66" y="1295.5" >ThreadPoolImpl&lt;std::thread&gt;::worker</text>
</g>
<g >
<title>ksys_read (35 samples, 0.12%)</title><rect x="1070.5" y="1253" width="1.4" height="15.0" fill="rgb(205,207,29)" rx="2" ry="2" />
<text x="1073.48" y="1263.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeImplCase&lt;false, DB::AggregationMethodString&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; (396 samples, 1.34%)</title><rect x="13.0" y="917" width="15.8" height="15.0" fill="rgb(226,89,8)" rx="2" ry="2" />
<text x="15.96" y="927.5" ></text>
</g>
<g >
<title>native_flush_tlb (4 samples, 0.01%)</title><rect x="991.2" y="1013" width="0.1" height="15.0" fill="rgb(252,143,27)" rx="2" ry="2" />
<text x="994.17" y="1023.5" ></text>
</g>
<g >
<title>DB::CreatingSetsBlockInputStream::~CreatingSetsBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="1029" width="1.0" height="15.0" fill="rgb(219,54,26)" rx="2" ry="2" />
<text x="1045.05" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1031.1" y="949" width="0.2" height="15.0" fill="rgb(252,156,12)" rx="2" ry="2" />
<text x="1034.06" y="959.5" ></text>
</g>
<g >
<title>munmap (5 samples, 0.02%)</title><rect x="1042.2" y="853" width="0.2" height="15.0" fill="rgb(214,145,16)" rx="2" ry="2" />
<text x="1045.21" y="863.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1038.4" y="981" width="0.1" height="15.0" fill="rgb(250,129,9)" rx="2" ry="2" />
<text x="1041.41" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.03%)</title><rect x="1053.9" y="1285" width="0.4" height="15.0" fill="rgb(221,74,27)" rx="2" ry="2" />
<text x="1056.91" y="1295.5" ></text>
</g>
<g >
<title>__lll_lock_wait (5 samples, 0.02%)</title><rect x="1039.5" y="1045" width="0.1" height="15.0" fill="rgb(254,17,0)" rx="2" ry="2" />
<text x="1042.45" y="1055.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.01%)</title><rect x="97.6" y="1125" width="0.2" height="15.0" fill="rgb(234,157,52)" rx="2" ry="2" />
<text x="100.61" y="1135.5" ></text>
</g>
<g >
<title>memcpy (13 samples, 0.04%)</title><rect x="1008.8" y="997" width="0.5" height="15.0" fill="rgb(222,177,20)" rx="2" ry="2" />
<text x="1011.78" y="1007.5" ></text>
</g>
<g >
<title>DB::Block::getByName (5 samples, 0.02%)</title><rect x="183.3" y="1157" width="0.2" height="15.0" fill="rgb(227,209,28)" rx="2" ry="2" />
<text x="186.31" y="1167.5" ></text>
</g>
<g >
<title>handle_mm_fault (51 samples, 0.17%)</title><rect x="92.7" y="1029" width="2.0" height="15.0" fill="rgb(250,48,19)" rx="2" ry="2" />
<text x="95.66" y="1039.5" ></text>
</g>
<g >
<title>__handle_mm_fault (49 samples, 0.17%)</title><rect x="92.7" y="1013" width="2.0" height="15.0" fill="rgb(233,160,41)" rx="2" ry="2" />
<text x="95.70" y="1023.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::execute (1,155 samples, 3.91%)</title><rect x="184.2" y="1157" width="46.1" height="15.0" fill="rgb(239,35,20)" rx="2" ry="2" />
<text x="187.19" y="1167.5" >DB::..</text>
</g>
<g >
<title>__netif_receive_skb_one_core (8 samples, 0.03%)</title><rect x="1059.4" y="1013" width="0.3" height="15.0" fill="rgb(223,36,51)" rx="2" ry="2" />
<text x="1062.42" y="1023.5" ></text>
</g>
<g >
<title>_do_fork (8 samples, 0.03%)</title><rect x="1051.4" y="1221" width="0.3" height="15.0" fill="rgb(219,114,28)" rx="2" ry="2" />
<text x="1054.43" y="1231.5" ></text>
</g>
<g >
<title>copy_user_generic_string (37 samples, 0.13%)</title><rect x="1023.8" y="725" width="1.5" height="15.0" fill="rgb(242,97,22)" rx="2" ry="2" />
<text x="1026.84" y="735.5" ></text>
</g>
<g >
<title>inet_recvmsg (21 samples, 0.07%)</title><rect x="1059.0" y="1221" width="0.8" height="15.0" fill="rgb(215,25,6)" rx="2" ry="2" />
<text x="1061.98" y="1231.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (20,278 samples, 68.62%)</title><rect x="230.8" y="1189" width="809.8" height="15.0" fill="rgb(222,161,5)" rx="2" ry="2" />
<text x="233.79" y="1199.5" >DB::IBlockInputStream::read</text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (3 samples, 0.01%)</title><rect x="1038.4" y="1013" width="0.1" height="15.0" fill="rgb(251,167,52)" rx="2" ry="2" />
<text x="1041.41" y="1023.5" ></text>
</g>
<g >
<title>page_fault (64 samples, 0.22%)</title><rect x="89.4" y="1045" width="2.6" height="15.0" fill="rgb(230,8,40)" rx="2" ry="2" />
<text x="92.43" y="1055.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (3 samples, 0.01%)</title><rect x="212.3" y="901" width="0.1" height="15.0" fill="rgb(221,125,17)" rx="2" ry="2" />
<text x="215.26" y="911.5" ></text>
</g>
<g >
<title>clear_page_rep (17 samples, 0.06%)</title><rect x="93.2" y="917" width="0.7" height="15.0" fill="rgb(246,59,39)" rx="2" ry="2" />
<text x="96.22" y="927.5" ></text>
</g>
<g >
<title>__alloc_file (3 samples, 0.01%)</title><rect x="1069.1" y="1173" width="0.1" height="15.0" fill="rgb(226,53,35)" rx="2" ry="2" />
<text x="1072.12" y="1183.5" ></text>
</g>
<g >
<title>ThreadFromGlobalPool::ThreadFromGlobalPool&lt;void ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::scheduleImpl&lt;void&gt; (2,132 samples, 7.22%)</title><rect x="10.0" y="1269" width="85.1" height="15.0" fill="rgb(215,67,16)" rx="2" ry="2" />
<text x="13.00" y="1279.5" >ThreadFrom..</text>
</g>
<g >
<title>dequeue_entity (3 samples, 0.01%)</title><rect x="1073.5" y="1205" width="0.1" height="15.0" fill="rgb(218,8,22)" rx="2" ry="2" />
<text x="1076.47" y="1215.5" ></text>
</g>
<g >
<title>ip6_input (8 samples, 0.03%)</title><rect x="1059.4" y="981" width="0.3" height="15.0" fill="rgb(238,101,3)" rx="2" ry="2" />
<text x="1062.42" y="991.5" ></text>
</g>
<g >
<title>page_fault (30 samples, 0.10%)</title><rect x="1179.3" y="1269" width="1.2" height="15.0" fill="rgb(236,92,18)" rx="2" ry="2" />
<text x="1182.30" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (37 samples, 0.13%)</title><rect x="1070.4" y="1285" width="1.5" height="15.0" fill="rgb(215,53,0)" rx="2" ry="2" />
<text x="1073.40" y="1295.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (54 samples, 0.18%)</title><rect x="1023.4" y="949" width="2.2" height="15.0" fill="rgb(233,135,0)" rx="2" ry="2" />
<text x="1026.40" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1039.6" y="1029" width="0.2" height="15.0" fill="rgb(211,117,47)" rx="2" ry="2" />
<text x="1042.65" y="1039.5" ></text>
</g>
<g >
<title>realloc (13 samples, 0.04%)</title><rect x="977.5" y="1029" width="0.5" height="15.0" fill="rgb(232,69,47)" rx="2" ry="2" />
<text x="980.51" y="1039.5" ></text>
</g>
<g >
<title>DB::FunctionBuilderImpl::getReturnTypeWithoutLowCardinality (62 samples, 0.21%)</title><rect x="210.4" y="1093" width="2.5" height="15.0" fill="rgb(213,120,23)" rx="2" ry="2" />
<text x="213.43" y="1103.5" ></text>
</g>
<g >
<title>__ia32_sys_exit_group (3 samples, 0.01%)</title><rect x="1094.6" y="1269" width="0.1" height="15.0" fill="rgb(212,179,10)" rx="2" ry="2" />
<text x="1097.56" y="1279.5" ></text>
</g>
<g >
<title>Poco::Net::SocketImpl::receiveBytes (3 samples, 0.01%)</title><rect x="1056.3" y="1173" width="0.2" height="15.0" fill="rgb(251,9,34)" rx="2" ry="2" />
<text x="1059.34" y="1183.5" ></text>
</g>
<g >
<title>[clickhouse] (70 samples, 0.24%)</title><rect x="999.0" y="949" width="2.8" height="15.0" fill="rgb(206,63,30)" rx="2" ry="2" />
<text x="1002.04" y="959.5" ></text>
</g>
<g >
<title>DB::ColumnWithTypeAndName::ColumnWithTypeAndName (3 samples, 0.01%)</title><rect x="184.0" y="1157" width="0.2" height="15.0" fill="rgb(226,223,41)" rx="2" ry="2" />
<text x="187.03" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="985.8" y="949" width="0.1" height="15.0" fill="rgb(226,92,51)" rx="2" ry="2" />
<text x="988.82" y="959.5" ></text>
</g>
<g >
<title>do_iter_read (94 samples, 0.32%)</title><rect x="1032.7" y="821" width="3.8" height="15.0" fill="rgb(210,4,25)" rx="2" ry="2" />
<text x="1035.74" y="831.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (37 samples, 0.13%)</title><rect x="986.7" y="1029" width="1.5" height="15.0" fill="rgb(239,95,46)" rx="2" ry="2" />
<text x="989.74" y="1039.5" ></text>
</g>
<g >
<title>do_group_exit (9 samples, 0.03%)</title><rect x="1084.8" y="1253" width="0.4" height="15.0" fill="rgb(220,66,47)" rx="2" ry="2" />
<text x="1087.81" y="1263.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (3 samples, 0.01%)</title><rect x="977.6" y="965" width="0.2" height="15.0" fill="rgb(241,141,13)" rx="2" ry="2" />
<text x="980.63" y="975.5" ></text>
</g>
<g >
<title>DB::Aggregator::convertToBlockImplFinal&lt;DB::AggregationMethodString&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;, 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; (125 samples, 0.42%)</title><rect x="71.1" y="901" width="5.0" height="15.0" fill="rgb(210,135,53)" rx="2" ry="2" />
<text x="74.06" y="911.5" ></text>
</g>
<g >
<title>irq_work_run (15 samples, 0.05%)</title><rect x="1165.8" y="1189" width="0.6" height="15.0" fill="rgb(246,2,46)" rx="2" ry="2" />
<text x="1168.76" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="977.8" y="949" width="0.2" height="15.0" fill="rgb(246,223,17)" rx="2" ry="2" />
<text x="980.79" y="959.5" ></text>
</g>
<g >
<title>arena_ralloc (5 samples, 0.02%)</title><rect x="32.4" y="741" width="0.2" height="15.0" fill="rgb(240,112,15)" rx="2" ry="2" />
<text x="35.36" y="751.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (3 samples, 0.01%)</title><rect x="1051.8" y="1285" width="0.1" height="15.0" fill="rgb(211,149,38)" rx="2" ry="2" />
<text x="1054.83" y="1295.5" ></text>
</g>
<g >
<title>DB::Lexer::nextTokenImpl (3 samples, 0.01%)</title><rect x="212.5" y="997" width="0.1" height="15.0" fill="rgb(236,194,4)" rx="2" ry="2" />
<text x="215.50" y="1007.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (21 samples, 0.07%)</title><rect x="1031.7" y="933" width="0.8" height="15.0" fill="rgb(225,185,48)" rx="2" ry="2" />
<text x="1034.70" y="943.5" ></text>
</g>
<g >
<title>schedule (9 samples, 0.03%)</title><rect x="1076.9" y="1253" width="0.4" height="15.0" fill="rgb(247,7,42)" rx="2" ry="2" />
<text x="1079.95" y="1263.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (17 samples, 0.06%)</title><rect x="1083.8" y="1301" width="0.7" height="15.0" fill="rgb(206,178,43)" rx="2" ry="2" />
<text x="1086.78" y="1311.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (3 samples, 0.01%)</title><rect x="232.3" y="997" width="0.1" height="15.0" fill="rgb(252,64,43)" rx="2" ry="2" />
<text x="235.27" y="1007.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="95.2" y="1269" width="0.3" height="15.0" fill="rgb(243,160,15)" rx="2" ry="2" />
<text x="98.18" y="1279.5" ></text>
</g>
<g >
<title>do_munmap (3 samples, 0.01%)</title><rect x="1092.4" y="1189" width="0.2" height="15.0" fill="rgb(241,160,46)" rx="2" ry="2" />
<text x="1095.44" y="1199.5" ></text>
</g>
<g >
<title>rebalance_domains (78 samples, 0.26%)</title><rect x="1103.7" y="1157" width="3.1" height="15.0" fill="rgb(215,68,15)" rx="2" ry="2" />
<text x="1106.70" y="1167.5" ></text>
</g>
<g >
<title>load_balance (87 samples, 0.29%)</title><rect x="1062.8" y="1093" width="3.4" height="15.0" fill="rgb(235,9,40)" rx="2" ry="2" />
<text x="1065.77" y="1103.5" ></text>
</g>
<g >
<title>[clickhouse] (43 samples, 0.15%)</title><rect x="1012.0" y="949" width="1.7" height="15.0" fill="rgb(207,90,26)" rx="2" ry="2" />
<text x="1014.98" y="959.5" ></text>
</g>
<g >
<title>page_fault (15 samples, 0.05%)</title><rect x="75.5" y="869" width="0.6" height="15.0" fill="rgb(230,221,22)" rx="2" ry="2" />
<text x="78.45" y="879.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (7 samples, 0.02%)</title><rect x="94.4" y="933" width="0.3" height="15.0" fill="rgb(208,194,18)" rx="2" ry="2" />
<text x="97.38" y="943.5" ></text>
</g>
<g >
<title>load_balance (40 samples, 0.14%)</title><rect x="1078.3" y="1205" width="1.6" height="15.0" fill="rgb(227,115,26)" rx="2" ry="2" />
<text x="1081.31" y="1215.5" ></text>
</g>
<g >
<title>tcp_sendmsg (40 samples, 0.14%)</title><rect x="1045.9" y="1205" width="1.6" height="15.0" fill="rgb(254,101,52)" rx="2" ry="2" />
<text x="1048.92" y="1215.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (12 samples, 0.04%)</title><rect x="1046.7" y="965" width="0.5" height="15.0" fill="rgb(222,125,48)" rx="2" ry="2" />
<text x="1049.68" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1016.6" y="837" width="0.1" height="15.0" fill="rgb(214,177,10)" rx="2" ry="2" />
<text x="1019.61" y="847.5" ></text>
</g>
<g >
<title>large_palloc (3 samples, 0.01%)</title><rect x="1036.6" y="917" width="0.1" height="15.0" fill="rgb(234,128,21)" rx="2" ry="2" />
<text x="1039.57" y="927.5" ></text>
</g>
<g >
<title>do_munmap (3 samples, 0.01%)</title><rect x="1042.0" y="789" width="0.2" height="15.0" fill="rgb(227,199,47)" rx="2" ry="2" />
<text x="1045.05" y="799.5" ></text>
</g>
<g >
<title>try_to_wake_up (4 samples, 0.01%)</title><rect x="1166.0" y="1125" width="0.2" height="15.0" fill="rgb(226,51,3)" rx="2" ry="2" />
<text x="1169.04" y="1135.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (5 samples, 0.02%)</title><rect x="1047.0" y="837" width="0.2" height="15.0" fill="rgb(215,178,26)" rx="2" ry="2" />
<text x="1049.96" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.03%)</title><rect x="1084.8" y="1285" width="0.4" height="15.0" fill="rgb(221,1,16)" rx="2" ry="2" />
<text x="1087.81" y="1295.5" ></text>
</g>
<g >
<title>DB::castColumn (102 samples, 0.35%)</title><rect x="209.8" y="1125" width="4.1" height="15.0" fill="rgb(241,60,3)" rx="2" ry="2" />
<text x="212.79" y="1135.5" ></text>
</g>
<g >
<title>[clickhouse] (29 samples, 0.10%)</title><rect x="1026.2" y="949" width="1.2" height="15.0" fill="rgb(217,83,8)" rx="2" ry="2" />
<text x="1029.23" y="959.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (14 samples, 0.05%)</title><rect x="1187.2" y="1285" width="0.6" height="15.0" fill="rgb(206,206,50)" rx="2" ry="2" />
<text x="1190.20" y="1295.5" ></text>
</g>
<g >
<title>__se_sys_epoll_ctl (6 samples, 0.02%)</title><rect x="1044.1" y="1093" width="0.3" height="15.0" fill="rgb(242,121,9)" rx="2" ry="2" />
<text x="1047.12" y="1103.5" ></text>
</g>
<g >
<title>__fput (21 samples, 0.07%)</title><rect x="1060.1" y="1173" width="0.9" height="15.0" fill="rgb(238,54,28)" rx="2" ry="2" />
<text x="1063.14" y="1183.5" ></text>
</g>
<g >
<title>update_status.s (14 samples, 0.05%)</title><rect x="1189.4" y="1317" width="0.6" height="15.0" fill="rgb(225,151,38)" rx="2" ry="2" />
<text x="1192.44" y="1327.5" ></text>
</g>
<g >
<title>free (4 samples, 0.01%)</title><rect x="232.3" y="1077" width="0.1" height="15.0" fill="rgb(228,35,1)" rx="2" ry="2" />
<text x="235.27" y="1087.5" ></text>
</g>
<g >
<title>DB::ParserExpressionElement::parseImpl (23 samples, 0.08%)</title><rect x="210.8" y="101" width="0.9" height="15.0" fill="rgb(220,181,36)" rx="2" ry="2" />
<text x="213.79" y="111.5" ></text>
</g>
<g >
<title>execve (5 samples, 0.02%)</title><rect x="1189.8" y="1301" width="0.2" height="15.0" fill="rgb(251,193,47)" rx="2" ry="2" />
<text x="1192.80" y="1311.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_create (4 samples, 0.01%)</title><rect x="1057.2" y="1141" width="0.1" height="15.0" fill="rgb(248,63,14)" rx="2" ry="2" />
<text x="1060.18" y="1151.5" ></text>
</g>
<g >
<title>sh (27 samples, 0.09%)</title><rect x="1093.8" y="1317" width="1.0" height="15.0" fill="rgb(251,17,31)" rx="2" ry="2" />
<text x="1096.76" y="1327.5" ></text>
</g>
<g >
<title>DB::Arena::alignedAlloc (10 samples, 0.03%)</title><rect x="17.6" y="901" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="20.59" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="1093.2" y="1301" width="0.4" height="15.0" fill="rgb(219,153,13)" rx="2" ry="2" />
<text x="1096.24" y="1311.5" ></text>
</g>
<g >
<title>mprotect_fixup (4 samples, 0.01%)</title><rect x="1187.3" y="1205" width="0.2" height="15.0" fill="rgb(244,68,22)" rx="2" ry="2" />
<text x="1190.32" y="1215.5" ></text>
</g>
<g >
<title>__sched_text_start (6 samples, 0.02%)</title><rect x="1072.4" y="1237" width="0.3" height="15.0" fill="rgb(209,5,18)" rx="2" ry="2" />
<text x="1075.44" y="1247.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3 samples, 0.01%)</title><rect x="1001.7" y="789" width="0.1" height="15.0" fill="rgb(227,101,20)" rx="2" ry="2" />
<text x="1004.67" y="799.5" ></text>
</g>
<g >
<title>ret_from_fork (27 samples, 0.09%)</title><rect x="1075.4" y="1301" width="1.1" height="15.0" fill="rgb(223,7,26)" rx="2" ry="2" />
<text x="1078.39" y="1311.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.03%)</title><rect x="1061.9" y="1221" width="0.4" height="15.0" fill="rgb(228,161,9)" rx="2" ry="2" />
<text x="1064.89" y="1231.5" ></text>
</g>
<g >
<title>do_epoll_wait (107 samples, 0.36%)</title><rect x="1062.4" y="1189" width="4.3" height="15.0" fill="rgb(221,112,2)" rx="2" ry="2" />
<text x="1065.41" y="1199.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (9 samples, 0.03%)</title><rect x="201.2" y="1013" width="0.4" height="15.0" fill="rgb(213,90,31)" rx="2" ry="2" />
<text x="204.24" y="1023.5" ></text>
</g>
<g >
<title>__GI___libc_close (10 samples, 0.03%)</title><rect x="1056.7" y="1189" width="0.4" height="15.0" fill="rgb(221,56,38)" rx="2" ry="2" />
<text x="1059.74" y="1199.5" ></text>
</g>
<g >
<title>tcp_recvmsg (21 samples, 0.07%)</title><rect x="1059.0" y="1205" width="0.8" height="15.0" fill="rgb(252,146,16)" rx="2" ry="2" />
<text x="1061.98" y="1215.5" ></text>
</g>
<g >
<title>unmap_page_range (6 samples, 0.02%)</title><rect x="1084.9" y="1173" width="0.3" height="15.0" fill="rgb(247,75,1)" rx="2" ry="2" />
<text x="1087.93" y="1183.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (2,127 samples, 7.20%)</title><rect x="10.2" y="1205" width="84.9" height="15.0" fill="rgb(213,25,11)" rx="2" ry="2" />
<text x="13.20" y="1215.5" >DB::IBloc..</text>
</g>
<g >
<title>[unknown] (11 samples, 0.04%)</title><rect x="1052.3" y="1285" width="0.4" height="15.0" fill="rgb(213,101,46)" rx="2" ry="2" />
<text x="1055.31" y="1295.5" ></text>
</g>
<g >
<title>ptep_clear_flush (7 samples, 0.02%)</title><rect x="91.7" y="949" width="0.2" height="15.0" fill="rgb(242,33,10)" rx="2" ry="2" />
<text x="94.66" y="959.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (23 samples, 0.08%)</title><rect x="1096.2" y="1237" width="0.9" height="15.0" fill="rgb(231,43,49)" rx="2" ry="2" />
<text x="1099.20" y="1247.5" ></text>
</g>
<g >
<title>lookup_fast (4 samples, 0.01%)</title><rect x="1070.0" y="1157" width="0.1" height="15.0" fill="rgb(212,0,8)" rx="2" ry="2" />
<text x="1072.96" y="1167.5" ></text>
</g>
<g >
<title>DB::ParserLiteral::parseImpl (4 samples, 0.01%)</title><rect x="211.2" y="69" width="0.1" height="15.0" fill="rgb(218,227,40)" rx="2" ry="2" />
<text x="214.19" y="79.5" ></text>
</g>
<g >
<title>schedule_timeout (54 samples, 0.18%)</title><rect x="1089.6" y="1253" width="2.2" height="15.0" fill="rgb(218,204,1)" rx="2" ry="2" />
<text x="1092.61" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (13 samples, 0.04%)</title><rect x="96.0" y="1301" width="0.5" height="15.0" fill="rgb(226,178,36)" rx="2" ry="2" />
<text x="99.02" y="1311.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (4 samples, 0.01%)</title><rect x="182.8" y="933" width="0.2" height="15.0" fill="rgb(249,19,43)" rx="2" ry="2" />
<text x="185.79" y="943.5" ></text>
</g>
<g >
<title>task_work_run (21 samples, 0.07%)</title><rect x="1060.1" y="1189" width="0.9" height="15.0" fill="rgb(224,17,51)" rx="2" ry="2" />
<text x="1063.14" y="1199.5" ></text>
</g>
<g >
<title>__madvise (3 samples, 0.01%)</title><rect x="1016.6" y="869" width="0.1" height="15.0" fill="rgb(221,128,3)" rx="2" ry="2" />
<text x="1019.61" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1092.1" y="1269" width="0.2" height="15.0" fill="rgb(250,190,10)" rx="2" ry="2" />
<text x="1095.12" y="1279.5" ></text>
</g>
<g >
<title>tg3_poll_msix (21 samples, 0.07%)</title><rect x="1166.9" y="1141" width="0.9" height="15.0" fill="rgb(244,131,36)" rx="2" ry="2" />
<text x="1169.92" y="1151.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (3 samples, 0.01%)</title><rect x="230.0" y="1013" width="0.1" height="15.0" fill="rgb(227,22,52)" rx="2" ry="2" />
<text x="232.95" y="1023.5" ></text>
</g>
<g >
<title>schedule (3 samples, 0.01%)</title><rect x="1039.5" y="933" width="0.1" height="15.0" fill="rgb(212,92,23)" rx="2" ry="2" />
<text x="1042.53" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="97.8" y="1045" width="0.3" height="15.0" fill="rgb(254,158,39)" rx="2" ry="2" />
<text x="100.81" y="1055.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (3 samples, 0.01%)</title><rect x="206.8" y="933" width="0.1" height="15.0" fill="rgb(244,212,45)" rx="2" ry="2" />
<text x="209.75" y="943.5" ></text>
</g>
<g >
<title>handle_mm_fault (8 samples, 0.03%)</title><rect x="1025.0" y="677" width="0.3" height="15.0" fill="rgb(222,108,22)" rx="2" ry="2" />
<text x="1027.99" y="687.5" ></text>
</g>
<g >
<title>__queue_work (5 samples, 0.02%)</title><rect x="1113.2" y="997" width="0.2" height="15.0" fill="rgb(236,48,1)" rx="2" ry="2" />
<text x="1116.21" y="1007.5" ></text>
</g>
<g >
<title>DB::ParserExpressionList::parseImpl (37 samples, 0.13%)</title><rect x="210.7" y="901" width="1.4" height="15.0" fill="rgb(206,63,29)" rx="2" ry="2" />
<text x="213.67" y="911.5" ></text>
</g>
<g >
<title>rcu_dynticks_snap (34 samples, 0.12%)</title><rect x="1087.7" y="1221" width="1.3" height="15.0" fill="rgb(212,12,17)" rx="2" ry="2" />
<text x="1090.65" y="1231.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3 samples, 0.01%)</title><rect x="18.2" y="789" width="0.1" height="15.0" fill="rgb(227,56,3)" rx="2" ry="2" />
<text x="21.23" y="799.5" ></text>
</g>
<g >
<title>execve (12 samples, 0.04%)</title><rect x="1054.3" y="1301" width="0.4" height="15.0" fill="rgb(237,209,3)" rx="2" ry="2" />
<text x="1057.27" y="1311.5" ></text>
</g>
<g >
<title>ip6_output (20 samples, 0.07%)</title><rect x="1046.4" y="1093" width="0.8" height="15.0" fill="rgb(236,29,15)" rx="2" ry="2" />
<text x="1049.40" y="1103.5" ></text>
</g>
<g >
<title>copyout (37 samples, 0.13%)</title><rect x="1023.8" y="741" width="1.5" height="15.0" fill="rgb(248,228,21)" rx="2" ry="2" />
<text x="1026.84" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="201.4" y="917" width="0.2" height="15.0" fill="rgb(252,116,33)" rx="2" ry="2" />
<text x="204.40" y="927.5" ></text>
</g>
<g >
<title>large_palloc (5 samples, 0.02%)</title><rect x="977.6" y="981" width="0.2" height="15.0" fill="rgb(253,69,1)" rx="2" ry="2" />
<text x="980.55" y="991.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (37 samples, 0.13%)</title><rect x="210.7" y="837" width="1.4" height="15.0" fill="rgb(236,38,32)" rx="2" ry="2" />
<text x="213.67" y="847.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (9 samples, 0.03%)</title><rect x="1051.9" y="1285" width="0.4" height="15.0" fill="rgb(250,224,49)" rx="2" ry="2" />
<text x="1054.95" y="1295.5" ></text>
</g>
<g >
<title>handle_edge_irq (6 samples, 0.02%)</title><rect x="1166.6" y="1173" width="0.2" height="15.0" fill="rgb(235,43,54)" rx="2" ry="2" />
<text x="1169.56" y="1183.5" ></text>
</g>
<g >
<title>DB::ColumnString::insertFrom (51 samples, 0.17%)</title><rect x="207.8" y="1125" width="2.0" height="15.0" fill="rgb(225,72,31)" rx="2" ry="2" />
<text x="210.75" y="1135.5" ></text>
</g>
<g >
<title>clear_page_rep (3 samples, 0.01%)</title><rect x="203.4" y="901" width="0.1" height="15.0" fill="rgb(223,156,40)" rx="2" ry="2" />
<text x="206.36" y="911.5" ></text>
</g>
<g >
<title>do_filp_open (17 samples, 0.06%)</title><rect x="1069.1" y="1221" width="0.7" height="15.0" fill="rgb(247,204,47)" rx="2" ry="2" />
<text x="1072.12" y="1231.5" ></text>
</g>
<g >
<title>wp_page_copy (37 samples, 0.13%)</title><rect x="27.1" y="821" width="1.5" height="15.0" fill="rgb(220,62,2)" rx="2" ry="2" />
<text x="30.13" y="831.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.02%)</title><rect x="97.8" y="1093" width="0.3" height="15.0" fill="rgb(247,197,3)" rx="2" ry="2" />
<text x="100.77" y="1103.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="201.0" y="965" width="0.2" height="15.0" fill="rgb(217,99,27)" rx="2" ry="2" />
<text x="204.00" y="975.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="156.7" y="1173" width="0.1" height="15.0" fill="rgb(224,192,14)" rx="2" ry="2" />
<text x="159.68" y="1183.5" ></text>
</g>
<g >
<title>DB::ColumnUnique&lt;DB::ColumnString&gt;::~ColumnUnique (4 samples, 0.01%)</title><rect x="1011.7" y="997" width="0.2" height="15.0" fill="rgb(216,182,50)" rx="2" ry="2" />
<text x="1014.74" y="1007.5" ></text>
</g>
<g >
<title>memcpy (5 samples, 0.02%)</title><rect x="1058.5" y="1205" width="0.2" height="15.0" fill="rgb(252,199,18)" rx="2" ry="2" />
<text x="1061.54" y="1215.5" ></text>
</g>
<g >
<title>DB::Block::eraseImpl (5 samples, 0.02%)</title><rect x="10.2" y="949" width="0.2" height="15.0" fill="rgb(215,102,30)" rx="2" ry="2" />
<text x="13.20" y="959.5" ></text>
</g>
<g >
<title>find_next_and_bit (5 samples, 0.02%)</title><rect x="1106.0" y="1093" width="0.2" height="15.0" fill="rgb(228,53,9)" rx="2" ry="2" />
<text x="1109.02" y="1103.5" ></text>
</g>
<g >
<title>pick_next_task_fair (15 samples, 0.05%)</title><rect x="1172.9" y="1205" width="0.6" height="15.0" fill="rgb(250,48,10)" rx="2" ry="2" />
<text x="1175.87" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="224.8" y="1077" width="0.2" height="15.0" fill="rgb(213,81,47)" rx="2" ry="2" />
<text x="227.84" y="1087.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (4 samples, 0.01%)</title><rect x="1094.7" y="1221" width="0.1" height="15.0" fill="rgb(208,56,10)" rx="2" ry="2" />
<text x="1097.68" y="1231.5" ></text>
</g>
<g >
<title>execve (11 samples, 0.04%)</title><rect x="1052.3" y="1269" width="0.4" height="15.0" fill="rgb(227,118,27)" rx="2" ry="2" />
<text x="1055.31" y="1279.5" ></text>
</g>
<g >
<title>DB::ConfigReloader::run (10 samples, 0.03%)</title><rect x="95.5" y="1253" width="0.4" height="15.0" fill="rgb(247,196,37)" rx="2" ry="2" />
<text x="98.50" y="1263.5" ></text>
</g>
<g >
<title>queue_work_on (15 samples, 0.05%)</title><rect x="1165.8" y="1157" width="0.6" height="15.0" fill="rgb(223,73,16)" rx="2" ry="2" />
<text x="1168.76" y="1167.5" ></text>
</g>
<g >
<title>kthread_data (3 samples, 0.01%)</title><rect x="1166.1" y="1077" width="0.1" height="15.0" fill="rgb(253,108,50)" rx="2" ry="2" />
<text x="1169.08" y="1087.5" ></text>
</g>
<g >
<title>path_lookupat (3 samples, 0.01%)</title><rect x="1052.9" y="1189" width="0.1" height="15.0" fill="rgb(229,44,30)" rx="2" ry="2" />
<text x="1055.87" y="1199.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1085.2" y="1237" width="0.2" height="15.0" fill="rgb(216,175,43)" rx="2" ry="2" />
<text x="1088.21" y="1247.5" ></text>
</g>
<g >
<title>pick_next_task_fair (14 samples, 0.05%)</title><rect x="1081.0" y="1221" width="0.5" height="15.0" fill="rgb(254,155,15)" rx="2" ry="2" />
<text x="1083.98" y="1231.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1016.6" y="853" width="0.1" height="15.0" fill="rgb(235,9,50)" rx="2" ry="2" />
<text x="1019.61" y="863.5" ></text>
</g>
<g >
<title>large_ralloc (23 samples, 0.08%)</title><rect x="200.7" y="1029" width="0.9" height="15.0" fill="rgb(213,103,30)" rx="2" ry="2" />
<text x="203.68" y="1039.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::enumerateStreams (14 samples, 0.05%)</title><rect x="1037.9" y="1061" width="0.5" height="15.0" fill="rgb(209,7,8)" rx="2" ry="2" />
<text x="1040.85" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="985.8" y="933" width="0.1" height="15.0" fill="rgb(241,100,23)" rx="2" ry="2" />
<text x="988.82" y="943.5" ></text>
</g>
<g >
<title>handle_mm_fault (10 samples, 0.03%)</title><rect x="1015.5" y="693" width="0.4" height="15.0" fill="rgb(207,44,19)" rx="2" ry="2" />
<text x="1018.53" y="703.5" ></text>
</g>
<g >
<title>__switch_to (9 samples, 0.03%)</title><rect x="1095.6" y="1301" width="0.4" height="15.0" fill="rgb(252,53,50)" rx="2" ry="2" />
<text x="1098.60" y="1311.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (44 samples, 0.15%)</title><rect x="210.6" y="949" width="1.8" height="15.0" fill="rgb(254,138,48)" rx="2" ry="2" />
<text x="213.63" y="959.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (3 samples, 0.01%)</title><rect x="1093.6" y="1221" width="0.1" height="15.0" fill="rgb(247,100,47)" rx="2" ry="2" />
<text x="1096.56" y="1231.5" ></text>
</g>
<g >
<title>__x64_sys_execve (11 samples, 0.04%)</title><rect x="1052.3" y="1221" width="0.4" height="15.0" fill="rgb(252,31,37)" rx="2" ry="2" />
<text x="1055.31" y="1231.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3 samples, 0.01%)</title><rect x="977.8" y="773" width="0.1" height="15.0" fill="rgb(254,2,50)" rx="2" ry="2" />
<text x="980.79" y="783.5" ></text>
</g>
<g >
<title>DB::ConcatBlockInputStream::readImpl (992 samples, 3.36%)</title><rect x="31.1" y="933" width="39.6" height="15.0" fill="rgb(252,60,0)" rx="2" ry="2" />
<text x="34.08" y="943.5" >DB:..</text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (29 samples, 0.10%)</title><rect x="1007.5" y="805" width="1.2" height="15.0" fill="rgb(228,182,19)" rx="2" ry="2" />
<text x="1010.54" y="815.5" ></text>
</g>
<g >
<title>do_filp_open (6 samples, 0.02%)</title><rect x="1053.3" y="1221" width="0.3" height="15.0" fill="rgb(230,180,53)" rx="2" ry="2" />
<text x="1056.35" y="1231.5" ></text>
</g>
<g >
<title>worker_thread (15 samples, 0.05%)</title><rect x="1082.3" y="1269" width="0.6" height="15.0" fill="rgb(254,179,40)" rx="2" ry="2" />
<text x="1085.26" y="1279.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="181.5" y="1045" width="0.2" height="15.0" fill="rgb(236,104,21)" rx="2" ry="2" />
<text x="184.48" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="1178.1" y="1237" width="0.3" height="15.0" fill="rgb(237,146,13)" rx="2" ry="2" />
<text x="1181.10" y="1247.5" ></text>
</g>
<g >
<title>enqueue_entity (10 samples, 0.03%)</title><rect x="1099.0" y="1093" width="0.4" height="15.0" fill="rgb(234,70,5)" rx="2" ry="2" />
<text x="1101.99" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (19 samples, 0.06%)</title><rect x="1061.1" y="1237" width="0.8" height="15.0" fill="rgb(212,110,16)" rx="2" ry="2" />
<text x="1064.09" y="1247.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (44 samples, 0.15%)</title><rect x="1012.0" y="997" width="1.7" height="15.0" fill="rgb(210,214,46)" rx="2" ry="2" />
<text x="1014.98" y="1007.5" ></text>
</g>
<g >
<title>free_pgtables (3 samples, 0.01%)</title><rect x="1054.3" y="1125" width="0.1" height="15.0" fill="rgb(205,13,19)" rx="2" ry="2" />
<text x="1057.27" y="1135.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::execute (14 samples, 0.05%)</title><rect x="213.2" y="1109" width="0.6" height="15.0" fill="rgb(220,21,46)" rx="2" ry="2" />
<text x="216.22" y="1119.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (4 samples, 0.01%)</title><rect x="977.8" y="917" width="0.2" height="15.0" fill="rgb(206,139,35)" rx="2" ry="2" />
<text x="980.79" y="927.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (16 samples, 0.05%)</title><rect x="1046.6" y="1013" width="0.6" height="15.0" fill="rgb(230,69,49)" rx="2" ry="2" />
<text x="1049.56" y="1023.5" ></text>
</g>
<g >
<title>DB::callOnBasicType&lt;unsigned char, true, true, true, false, DB::FunctionIf::executeImpl (11 samples, 0.04%)</title><rect x="10.6" y="933" width="0.4" height="15.0" fill="rgb(221,177,33)" rx="2" ry="2" />
<text x="13.56" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="997.3" y="1045" width="0.2" height="15.0" fill="rgb(216,165,33)" rx="2" ry="2" />
<text x="1000.32" y="1055.5" ></text>
</g>
<g >
<title>do_wp_page (3 samples, 0.01%)</title><rect x="1187.6" y="1205" width="0.2" height="15.0" fill="rgb(237,185,40)" rx="2" ry="2" />
<text x="1190.64" y="1215.5" ></text>
</g>
<g >
<title>kworker/38:2-ev (16 samples, 0.05%)</title><rect x="1076.7" y="1317" width="0.7" height="15.0" fill="rgb(207,55,27)" rx="2" ry="2" />
<text x="1079.75" y="1327.5" ></text>
</g>
<g >
<title>[clickhouse] (106 samples, 0.36%)</title><rect x="173.2" y="1189" width="4.2" height="15.0" fill="rgb(225,92,9)" rx="2" ry="2" />
<text x="176.17" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1025.9" y="901" width="0.2" height="15.0" fill="rgb(252,93,12)" rx="2" ry="2" />
<text x="1028.87" y="911.5" ></text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="74.8" y="805" width="0.1" height="15.0" fill="rgb(241,68,35)" rx="2" ry="2" />
<text x="77.77" y="815.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (3 samples, 0.01%)</title><rect x="1051.8" y="1269" width="0.1" height="15.0" fill="rgb(213,137,33)" rx="2" ry="2" />
<text x="1054.83" y="1279.5" ></text>
</g>
<g >
<title>__sched_text_start (9 samples, 0.03%)</title><rect x="1076.9" y="1237" width="0.4" height="15.0" fill="rgb(219,227,21)" rx="2" ry="2" />
<text x="1079.95" y="1247.5" ></text>
</g>
<g >
<title>__libc_start_main (4 samples, 0.01%)</title><rect x="1067.4" y="1285" width="0.2" height="15.0" fill="rgb(246,34,26)" rx="2" ry="2" />
<text x="1070.40" y="1295.5" ></text>
</g>
<g >
<title>sync_regs (4 samples, 0.01%)</title><rect x="22.4" y="869" width="0.1" height="15.0" fill="rgb(251,117,47)" rx="2" ry="2" />
<text x="25.38" y="879.5" ></text>
</g>
<g >
<title>pm_qos_read_value (4 samples, 0.01%)</title><rect x="1170.1" y="1205" width="0.2" height="15.0" fill="rgb(250,174,28)" rx="2" ry="2" />
<text x="1173.11" y="1215.5" ></text>
</g>
<g >
<title>irq_work_run (5 samples, 0.02%)</title><rect x="1113.2" y="1045" width="0.2" height="15.0" fill="rgb(239,126,6)" rx="2" ry="2" />
<text x="1116.21" y="1055.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (3 samples, 0.01%)</title><rect x="1051.8" y="1253" width="0.1" height="15.0" fill="rgb(212,169,18)" rx="2" ry="2" />
<text x="1054.83" y="1263.5" ></text>
</g>
<g >
<title>futex_wake (5 samples, 0.02%)</title><rect x="1039.6" y="965" width="0.2" height="15.0" fill="rgb(250,99,38)" rx="2" ry="2" />
<text x="1042.65" y="975.5" ></text>
</g>
<g >
<title>mmput (4 samples, 0.01%)</title><rect x="1189.8" y="1157" width="0.2" height="15.0" fill="rgb(245,210,8)" rx="2" ry="2" />
<text x="1192.84" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="232.3" y="965" width="0.1" height="15.0" fill="rgb(235,203,1)" rx="2" ry="2" />
<text x="235.27" y="975.5" ></text>
</g>
<g >
<title>do_syscall_64 (107 samples, 0.36%)</title><rect x="1062.4" y="1221" width="4.3" height="15.0" fill="rgb(253,154,35)" rx="2" ry="2" />
<text x="1065.41" y="1231.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (20 samples, 0.07%)</title><rect x="1067.7" y="1285" width="0.8" height="15.0" fill="rgb(227,3,28)" rx="2" ry="2" />
<text x="1070.72" y="1295.5" ></text>
</g>
<g >
<title>wq_worker_waking_up (7 samples, 0.02%)</title><rect x="1108.4" y="997" width="0.3" height="15.0" fill="rgb(223,112,23)" rx="2" ry="2" />
<text x="1111.42" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1067.4" y="1237" width="0.2" height="15.0" fill="rgb(232,10,23)" rx="2" ry="2" />
<text x="1070.40" y="1247.5" ></text>
</g>
<g >
<title>__GI___libc_write (13 samples, 0.04%)</title><rect x="1057.7" y="1189" width="0.6" height="15.0" fill="rgb(248,48,25)" rx="2" ry="2" />
<text x="1060.74" y="1199.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (5 samples, 0.02%)</title><rect x="1082.0" y="1141" width="0.2" height="15.0" fill="rgb(252,173,23)" rx="2" ry="2" />
<text x="1084.98" y="1151.5" ></text>
</g>
<g >
<title>queued_spin_lock_slowpath (5 samples, 0.02%)</title><rect x="1082.0" y="1125" width="0.2" height="15.0" fill="rgb(217,40,14)" rx="2" ry="2" />
<text x="1084.98" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1189.8" y="1269" width="0.2" height="15.0" fill="rgb(243,146,19)" rx="2" ry="2" />
<text x="1192.80" y="1279.5" ></text>
</g>
<g >
<title>DB::ParserIdentifierWithOptionalParameters::parseImpl (46 samples, 0.16%)</title><rect x="210.6" y="997" width="1.8" height="15.0" fill="rgb(241,25,48)" rx="2" ry="2" />
<text x="213.59" y="1007.5" ></text>
</g>
<g >
<title>wp_page_copy (4 samples, 0.01%)</title><rect x="1181.5" y="1173" width="0.1" height="15.0" fill="rgb(249,33,19)" rx="2" ry="2" />
<text x="1184.45" y="1183.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (31 samples, 0.10%)</title><rect x="1185.2" y="1221" width="1.2" height="15.0" fill="rgb(244,42,40)" rx="2" ry="2" />
<text x="1188.17" y="1231.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3 samples, 0.01%)</title><rect x="1179.9" y="1141" width="0.2" height="15.0" fill="rgb(227,3,19)" rx="2" ry="2" />
<text x="1182.94" y="1151.5" ></text>
</g>
<g >
<title>realloc (12 samples, 0.04%)</title><rect x="1011.1" y="933" width="0.5" height="15.0" fill="rgb(251,227,39)" rx="2" ry="2" />
<text x="1014.14" y="943.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (12 samples, 0.04%)</title><rect x="24.1" y="773" width="0.5" height="15.0" fill="rgb(213,37,39)" rx="2" ry="2" />
<text x="27.14" y="783.5" ></text>
</g>
<g >
<title>do_execve (5 samples, 0.02%)</title><rect x="1189.8" y="1237" width="0.2" height="15.0" fill="rgb(229,66,51)" rx="2" ry="2" />
<text x="1192.80" y="1247.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (20 samples, 0.07%)</title><rect x="32.6" y="773" width="0.8" height="15.0" fill="rgb(233,180,34)" rx="2" ry="2" />
<text x="35.56" y="783.5" ></text>
</g>
<g >
<title>large_palloc (3 samples, 0.01%)</title><rect x="1027.5" y="965" width="0.1" height="15.0" fill="rgb(209,49,38)" rx="2" ry="2" />
<text x="1030.51" y="975.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (86 samples, 0.29%)</title><rect x="1027.8" y="1013" width="3.5" height="15.0" fill="rgb(239,140,9)" rx="2" ry="2" />
<text x="1030.83" y="1023.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (10 samples, 0.03%)</title><rect x="1188.6" y="1253" width="0.4" height="15.0" fill="rgb(222,200,47)" rx="2" ry="2" />
<text x="1191.56" y="1263.5" ></text>
</g>
<g >
<title>__madvise (6 samples, 0.02%)</title><rect x="1025.9" y="757" width="0.2" height="15.0" fill="rgb(232,78,52)" rx="2" ry="2" />
<text x="1028.87" y="767.5" ></text>
</g>
<g >
<title>__fput (4 samples, 0.01%)</title><rect x="1043.3" y="1061" width="0.1" height="15.0" fill="rgb(248,139,45)" rx="2" ry="2" />
<text x="1046.28" y="1071.5" ></text>
</g>
<g >
<title>irq_work_interrupt (6 samples, 0.02%)</title><rect x="1113.2" y="1077" width="0.2" height="15.0" fill="rgb(248,51,3)" rx="2" ry="2" />
<text x="1116.17" y="1087.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (22 samples, 0.07%)</title><rect x="1173.9" y="1237" width="0.9" height="15.0" fill="rgb(244,192,5)" rx="2" ry="2" />
<text x="1176.95" y="1247.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (6 samples, 0.02%)</title><rect x="1113.2" y="1093" width="0.2" height="15.0" fill="rgb(213,209,20)" rx="2" ry="2" />
<text x="1116.17" y="1103.5" ></text>
</g>
<g >
<title>DB::CreatingSetsBlockInputStream::createOne (2,127 samples, 7.20%)</title><rect x="10.2" y="1109" width="84.9" height="15.0" fill="rgb(222,2,31)" rx="2" ry="2" />
<text x="13.20" y="1119.5" >DB::Creat..</text>
</g>
<g >
<title>arena_decay (6 samples, 0.02%)</title><rect x="204.4" y="997" width="0.2" height="15.0" fill="rgb(232,192,11)" rx="2" ry="2" />
<text x="207.36" y="1007.5" ></text>
</g>
<g >
<title>clear_page_rep (13 samples, 0.04%)</title><rect x="27.5" y="757" width="0.5" height="15.0" fill="rgb(234,5,17)" rx="2" ry="2" />
<text x="30.49" y="767.5" ></text>
</g>
<g >
<title>dequeue_task_fair (4 samples, 0.01%)</title><rect x="1062.6" y="1109" width="0.1" height="15.0" fill="rgb(222,129,10)" rx="2" ry="2" />
<text x="1065.57" y="1119.5" ></text>
</g>
<g >
<title>kern_select (4 samples, 0.01%)</title><rect x="1094.9" y="1221" width="0.1" height="15.0" fill="rgb(227,181,4)" rx="2" ry="2" />
<text x="1097.88" y="1231.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1039.8" y="1045" width="0.2" height="15.0" fill="rgb(248,114,18)" rx="2" ry="2" />
<text x="1042.85" y="1055.5" ></text>
</g>
<g >
<title>walk_component (3 samples, 0.01%)</title><rect x="1052.9" y="1173" width="0.1" height="15.0" fill="rgb(210,208,42)" rx="2" ry="2" />
<text x="1055.87" y="1183.5" ></text>
</g>
<g >
<title>DB::Connection::receivePacket (8 samples, 0.03%)</title><rect x="1056.2" y="1205" width="0.3" height="15.0" fill="rgb(228,140,4)" rx="2" ry="2" />
<text x="1059.18" y="1215.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_copy&lt;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;::_Alloc_node&gt; (4 samples, 0.01%)</title><rect x="1037.5" y="1109" width="0.2" height="15.0" fill="rgb(240,221,42)" rx="2" ry="2" />
<text x="1040.49" y="1119.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (5 samples, 0.02%)</title><rect x="1039.6" y="1045" width="0.2" height="15.0" fill="rgb(226,211,35)" rx="2" ry="2" />
<text x="1042.65" y="1055.5" ></text>
</g>
<g >
<title>read (40 samples, 0.14%)</title><rect x="1070.3" y="1301" width="1.6" height="15.0" fill="rgb(218,180,43)" rx="2" ry="2" />
<text x="1073.28" y="1311.5" ></text>
</g>
<g >
<title>ParalInputsProc (23,674 samples, 80.12%)</title><rect x="96.7" y="1317" width="945.3" height="15.0" fill="rgb(214,58,9)" rx="2" ry="2" />
<text x="99.66" y="1327.5" >ParalInputsProc</text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.02%)</title><rect x="1010.5" y="949" width="0.2" height="15.0" fill="rgb(228,161,7)" rx="2" ry="2" />
<text x="1013.54" y="959.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeOnBlock (2,105 samples, 7.12%)</title><rect x="97.1" y="1221" width="84.0" height="15.0" fill="rgb(243,30,16)" rx="2" ry="2" />
<text x="100.06" y="1231.5" >DB::Aggre..</text>
</g>
<g >
<title>anon_inode_getfile (4 samples, 0.01%)</title><rect x="1057.2" y="1109" width="0.1" height="15.0" fill="rgb(251,227,32)" rx="2" ry="2" />
<text x="1060.18" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1083.9" y="1253" width="0.2" height="15.0" fill="rgb(246,211,8)" rx="2" ry="2" />
<text x="1086.86" y="1263.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::index (390 samples, 1.32%)</title><rect x="214.1" y="1125" width="15.5" height="15.0" fill="rgb(245,101,8)" rx="2" ry="2" />
<text x="217.06" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.07%)</title><rect x="1184.0" y="1269" width="0.8" height="15.0" fill="rgb(253,39,11)" rx="2" ry="2" />
<text x="1187.01" y="1279.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::execute (19,178 samples, 64.90%)</title><rect x="230.8" y="1141" width="765.9" height="15.0" fill="rgb(215,61,35)" rx="2" ry="2" />
<text x="233.83" y="1151.5" >DB::ExpressionAction::execute</text>
</g>
<g >
<title>kthread (8 samples, 0.03%)</title><rect x="1083.3" y="1285" width="0.4" height="15.0" fill="rgb(234,128,12)" rx="2" ry="2" />
<text x="1086.34" y="1295.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.01%)</title><rect x="75.0" y="869" width="0.1" height="15.0" fill="rgb(212,69,24)" rx="2" ry="2" />
<text x="77.97" y="879.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::~ColumnNullable (14 samples, 0.05%)</title><rect x="181.1" y="1221" width="0.6" height="15.0" fill="rgb(240,1,2)" rx="2" ry="2" />
<text x="184.12" y="1231.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (5 samples, 0.02%)</title><rect x="194.9" y="1045" width="0.2" height="15.0" fill="rgb(254,72,35)" rx="2" ry="2" />
<text x="197.93" y="1055.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1037.5" y="1093" width="0.1" height="15.0" fill="rgb(206,16,20)" rx="2" ry="2" />
<text x="1040.49" y="1103.5" ></text>
</g>
<g >
<title>worker_thread (3 samples, 0.01%)</title><rect x="1075.2" y="1269" width="0.1" height="15.0" fill="rgb(244,149,52)" rx="2" ry="2" />
<text x="1078.19" y="1279.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (7 samples, 0.02%)</title><rect x="1057.4" y="1141" width="0.3" height="15.0" fill="rgb(207,40,13)" rx="2" ry="2" />
<text x="1060.38" y="1151.5" ></text>
</g>
<g >
<title>__queue_work (15 samples, 0.05%)</title><rect x="1165.8" y="1141" width="0.6" height="15.0" fill="rgb(205,176,27)" rx="2" ry="2" />
<text x="1168.76" y="1151.5" ></text>
</g>
<g >
<title>dbs_work_handler (4 samples, 0.01%)</title><rect x="1077.9" y="1237" width="0.2" height="15.0" fill="rgb(218,175,12)" rx="2" ry="2" />
<text x="1080.95" y="1247.5" ></text>
</g>
<g >
<title>DB::QueryState::reset (24 samples, 0.08%)</title><rect x="1042.0" y="1189" width="1.0" height="15.0" fill="rgb(253,155,6)" rx="2" ry="2" />
<text x="1045.05" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1011.3" y="869" width="0.1" height="15.0" fill="rgb(224,206,41)" rx="2" ry="2" />
<text x="1014.26" y="879.5" ></text>
</g>
<g >
<title>large_dalloc (4 samples, 0.01%)</title><rect x="182.6" y="1077" width="0.1" height="15.0" fill="rgb(226,139,18)" rx="2" ry="2" />
<text x="185.55" y="1087.5" ></text>
</g>
<g >
<title>update_blocked_averages (4 samples, 0.01%)</title><rect x="1077.1" y="1157" width="0.2" height="15.0" fill="rgb(244,224,11)" rx="2" ry="2" />
<text x="1080.15" y="1167.5" ></text>
</g>
<g >
<title>sk_reset_timer (5 samples, 0.02%)</title><rect x="1167.4" y="933" width="0.2" height="15.0" fill="rgb(235,100,24)" rx="2" ry="2" />
<text x="1170.40" y="943.5" ></text>
</g>
<g >
<title>tsc_verify_tsc_adjust (3 samples, 0.01%)</title><rect x="1097.6" y="1221" width="0.2" height="15.0" fill="rgb(213,101,50)" rx="2" ry="2" />
<text x="1100.63" y="1231.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (21,495 samples, 72.74%)</title><rect x="182.2" y="1205" width="858.4" height="15.0" fill="rgb(209,42,15)" rx="2" ry="2" />
<text x="185.19" y="1215.5" >DB::ExpressionBlockInputStream::readImpl</text>
</g>
<g >
<title>arch_tlb_finish_mmu (3 samples, 0.01%)</title><rect x="985.8" y="805" width="0.1" height="15.0" fill="rgb(212,109,47)" rx="2" ry="2" />
<text x="988.82" y="815.5" ></text>
</g>
<g >
<title>irq_work_run_list (8 samples, 0.03%)</title><rect x="988.6" y="965" width="0.3" height="15.0" fill="rgb(234,105,51)" rx="2" ry="2" />
<text x="991.57" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1026.1" y="917" width="0.1" height="15.0" fill="rgb(243,73,38)" rx="2" ry="2" />
<text x="1029.11" y="927.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned short&gt;::serializeValueIntoArena (35 samples, 0.12%)</title><rect x="159.2" y="1189" width="1.4" height="15.0" fill="rgb(252,177,21)" rx="2" ry="2" />
<text x="162.19" y="1199.5" ></text>
</g>
<g >
<title>kworker/14:0-ev (12 samples, 0.04%)</title><rect x="1072.2" y="1317" width="0.5" height="15.0" fill="rgb(219,58,13)" rx="2" ry="2" />
<text x="1075.20" y="1327.5" ></text>
</g>
<g >
<title>munmap (14 samples, 0.05%)</title><rect x="1042.4" y="853" width="0.6" height="15.0" fill="rgb(253,137,38)" rx="2" ry="2" />
<text x="1045.41" y="863.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertFrom (7 samples, 0.02%)</title><rect x="31.2" y="821" width="0.3" height="15.0" fill="rgb(243,24,36)" rx="2" ry="2" />
<text x="34.24" y="831.5" ></text>
</g>
<g >
<title>page_fault (10 samples, 0.03%)</title><rect x="1024.9" y="709" width="0.4" height="15.0" fill="rgb(238,208,13)" rx="2" ry="2" />
<text x="1027.91" y="719.5" ></text>
</g>
<g >
<title>Poco::Net::TCPServer::run (175 samples, 0.59%)</title><rect x="1059.8" y="1269" width="7.0" height="15.0" fill="rgb(232,158,46)" rx="2" ry="2" />
<text x="1062.82" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="1051.4" y="1253" width="0.3" height="15.0" fill="rgb(205,21,33)" rx="2" ry="2" />
<text x="1054.43" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1038.6" y="981" width="0.2" height="15.0" fill="rgb(210,223,47)" rx="2" ry="2" />
<text x="1041.57" y="991.5" ></text>
</g>
<g >
<title>DB::ParserFunction::parseImpl (44 samples, 0.15%)</title><rect x="210.6" y="933" width="1.8" height="15.0" fill="rgb(246,124,35)" rx="2" ry="2" />
<text x="213.63" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="182.6" y="981" width="0.1" height="15.0" fill="rgb(206,170,2)" rx="2" ry="2" />
<text x="185.55" y="991.5" ></text>
</g>
<g >
<title>handle_mm_fault (40 samples, 0.14%)</title><rect x="23.5" y="853" width="1.6" height="15.0" fill="rgb(227,185,26)" rx="2" ry="2" />
<text x="26.46" y="863.5" ></text>
</g>
<g >
<title>ovl_read_iter (14 samples, 0.05%)</title><rect x="1022.5" y="869" width="0.6" height="15.0" fill="rgb(229,140,14)" rx="2" ry="2" />
<text x="1025.52" y="879.5" ></text>
</g>
<g >
<title>tick_nohz_get_sleep_length (22 samples, 0.07%)</title><rect x="1170.6" y="1221" width="0.9" height="15.0" fill="rgb(249,147,48)" rx="2" ry="2" />
<text x="1173.59" y="1231.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (80 samples, 0.27%)</title><rect x="1005.5" y="965" width="3.2" height="15.0" fill="rgb(223,130,27)" rx="2" ry="2" />
<text x="1008.51" y="975.5" ></text>
</g>
<g >
<title>__queue_work (38 samples, 0.13%)</title><rect x="1107.4" y="1045" width="1.5" height="15.0" fill="rgb(247,65,38)" rx="2" ry="2" />
<text x="1110.38" y="1055.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.02%)</title><rect x="204.7" y="981" width="0.3" height="15.0" fill="rgb(227,26,27)" rx="2" ry="2" />
<text x="207.72" y="991.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="977.8" y="933" width="0.2" height="15.0" fill="rgb(243,108,50)" rx="2" ry="2" />
<text x="980.79" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (62 samples, 0.21%)</title><rect x="1027.8" y="949" width="2.5" height="15.0" fill="rgb(249,142,33)" rx="2" ry="2" />
<text x="1030.83" y="959.5" ></text>
</g>
<g >
<title>arena_tcache_fill_small (4 samples, 0.01%)</title><rect x="98.1" y="1125" width="0.1" height="15.0" fill="rgb(210,33,9)" rx="2" ry="2" />
<text x="101.05" y="1135.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (4 samples, 0.01%)</title><rect x="182.8" y="901" width="0.2" height="15.0" fill="rgb(213,201,33)" rx="2" ry="2" />
<text x="185.79" y="911.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (13 samples, 0.04%)</title><rect x="1059.2" y="1173" width="0.5" height="15.0" fill="rgb(225,147,40)" rx="2" ry="2" />
<text x="1062.22" y="1183.5" ></text>
</g>
<g >
<title>flush_old_exec (4 samples, 0.01%)</title><rect x="1189.8" y="1173" width="0.2" height="15.0" fill="rgb(217,21,9)" rx="2" ry="2" />
<text x="1192.84" y="1183.5" ></text>
</g>
<g >
<title>zap_page_range (4 samples, 0.01%)</title><rect x="977.8" y="837" width="0.2" height="15.0" fill="rgb(217,36,25)" rx="2" ry="2" />
<text x="980.79" y="847.5" ></text>
</g>
<g >
<title>alloc_file (3 samples, 0.01%)</title><rect x="1061.7" y="1141" width="0.1" height="15.0" fill="rgb(246,147,42)" rx="2" ry="2" />
<text x="1064.65" y="1151.5" ></text>
</g>
<g >
<title>__se_sys_madvise (7 samples, 0.02%)</title><rect x="204.7" y="885" width="0.3" height="15.0" fill="rgb(251,75,16)" rx="2" ry="2" />
<text x="207.72" y="895.5" ></text>
</g>
<g >
<title>copyout (4 samples, 0.01%)</title><rect x="1031.1" y="805" width="0.1" height="15.0" fill="rgb(212,18,22)" rx="2" ry="2" />
<text x="1034.06" y="815.5" ></text>
</g>
<g >
<title>__se_sys_newstat (3 samples, 0.01%)</title><rect x="1040.1" y="1045" width="0.1" height="15.0" fill="rgb(232,2,36)" rx="2" ry="2" />
<text x="1043.09" y="1055.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (5 samples, 0.02%)</title><rect x="28.4" y="773" width="0.2" height="15.0" fill="rgb(217,10,40)" rx="2" ry="2" />
<text x="31.41" y="783.5" ></text>
</g>
<g >
<title>ret_from_fork (23 samples, 0.08%)</title><rect x="1080.7" y="1301" width="0.9" height="15.0" fill="rgb(215,213,24)" rx="2" ry="2" />
<text x="1083.66" y="1311.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.05%)</title><rect x="1043.5" y="1125" width="0.5" height="15.0" fill="rgb(236,210,29)" rx="2" ry="2" />
<text x="1046.48" y="1135.5" ></text>
</g>
<g >
<title>do_sys_poll (6 samples, 0.02%)</title><rect x="1178.1" y="1205" width="0.2" height="15.0" fill="rgb(249,148,23)" rx="2" ry="2" />
<text x="1181.10" y="1215.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (3 samples, 0.01%)</title><rect x="201.4" y="821" width="0.2" height="15.0" fill="rgb(225,69,23)" rx="2" ry="2" />
<text x="204.44" y="831.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (3 samples, 0.01%)</title><rect x="1039.5" y="949" width="0.1" height="15.0" fill="rgb(211,2,38)" rx="2" ry="2" />
<text x="1042.53" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="96.1" y="1157" width="0.1" height="15.0" fill="rgb(229,61,7)" rx="2" ry="2" />
<text x="99.06" y="1167.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (28 samples, 0.09%)</title><rect x="210.7" y="693" width="1.2" height="15.0" fill="rgb(250,112,42)" rx="2" ry="2" />
<text x="213.75" y="703.5" ></text>
</g>
<g >
<title>cpumask_next_and (3 samples, 0.01%)</title><rect x="1063.8" y="1061" width="0.2" height="15.0" fill="rgb(226,175,45)" rx="2" ry="2" />
<text x="1066.85" y="1071.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (22 samples, 0.07%)</title><rect x="1111.1" y="1125" width="0.8" height="15.0" fill="rgb(221,3,47)" rx="2" ry="2" />
<text x="1114.05" y="1135.5" ></text>
</g>
<g >
<title>tcp_write_xmit (36 samples, 0.12%)</title><rect x="1046.0" y="1157" width="1.4" height="15.0" fill="rgb(224,204,44)" rx="2" ry="2" />
<text x="1049.00" y="1167.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::startReadingChain (990 samples, 3.35%)</title><rect x="997.7" y="1093" width="39.6" height="15.0" fill="rgb(215,39,39)" rx="2" ry="2" />
<text x="1000.72" y="1103.5" >DB:..</text>
</g>
<g >
<title>[clickhouse] (14 samples, 0.05%)</title><rect x="1037.9" y="1045" width="0.5" height="15.0" fill="rgb(225,229,7)" rx="2" ry="2" />
<text x="1040.85" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.03%)</title><rect x="182.8" y="997" width="0.3" height="15.0" fill="rgb(252,187,41)" rx="2" ry="2" />
<text x="185.79" y="1007.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1043.2" y="1125" width="0.3" height="15.0" fill="rgb(228,189,29)" rx="2" ry="2" />
<text x="1046.24" y="1135.5" ></text>
</g>
<g >
<title>page_fault (8 samples, 0.03%)</title><rect x="1001.5" y="933" width="0.3" height="15.0" fill="rgb(232,140,27)" rx="2" ry="2" />
<text x="1004.51" y="943.5" ></text>
</g>
<g >
<title>do_munmap (4 samples, 0.01%)</title><rect x="10.2" y="853" width="0.2" height="15.0" fill="rgb(223,135,30)" rx="2" ry="2" />
<text x="13.24" y="863.5" ></text>
</g>
<g >
<title>zap_page_range (3 samples, 0.01%)</title><rect x="230.6" y="965" width="0.1" height="15.0" fill="rgb(219,167,7)" rx="2" ry="2" />
<text x="233.55" y="975.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (3 samples, 0.01%)</title><rect x="1067.6" y="1301" width="0.1" height="15.0" fill="rgb(232,121,54)" rx="2" ry="2" />
<text x="1070.56" y="1311.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (10 samples, 0.03%)</title><rect x="1083.8" y="1285" width="0.4" height="15.0" fill="rgb(250,63,10)" rx="2" ry="2" />
<text x="1086.78" y="1295.5" ></text>
</g>
<g >
<title>copy_user_generic_string (9 samples, 0.03%)</title><rect x="1022.5" y="773" width="0.4" height="15.0" fill="rgb(246,11,40)" rx="2" ry="2" />
<text x="1025.52" y="783.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge_delay (3 samples, 0.01%)</title><rect x="91.5" y="949" width="0.1" height="15.0" fill="rgb(225,2,17)" rx="2" ry="2" />
<text x="94.50" y="959.5" ></text>
</g>
<g >
<title>acpi_processor_ffh_cstate_enter (59 samples, 0.20%)</title><rect x="1153.2" y="1205" width="2.3" height="15.0" fill="rgb(219,179,18)" rx="2" ry="2" />
<text x="1156.18" y="1215.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::insertFrom (461 samples, 1.56%)</title><rect x="189.3" y="1125" width="18.5" height="15.0" fill="rgb(225,124,41)" rx="2" ry="2" />
<text x="192.34" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.05%)</title><rect x="1022.5" y="949" width="0.6" height="15.0" fill="rgb(242,78,30)" rx="2" ry="2" />
<text x="1025.52" y="959.5" ></text>
</g>
<g >
<title>DB::TCPHandler::processOrdinaryQuery (69 samples, 0.23%)</title><rect x="1043.0" y="1189" width="2.8" height="15.0" fill="rgb(222,129,1)" rx="2" ry="2" />
<text x="1046.00" y="1199.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.04%)</title><rect x="1094.0" y="1301" width="0.6" height="15.0" fill="rgb(234,113,50)" rx="2" ry="2" />
<text x="1097.04" y="1311.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="212.3" y="917" width="0.1" height="15.0" fill="rgb(249,152,34)" rx="2" ry="2" />
<text x="215.26" y="927.5" ></text>
</g>
<g >
<title>do_vfs_ioctl (5 samples, 0.02%)</title><rect x="1085.2" y="1125" width="0.2" height="15.0" fill="rgb(251,1,31)" rx="2" ry="2" />
<text x="1088.21" y="1135.5" ></text>
</g>
<g >
<title>__do_page_fault (12 samples, 0.04%)</title><rect x="207.2" y="1077" width="0.5" height="15.0" fill="rgb(230,13,20)" rx="2" ry="2" />
<text x="210.19" y="1087.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="206.8" y="965" width="0.1" height="15.0" fill="rgb(238,194,9)" rx="2" ry="2" />
<text x="209.75" y="975.5" ></text>
</g>
<g >
<title>wp_page_copy (29 samples, 0.10%)</title><rect x="23.9" y="805" width="1.1" height="15.0" fill="rgb(221,130,32)" rx="2" ry="2" />
<text x="26.86" y="815.5" ></text>
</g>
<g >
<title>path_openat (17 samples, 0.06%)</title><rect x="1069.1" y="1205" width="0.7" height="15.0" fill="rgb(238,198,39)" rx="2" ry="2" />
<text x="1072.12" y="1215.5" ></text>
</g>
<g >
<title>DB::NumComparisonImpl&lt;unsigned long, unsigned char, DB::GreaterOp&lt;unsigned long, unsigned char&gt; &gt;::vector_constant (4 samples, 0.01%)</title><rect x="10.4" y="917" width="0.2" height="15.0" fill="rgb(241,8,12)" rx="2" ry="2" />
<text x="13.40" y="927.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (107 samples, 0.36%)</title><rect x="1062.4" y="1205" width="4.3" height="15.0" fill="rgb(239,145,9)" rx="2" ry="2" />
<text x="1065.41" y="1215.5" ></text>
</g>
<g >
<title>unmap_page_range (6 samples, 0.02%)</title><rect x="1093.3" y="1173" width="0.3" height="15.0" fill="rgb(241,50,6)" rx="2" ry="2" />
<text x="1096.32" y="1183.5" ></text>
</g>
<g >
<title>update_blocked_averages (4 samples, 0.01%)</title><rect x="1045.4" y="965" width="0.2" height="15.0" fill="rgb(211,141,29)" rx="2" ry="2" />
<text x="1048.44" y="975.5" ></text>
</g>
<g >
<title>__libc_fork (9 samples, 0.03%)</title><rect x="1051.4" y="1269" width="0.4" height="15.0" fill="rgb(252,15,15)" rx="2" ry="2" />
<text x="1054.43" y="1279.5" ></text>
</g>
<g >
<title>__ia32_sys_exit_group (9 samples, 0.03%)</title><rect x="1053.9" y="1269" width="0.4" height="15.0" fill="rgb(211,54,40)" rx="2" ry="2" />
<text x="1056.91" y="1279.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1094.6" y="1285" width="0.1" height="15.0" fill="rgb(227,192,13)" rx="2" ry="2" />
<text x="1097.56" y="1295.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (5 samples, 0.02%)</title><rect x="181.3" y="1205" width="0.2" height="15.0" fill="rgb(206,40,42)" rx="2" ry="2" />
<text x="184.28" y="1215.5" ></text>
</g>
<g >
<title>_init (15 samples, 0.05%)</title><rect x="1181.9" y="1285" width="0.6" height="15.0" fill="rgb(242,65,38)" rx="2" ry="2" />
<text x="1184.89" y="1295.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (3 samples, 0.01%)</title><rect x="1027.4" y="997" width="0.1" height="15.0" fill="rgb(254,171,3)" rx="2" ry="2" />
<text x="1030.39" y="1007.5" ></text>
</g>
<g >
<title>memequalSSE2Wide (90 samples, 0.30%)</title><rect x="177.4" y="1189" width="3.6" height="15.0" fill="rgb(213,218,10)" rx="2" ry="2" />
<text x="180.44" y="1199.5" ></text>
</g>
<g >
<title>zap_page_range (3 samples, 0.01%)</title><rect x="1016.6" y="805" width="0.1" height="15.0" fill="rgb(221,144,3)" rx="2" ry="2" />
<text x="1019.61" y="815.5" ></text>
</g>
<g >
<title>epoll_create (14 samples, 0.05%)</title><rect x="1043.5" y="1141" width="0.5" height="15.0" fill="rgb(225,88,1)" rx="2" ry="2" />
<text x="1046.48" y="1151.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup.isra.6 (3 samples, 0.01%)</title><rect x="988.7" y="901" width="0.2" height="15.0" fill="rgb(229,48,46)" rx="2" ry="2" />
<text x="991.73" y="911.5" ></text>
</g>
<g >
<title>perf_event_task_tick (20 samples, 0.07%)</title><rect x="1100.5" y="1109" width="0.8" height="15.0" fill="rgb(238,4,37)" rx="2" ry="2" />
<text x="1103.47" y="1119.5" ></text>
</g>
<g >
<title>DB::Aggregator::execute (1,450 samples, 4.91%)</title><rect x="12.8" y="965" width="57.9" height="15.0" fill="rgb(205,202,31)" rx="2" ry="2" />
<text x="15.84" y="975.5" >DB::Ag..</text>
</g>
<g >
<title>do_epoll_create (13 samples, 0.04%)</title><rect x="1043.5" y="1077" width="0.5" height="15.0" fill="rgb(246,28,0)" rx="2" ry="2" />
<text x="1046.52" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1025.9" y="725" width="0.2" height="15.0" fill="rgb(219,64,46)" rx="2" ry="2" />
<text x="1028.87" y="735.5" ></text>
</g>
<g >
<title>__handle_mm_fault (46 samples, 0.16%)</title><rect x="26.9" y="853" width="1.8" height="15.0" fill="rgb(243,3,1)" rx="2" ry="2" />
<text x="29.85" y="863.5" ></text>
</g>
<g >
<title>DB::ColumnFixedString::~ColumnFixedString (5 samples, 0.02%)</title><rect x="230.5" y="1141" width="0.2" height="15.0" fill="rgb(205,24,51)" rx="2" ry="2" />
<text x="233.51" y="1151.5" ></text>
</g>
<g >
<title>process_backlog (8 samples, 0.03%)</title><rect x="1059.4" y="1029" width="0.3" height="15.0" fill="rgb(219,83,35)" rx="2" ry="2" />
<text x="1062.42" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1038.6" y="965" width="0.2" height="15.0" fill="rgb(234,49,48)" rx="2" ry="2" />
<text x="1041.57" y="975.5" ></text>
</g>
<g >
<title>dput (5 samples, 0.02%)</title><rect x="1060.2" y="1157" width="0.2" height="15.0" fill="rgb(219,142,7)" rx="2" ry="2" />
<text x="1063.18" y="1167.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (992 samples, 3.36%)</title><rect x="31.1" y="901" width="39.6" height="15.0" fill="rgb(206,48,8)" rx="2" ry="2" />
<text x="34.08" y="911.5" >DB:..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (31 samples, 0.10%)</title><rect x="1185.2" y="1285" width="1.2" height="15.0" fill="rgb(223,103,6)" rx="2" ry="2" />
<text x="1188.17" y="1295.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (20 samples, 0.07%)</title><rect x="1046.4" y="1077" width="0.8" height="15.0" fill="rgb(248,94,11)" rx="2" ry="2" />
<text x="1049.40" y="1087.5" ></text>
</g>
<g >
<title>link_path_walk (4 samples, 0.01%)</title><rect x="1039.8" y="949" width="0.2" height="15.0" fill="rgb(206,35,20)" rx="2" ry="2" />
<text x="1042.85" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1189.8" y="1285" width="0.2" height="15.0" fill="rgb(223,79,30)" rx="2" ry="2" />
<text x="1192.80" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3 samples, 0.01%)</title><rect x="1070.3" y="1285" width="0.1" height="15.0" fill="rgb(229,123,38)" rx="2" ry="2" />
<text x="1073.28" y="1295.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromPocoSocket::poll (26 samples, 0.09%)</title><rect x="1056.7" y="1205" width="1.0" height="15.0" fill="rgb(250,68,27)" rx="2" ry="2" />
<text x="1059.66" y="1215.5" ></text>
</g>
<g >
<title>do_execve (5 samples, 0.02%)</title><rect x="1094.1" y="1205" width="0.2" height="15.0" fill="rgb(219,66,50)" rx="2" ry="2" />
<text x="1097.08" y="1215.5" ></text>
</g>
<g >
<title>__sched_text_start (7 samples, 0.02%)</title><rect x="992.7" y="1013" width="0.3" height="15.0" fill="rgb(225,82,40)" rx="2" ry="2" />
<text x="995.69" y="1023.5" ></text>
</g>
<g >
<title>__x86_indirect_thunk_r13 (3 samples, 0.01%)</title><rect x="1085.4" y="1301" width="0.1" height="15.0" fill="rgb(206,206,36)" rx="2" ry="2" />
<text x="1088.41" y="1311.5" ></text>
</g>
<g >
<title>__GI___libc_close (25 samples, 0.08%)</title><rect x="1060.0" y="1253" width="1.0" height="15.0" fill="rgb(247,208,39)" rx="2" ry="2" />
<text x="1062.98" y="1263.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (21 samples, 0.07%)</title><rect x="1031.7" y="949" width="0.8" height="15.0" fill="rgb(222,72,53)" rx="2" ry="2" />
<text x="1034.70" y="959.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (4 samples, 0.01%)</title><rect x="182.6" y="1013" width="0.1" height="15.0" fill="rgb(232,141,5)" rx="2" ry="2" />
<text x="185.55" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1039.3" y="885" width="0.1" height="15.0" fill="rgb(232,156,25)" rx="2" ry="2" />
<text x="1042.25" y="895.5" ></text>
</g>
<g >
<title>__se_sys_madvise (6 samples, 0.02%)</title><rect x="1025.9" y="709" width="0.2" height="15.0" fill="rgb(252,195,23)" rx="2" ry="2" />
<text x="1028.87" y="719.5" ></text>
</g>
<g >
<title>do_filp_open (6 samples, 0.02%)</title><rect x="1038.6" y="933" width="0.2" height="15.0" fill="rgb(205,121,36)" rx="2" ry="2" />
<text x="1041.57" y="943.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="421" width="0.9" height="15.0" fill="rgb(220,84,4)" rx="2" ry="2" />
<text x="213.79" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (71 samples, 0.24%)</title><rect x="1098.4" y="1173" width="2.9" height="15.0" fill="rgb(254,33,22)" rx="2" ry="2" />
<text x="1101.43" y="1183.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3 samples, 0.01%)</title><rect x="1066.0" y="1029" width="0.1" height="15.0" fill="rgb(235,210,48)" rx="2" ry="2" />
<text x="1068.97" y="1039.5" ></text>
</g>
<g >
<title>ptep_clear_flush (13 samples, 0.04%)</title><rect x="94.1" y="965" width="0.6" height="15.0" fill="rgb(238,197,24)" rx="2" ry="2" />
<text x="97.14" y="975.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (12 samples, 0.04%)</title><rect x="1025.8" y="997" width="0.4" height="15.0" fill="rgb(224,129,44)" rx="2" ry="2" />
<text x="1028.75" y="1007.5" ></text>
</g>
<g >
<title>memcpy (5 samples, 0.02%)</title><rect x="1027.6" y="1013" width="0.2" height="15.0" fill="rgb(228,49,35)" rx="2" ry="2" />
<text x="1030.63" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (126 samples, 0.43%)</title><rect x="1031.7" y="1013" width="5.0" height="15.0" fill="rgb(205,29,27)" rx="2" ry="2" />
<text x="1034.66" y="1023.5" ></text>
</g>
<g >
<title>__x64_sys_execve (5 samples, 0.02%)</title><rect x="1189.8" y="1253" width="0.2" height="15.0" fill="rgb(236,42,44)" rx="2" ry="2" />
<text x="1192.80" y="1263.5" ></text>
</g>
<g >
<title>DB::DataTypeLowCardinality::enumerateStreams (18 samples, 0.06%)</title><rect x="1037.9" y="1077" width="0.7" height="15.0" fill="rgb(211,62,6)" rx="2" ry="2" />
<text x="1040.85" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.03%)</title><rect x="1056.8" y="1173" width="0.3" height="15.0" fill="rgb(241,56,20)" rx="2" ry="2" />
<text x="1059.78" y="1183.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (11 samples, 0.04%)</title><rect x="1061.4" y="1157" width="0.4" height="15.0" fill="rgb(230,115,14)" rx="2" ry="2" />
<text x="1064.37" y="1167.5" ></text>
</g>
<g >
<title>task_work_run (4 samples, 0.01%)</title><rect x="1068.8" y="1221" width="0.2" height="15.0" fill="rgb(213,168,25)" rx="2" ry="2" />
<text x="1071.80" y="1231.5" ></text>
</g>
<g >
<title>memcpy (84 samples, 0.28%)</title><rect x="993.2" y="1093" width="3.4" height="15.0" fill="rgb(236,89,10)" rx="2" ry="2" />
<text x="996.21" y="1103.5" ></text>
</g>
<g >
<title>run_timer_softirq (4 samples, 0.01%)</title><rect x="989.2" y="1013" width="0.2" height="15.0" fill="rgb(212,144,38)" rx="2" ry="2" />
<text x="992.21" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (43 samples, 0.15%)</title><rect x="1045.8" y="1285" width="1.8" height="15.0" fill="rgb(249,62,32)" rx="2" ry="2" />
<text x="1048.84" y="1295.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::worker (2,132 samples, 7.22%)</title><rect x="10.0" y="1253" width="85.1" height="15.0" fill="rgb(218,141,28)" rx="2" ry="2" />
<text x="13.00" y="1263.5" >ThreadPool..</text>
</g>
<g >
<title>ttwu_do_activate.isra.7 (3 samples, 0.01%)</title><rect x="988.6" y="901" width="0.1" height="15.0" fill="rgb(245,13,21)" rx="2" ry="2" />
<text x="991.61" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1093.6" y="1269" width="0.1" height="15.0" fill="rgb(211,199,22)" rx="2" ry="2" />
<text x="1096.56" y="1279.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (11 samples, 0.04%)</title><rect x="79.4" y="837" width="0.4" height="15.0" fill="rgb(225,54,36)" rx="2" ry="2" />
<text x="82.36" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1043.2" y="1109" width="0.3" height="15.0" fill="rgb(237,217,37)" rx="2" ry="2" />
<text x="1046.24" y="1119.5" ></text>
</g>
<g >
<title>close (8 samples, 0.03%)</title><rect x="1068.6" y="1285" width="0.4" height="15.0" fill="rgb(249,176,48)" rx="2" ry="2" />
<text x="1071.64" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (25 samples, 0.08%)</title><rect x="1060.0" y="1237" width="1.0" height="15.0" fill="rgb(221,132,52)" rx="2" ry="2" />
<text x="1062.98" y="1247.5" ></text>
</g>
<g >
<title>seq_read (24 samples, 0.08%)</title><rect x="1070.9" y="1205" width="1.0" height="15.0" fill="rgb(231,74,52)" rx="2" ry="2" />
<text x="1073.92" y="1215.5" ></text>
</g>
<g >
<title>unmap_page_range (14 samples, 0.05%)</title><rect x="1042.4" y="725" width="0.6" height="15.0" fill="rgb(247,216,21)" rx="2" ry="2" />
<text x="1045.41" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.05%)</title><rect x="1042.4" y="837" width="0.6" height="15.0" fill="rgb(253,132,37)" rx="2" ry="2" />
<text x="1045.41" y="847.5" ></text>
</g>
<g >
<title>event_function (228 samples, 0.77%)</title><rect x="1156.5" y="1157" width="9.1" height="15.0" fill="rgb(214,42,13)" rx="2" ry="2" />
<text x="1159.46" y="1167.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1037.9" y="805" width="0.1" height="15.0" fill="rgb(217,107,5)" rx="2" ry="2" />
<text x="1040.85" y="815.5" ></text>
</g>
<g >
<title>mmput (3 samples, 0.01%)</title><rect x="1094.6" y="1221" width="0.1" height="15.0" fill="rgb(225,28,39)" rx="2" ry="2" />
<text x="1097.56" y="1231.5" ></text>
</g>
<g >
<title>load_balance (7 samples, 0.02%)</title><rect x="1077.0" y="1205" width="0.3" height="15.0" fill="rgb(248,217,10)" rx="2" ry="2" />
<text x="1080.03" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="985.8" y="885" width="0.1" height="15.0" fill="rgb(225,77,54)" rx="2" ry="2" />
<text x="988.82" y="895.5" ></text>
</g>
<g >
<title>do_syscall_64 (23 samples, 0.08%)</title><rect x="1054.9" y="1269" width="0.9" height="15.0" fill="rgb(230,4,24)" rx="2" ry="2" />
<text x="1057.90" y="1279.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (992 samples, 3.36%)</title><rect x="31.1" y="885" width="39.6" height="15.0" fill="rgb(248,132,4)" rx="2" ry="2" />
<text x="34.08" y="895.5" >DB:..</text>
</g>
<g >
<title>BackgrProcPool (8 samples, 0.03%)</title><rect x="95.2" y="1317" width="0.3" height="15.0" fill="rgb(250,144,42)" rx="2" ry="2" />
<text x="98.18" y="1327.5" ></text>
</g>
<g >
<title>memcpy (33 samples, 0.11%)</title><rect x="1009.4" y="1013" width="1.3" height="15.0" fill="rgb(223,124,47)" rx="2" ry="2" />
<text x="1012.42" y="1023.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (4 samples, 0.01%)</title><rect x="1084.5" y="1285" width="0.1" height="15.0" fill="rgb(250,12,27)" rx="2" ry="2" />
<text x="1087.46" y="1295.5" ></text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (6 samples, 0.02%)</title><rect x="1037.9" y="997" width="0.2" height="15.0" fill="rgb(217,86,39)" rx="2" ry="2" />
<text x="1040.85" y="1007.5" ></text>
</g>
<g >
<title>LZ4::decompress (73 samples, 0.25%)</title><rect x="998.9" y="965" width="2.9" height="15.0" fill="rgb(240,95,8)" rx="2" ry="2" />
<text x="1001.92" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.07%)</title><rect x="1069.1" y="1269" width="0.8" height="15.0" fill="rgb(233,97,20)" rx="2" ry="2" />
<text x="1072.08" y="1279.5" ></text>
</g>
<g >
<title>sock_poll (5 samples, 0.02%)</title><rect x="1062.0" y="1173" width="0.2" height="15.0" fill="rgb(238,92,11)" rx="2" ry="2" />
<text x="1064.97" y="1183.5" ></text>
</g>
<g >
<title>remove_wait_queue (3 samples, 0.01%)</title><rect x="1060.7" y="1109" width="0.1" height="15.0" fill="rgb(231,71,30)" rx="2" ry="2" />
<text x="1063.65" y="1119.5" ></text>
</g>
<g >
<title>migrate_pages (7 samples, 0.02%)</title><rect x="1015.6" y="645" width="0.3" height="15.0" fill="rgb(223,38,50)" rx="2" ry="2" />
<text x="1018.65" y="655.5" ></text>
</g>
<g >
<title>arch_cpu_idle_enter (7 samples, 0.02%)</title><rect x="1097.5" y="1237" width="0.3" height="15.0" fill="rgb(228,218,50)" rx="2" ry="2" />
<text x="1100.47" y="1247.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="97.3" y="1157" width="0.2" height="15.0" fill="rgb(246,94,31)" rx="2" ry="2" />
<text x="100.33" y="1167.5" ></text>
</g>
<g >
<title>DB::ParserQualifiedAsterisk::parseImpl (4 samples, 0.01%)</title><rect x="211.3" y="69" width="0.2" height="15.0" fill="rgb(232,129,17)" rx="2" ry="2" />
<text x="214.35" y="79.5" ></text>
</g>
<g >
<title>DB::NumComparisonImpl&lt;unsigned char, unsigned char, DB::EqualsOp&lt;unsigned char, unsigned char&gt; &gt;::vector_constant (6 samples, 0.02%)</title><rect x="184.4" y="1109" width="0.3" height="15.0" fill="rgb(206,74,48)" rx="2" ry="2" />
<text x="187.43" y="1119.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (249 samples, 0.84%)</title><rect x="1155.6" y="1221" width="10.0" height="15.0" fill="rgb(234,209,13)" rx="2" ry="2" />
<text x="1158.62" y="1231.5" ></text>
</g>
<g >
<title>zap_page_range (6 samples, 0.02%)</title><rect x="1025.9" y="693" width="0.2" height="15.0" fill="rgb(252,53,54)" rx="2" ry="2" />
<text x="1028.87" y="703.5" ></text>
</g>
<g >
<title>page_fault (16 samples, 0.05%)</title><rect x="11.8" y="933" width="0.6" height="15.0" fill="rgb(246,96,45)" rx="2" ry="2" />
<text x="14.80" y="943.5" ></text>
</g>
<g >
<title>expire_timers (16 samples, 0.05%)</title><rect x="1113.0" y="1141" width="0.6" height="15.0" fill="rgb(217,207,44)" rx="2" ry="2" />
<text x="1115.97" y="1151.5" ></text>
</g>
<g >
<title>__do_page_fault (11 samples, 0.04%)</title><rect x="75.6" y="853" width="0.5" height="15.0" fill="rgb(211,161,4)" rx="2" ry="2" />
<text x="78.61" y="863.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1092.1" y="1253" width="0.2" height="15.0" fill="rgb(221,121,8)" rx="2" ry="2" />
<text x="1095.12" y="1263.5" ></text>
</g>
<g >
<title>[unknown] (15 samples, 0.05%)</title><rect x="1180.5" y="1269" width="0.6" height="15.0" fill="rgb(244,192,8)" rx="2" ry="2" />
<text x="1183.54" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1092.4" y="1285" width="0.3" height="15.0" fill="rgb(209,199,25)" rx="2" ry="2" />
<text x="1095.40" y="1295.5" ></text>
</g>
<g >
<title>wp_page_copy (14 samples, 0.05%)</title><rect x="1179.9" y="1189" width="0.6" height="15.0" fill="rgb(231,34,47)" rx="2" ry="2" />
<text x="1182.90" y="1199.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (8 samples, 0.03%)</title><rect x="1059.4" y="1061" width="0.3" height="15.0" fill="rgb(225,87,31)" rx="2" ry="2" />
<text x="1062.42" y="1071.5" ></text>
</g>
<g >
<title>enqueue_task_fair (12 samples, 0.04%)</title><rect x="1098.9" y="1109" width="0.5" height="15.0" fill="rgb(252,154,32)" rx="2" ry="2" />
<text x="1101.91" y="1119.5" ></text>
</g>
<g >
<title>error_entry (6 samples, 0.02%)</title><rect x="25.2" y="901" width="0.3" height="15.0" fill="rgb(221,94,16)" rx="2" ry="2" />
<text x="28.21" y="911.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (11 samples, 0.04%)</title><rect x="1092.0" y="1285" width="0.4" height="15.0" fill="rgb(233,63,38)" rx="2" ry="2" />
<text x="1094.96" y="1295.5" ></text>
</g>
<g >
<title>update_nohz_stats (26 samples, 0.09%)</title><rect x="1090.6" y="1157" width="1.0" height="15.0" fill="rgb(238,81,10)" rx="2" ry="2" />
<text x="1093.61" y="1167.5" ></text>
</g>
<g >
<title>[clickhouse] (2,132 samples, 7.22%)</title><rect x="10.0" y="1237" width="85.1" height="15.0" fill="rgb(206,177,45)" rx="2" ry="2" />
<text x="13.00" y="1247.5" >[clickhouse]</text>
</g>
<g >
<title>flush_smp_call_function_queue (6 samples, 0.02%)</title><rect x="979.2" y="1029" width="0.2" height="15.0" fill="rgb(223,196,37)" rx="2" ry="2" />
<text x="982.15" y="1039.5" ></text>
</g>
<g >
<title>wq_worker_waking_up (3 samples, 0.01%)</title><rect x="1166.1" y="1093" width="0.1" height="15.0" fill="rgb(237,90,0)" rx="2" ry="2" />
<text x="1169.08" y="1103.5" ></text>
</g>
<g >
<title>find_busiest_group (39 samples, 0.13%)</title><rect x="1105.1" y="1125" width="1.6" height="15.0" fill="rgb(230,157,14)" rx="2" ry="2" />
<text x="1108.14" y="1135.5" ></text>
</g>
<g >
<title>page_fault (68 samples, 0.23%)</title><rect x="26.0" y="901" width="2.7" height="15.0" fill="rgb(253,227,15)" rx="2" ry="2" />
<text x="28.97" y="911.5" ></text>
</g>
<g >
<title>[clickhouse] (55 samples, 0.19%)</title><rect x="1023.4" y="997" width="2.2" height="15.0" fill="rgb(241,93,7)" rx="2" ry="2" />
<text x="1026.40" y="1007.5" ></text>
</g>
<g >
<title>do_readv (3 samples, 0.01%)</title><rect x="1181.0" y="1205" width="0.1" height="15.0" fill="rgb(212,194,1)" rx="2" ry="2" />
<text x="1183.97" y="1215.5" ></text>
</g>
<g >
<title>unmap_vmas (6 samples, 0.02%)</title><rect x="1084.9" y="1189" width="0.3" height="15.0" fill="rgb(206,98,6)" rx="2" ry="2" />
<text x="1087.93" y="1199.5" ></text>
</g>
<g >
<title>DB::AggregatingBlockInputStream::readImpl (1,677 samples, 5.68%)</title><rect x="12.8" y="981" width="67.0" height="15.0" fill="rgb(234,135,5)" rx="2" ry="2" />
<text x="15.84" y="991.5" >DB::Agg..</text>
</g>
<g >
<title>n_tty_write (7 samples, 0.02%)</title><rect x="1057.8" y="1077" width="0.3" height="15.0" fill="rgb(219,215,46)" rx="2" ry="2" />
<text x="1060.78" y="1087.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="29.5" y="917" width="0.2" height="15.0" fill="rgb(243,150,39)" rx="2" ry="2" />
<text x="32.53" y="927.5" ></text>
</g>
<g >
<title>__handle_mm_fault (21 samples, 0.07%)</title><rect x="1179.6" y="1221" width="0.9" height="15.0" fill="rgb(206,198,26)" rx="2" ry="2" />
<text x="1182.62" y="1231.5" ></text>
</g>
<g >
<title>memcg_check_events (3 samples, 0.01%)</title><rect x="28.1" y="789" width="0.1" height="15.0" fill="rgb(219,27,31)" rx="2" ry="2" />
<text x="31.05" y="799.5" ></text>
</g>
<g >
<title>update_blocked_averages (6 samples, 0.02%)</title><rect x="1081.9" y="1157" width="0.3" height="15.0" fill="rgb(249,215,19)" rx="2" ry="2" />
<text x="1084.94" y="1167.5" ></text>
</g>
<g >
<title>DB::ParserWithOptionalAlias::parseImpl (37 samples, 0.13%)</title><rect x="210.7" y="821" width="1.4" height="15.0" fill="rgb(214,136,38)" rx="2" ry="2" />
<text x="213.67" y="831.5" ></text>
</g>
<g >
<title>pick_next_task_fair (4 samples, 0.01%)</title><rect x="992.8" y="997" width="0.2" height="15.0" fill="rgb(212,41,0)" rx="2" ry="2" />
<text x="995.81" y="1007.5" ></text>
</g>
<g >
<title>vfs_read (95 samples, 0.32%)</title><rect x="1032.7" y="869" width="3.8" height="15.0" fill="rgb(223,171,40)" rx="2" ry="2" />
<text x="1035.70" y="879.5" ></text>
</g>
<g >
<title>irq_exit (289 samples, 0.98%)</title><rect x="1102.2" y="1189" width="11.5" height="15.0" fill="rgb(226,33,45)" rx="2" ry="2" />
<text x="1105.19" y="1199.5" ></text>
</g>
<g >
<title>load_balance (11 samples, 0.04%)</title><rect x="1082.4" y="1205" width="0.4" height="15.0" fill="rgb(244,17,12)" rx="2" ry="2" />
<text x="1085.38" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1027.5" y="997" width="0.1" height="15.0" fill="rgb(222,6,19)" rx="2" ry="2" />
<text x="1030.51" y="1007.5" ></text>
</g>
<g >
<title>__x64_sys_select (4 samples, 0.01%)</title><rect x="1094.9" y="1237" width="0.1" height="15.0" fill="rgb(235,6,42)" rx="2" ry="2" />
<text x="1097.88" y="1247.5" ></text>
</g>
<g >
<title>__libc_fork (20 samples, 0.07%)</title><rect x="1184.0" y="1285" width="0.8" height="15.0" fill="rgb(222,200,16)" rx="2" ry="2" />
<text x="1187.01" y="1295.5" ></text>
</g>
<g >
<title>update_nohz_stats (22 samples, 0.07%)</title><rect x="1074.0" y="1173" width="0.8" height="15.0" fill="rgb(221,24,18)" rx="2" ry="2" />
<text x="1076.95" y="1183.5" ></text>
</g>
<g >
<title>large_palloc (4 samples, 0.01%)</title><rect x="985.5" y="981" width="0.2" height="15.0" fill="rgb(241,83,45)" rx="2" ry="2" />
<text x="988.54" y="991.5" ></text>
</g>
<g >
<title>__d_lookup (3 samples, 0.01%)</title><rect x="1069.6" y="1173" width="0.2" height="15.0" fill="rgb(245,217,3)" rx="2" ry="2" />
<text x="1072.64" y="1183.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.01%)</title><rect x="96.5" y="1301" width="0.2" height="15.0" fill="rgb(222,181,15)" rx="2" ry="2" />
<text x="99.54" y="1311.5" ></text>
</g>
<g >
<title>proc_readdir_de (3 samples, 0.01%)</title><rect x="1068.1" y="1189" width="0.1" height="15.0" fill="rgb(239,190,14)" rx="2" ry="2" />
<text x="1071.12" y="1199.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="1010.7" y="1013" width="0.2" height="15.0" fill="rgb(205,10,15)" rx="2" ry="2" />
<text x="1013.74" y="1023.5" ></text>
</g>
<g >
<title>__vfs_write (11 samples, 0.04%)</title><rect x="1057.8" y="1109" width="0.4" height="15.0" fill="rgb(209,222,45)" rx="2" ry="2" />
<text x="1060.78" y="1119.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="197" width="0.9" height="15.0" fill="rgb(243,94,43)" rx="2" ry="2" />
<text x="213.79" y="207.5" ></text>
</g>
<g >
<title>dbs_update_util_handler (8 samples, 0.03%)</title><rect x="1112.0" y="1125" width="0.3" height="15.0" fill="rgb(251,192,26)" rx="2" ry="2" />
<text x="1114.97" y="1135.5" ></text>
</g>
<g >
<title>DB::MergeSortingBlockInputStream::~MergeSortingBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="1109" width="1.0" height="15.0" fill="rgb(215,62,15)" rx="2" ry="2" />
<text x="1045.05" y="1119.5" ></text>
</g>
<g >
<title>__vfs_read (5 samples, 0.02%)</title><rect x="1031.1" y="901" width="0.2" height="15.0" fill="rgb(222,173,22)" rx="2" ry="2" />
<text x="1034.06" y="911.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="97.8" y="1029" width="0.3" height="15.0" fill="rgb(226,44,24)" rx="2" ry="2" />
<text x="100.81" y="1039.5" ></text>
</g>
<g >
<title>kworker/50:1-ev (55 samples, 0.19%)</title><rect x="1077.9" y="1317" width="2.2" height="15.0" fill="rgb(219,75,39)" rx="2" ry="2" />
<text x="1080.87" y="1327.5" ></text>
</g>
<g >
<title>find_lock_entry (3 samples, 0.01%)</title><rect x="1025.4" y="725" width="0.1" height="15.0" fill="rgb(252,174,27)" rx="2" ry="2" />
<text x="1028.35" y="735.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9 samples, 0.03%)</title><rect x="75.7" y="821" width="0.3" height="15.0" fill="rgb(220,159,53)" rx="2" ry="2" />
<text x="78.65" y="831.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (3 samples, 0.01%)</title><rect x="92.0" y="1045" width="0.1" height="15.0" fill="rgb(247,27,12)" rx="2" ry="2" />
<text x="94.98" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1084.2" y="1269" width="0.2" height="15.0" fill="rgb(243,179,53)" rx="2" ry="2" />
<text x="1087.22" y="1279.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (3 samples, 0.01%)</title><rect x="1061.5" y="1077" width="0.2" height="15.0" fill="rgb(224,87,47)" rx="2" ry="2" />
<text x="1064.53" y="1087.5" ></text>
</g>
<g >
<title>mainEntryClickHouseClient (72 samples, 0.24%)</title><rect x="1056.0" y="1269" width="2.9" height="15.0" fill="rgb(227,37,0)" rx="2" ry="2" />
<text x="1059.02" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1083.9" y="1269" width="0.2" height="15.0" fill="rgb(209,68,49)" rx="2" ry="2" />
<text x="1086.86" y="1279.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (13 samples, 0.04%)</title><rect x="992.6" y="1061" width="0.6" height="15.0" fill="rgb(226,83,6)" rx="2" ry="2" />
<text x="995.65" y="1071.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (23 samples, 0.08%)</title><rect x="93.0" y="949" width="0.9" height="15.0" fill="rgb(240,85,45)" rx="2" ry="2" />
<text x="95.98" y="959.5" ></text>
</g>
<g >
<title>DB::ColumnConst::cloneResized (4 samples, 0.01%)</title><rect x="183.9" y="1157" width="0.1" height="15.0" fill="rgb(227,30,42)" rx="2" ry="2" />
<text x="186.87" y="1167.5" ></text>
</g>
<g >
<title>acpi_idle_do_entry (972 samples, 3.29%)</title><rect x="1114.4" y="1205" width="38.8" height="15.0" fill="rgb(239,125,54)" rx="2" ry="2" />
<text x="1117.37" y="1215.5" >acp..</text>
</g>
<g >
<title>vfs_read (14 samples, 0.05%)</title><rect x="1022.5" y="901" width="0.6" height="15.0" fill="rgb(232,15,47)" rx="2" ry="2" />
<text x="1025.52" y="911.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromFile::ReadBufferFromFile (5 samples, 0.02%)</title><rect x="1037.9" y="981" width="0.2" height="15.0" fill="rgb(245,140,43)" rx="2" ry="2" />
<text x="1040.85" y="991.5" ></text>
</g>
<g >
<title>zap_page_range (4 samples, 0.01%)</title><rect x="182.6" y="933" width="0.1" height="15.0" fill="rgb(211,31,45)" rx="2" ry="2" />
<text x="185.55" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="204.6" y="981" width="0.1" height="15.0" fill="rgb(211,180,20)" rx="2" ry="2" />
<text x="207.60" y="991.5" ></text>
</g>
<g >
<title>[dash] (43 samples, 0.15%)</title><rect x="1050.1" y="1285" width="1.7" height="15.0" fill="rgb(225,87,22)" rx="2" ry="2" />
<text x="1053.11" y="1295.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1184.8" y="1253" width="0.2" height="15.0" fill="rgb(207,184,36)" rx="2" ry="2" />
<text x="1187.81" y="1263.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (32 samples, 0.11%)</title><rect x="1186.7" y="1301" width="1.3" height="15.0" fill="rgb(211,175,16)" rx="2" ry="2" />
<text x="1189.69" y="1311.5" ></text>
</g>
<g >
<title>ksys_read (43 samples, 0.15%)</title><rect x="1023.8" y="869" width="1.7" height="15.0" fill="rgb(228,111,18)" rx="2" ry="2" />
<text x="1026.80" y="879.5" ></text>
</g>
<g >
<title>unmap_page_range (19 samples, 0.06%)</title><rect x="1185.6" y="1109" width="0.8" height="15.0" fill="rgb(252,78,19)" rx="2" ry="2" />
<text x="1188.65" y="1119.5" ></text>
</g>
<g >
<title>dentry_kill (5 samples, 0.02%)</title><rect x="1060.2" y="1141" width="0.2" height="15.0" fill="rgb(244,59,19)" rx="2" ry="2" />
<text x="1063.18" y="1151.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (993 samples, 3.36%)</title><rect x="31.0" y="949" width="39.7" height="15.0" fill="rgb(206,165,36)" rx="2" ry="2" />
<text x="34.05" y="959.5" >DB:..</text>
</g>
<g >
<title>update_blocked_averages (3 samples, 0.01%)</title><rect x="1091.6" y="1189" width="0.2" height="15.0" fill="rgb(234,22,46)" rx="2" ry="2" />
<text x="1094.64" y="1199.5" ></text>
</g>
<g >
<title>try_to_wake_up (11 samples, 0.04%)</title><rect x="1113.2" y="1109" width="0.4" height="15.0" fill="rgb(228,204,52)" rx="2" ry="2" />
<text x="1116.17" y="1119.5" ></text>
</g>
<g >
<title>alloc_pages_vma (5 samples, 0.02%)</title><rect x="75.7" y="805" width="0.2" height="15.0" fill="rgb(242,182,19)" rx="2" ry="2" />
<text x="78.69" y="815.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::executeWithoutLowCardinalityColumns (13 samples, 0.04%)</title><rect x="213.3" y="1093" width="0.5" height="15.0" fill="rgb(209,47,0)" rx="2" ry="2" />
<text x="216.26" y="1103.5" ></text>
</g>
<g >
<title>seq_puts (3 samples, 0.01%)</title><rect x="1071.8" y="1157" width="0.1" height="15.0" fill="rgb(207,133,51)" rx="2" ry="2" />
<text x="1074.76" y="1167.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (43 samples, 0.15%)</title><rect x="1014.3" y="981" width="1.7" height="15.0" fill="rgb(251,39,12)" rx="2" ry="2" />
<text x="1017.33" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (19 samples, 0.06%)</title><rect x="1061.1" y="1221" width="0.8" height="15.0" fill="rgb(214,210,36)" rx="2" ry="2" />
<text x="1064.09" y="1231.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (3 samples, 0.01%)</title><rect x="1084.5" y="1253" width="0.1" height="15.0" fill="rgb(244,87,41)" rx="2" ry="2" />
<text x="1087.46" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="181.3" y="1189" width="0.1" height="15.0" fill="rgb(237,137,25)" rx="2" ry="2" />
<text x="184.28" y="1199.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1067.4" y="1253" width="0.2" height="15.0" fill="rgb(226,147,19)" rx="2" ry="2" />
<text x="1070.40" y="1263.5" ></text>
</g>
<g >
<title>update_blocked_averages (15 samples, 0.05%)</title><rect x="1065.6" y="1045" width="0.6" height="15.0" fill="rgb(236,166,42)" rx="2" ry="2" />
<text x="1068.65" y="1055.5" ></text>
</g>
<g >
<title>free_unref_page_list (7 samples, 0.02%)</title><rect x="1042.7" y="677" width="0.3" height="15.0" fill="rgb(242,205,0)" rx="2" ry="2" />
<text x="1045.68" y="687.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::readImpl (5 samples, 0.02%)</title><rect x="10.0" y="1189" width="0.2" height="15.0" fill="rgb(206,65,43)" rx="2" ry="2" />
<text x="13.00" y="1199.5" ></text>
</g>
<g >
<title>DB::StorageMergeTree::backgroundTask (6 samples, 0.02%)</title><rect x="95.2" y="1237" width="0.2" height="15.0" fill="rgb(223,227,10)" rx="2" ry="2" />
<text x="98.18" y="1247.5" ></text>
</g>
<g >
<title>x86_pmu_enable_all (4 samples, 0.01%)</title><rect x="1085.3" y="949" width="0.1" height="15.0" fill="rgb(220,25,2)" rx="2" ry="2" />
<text x="1088.25" y="959.5" ></text>
</g>
<g >
<title>[unknown] (72 samples, 0.24%)</title><rect x="1056.0" y="1301" width="2.9" height="15.0" fill="rgb(251,57,28)" rx="2" ry="2" />
<text x="1059.02" y="1311.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="1037.9" y="885" width="0.1" height="15.0" fill="rgb(241,212,47)" rx="2" ry="2" />
<text x="1040.85" y="895.5" ></text>
</g>
<g >
<title>[unknown] (110 samples, 0.37%)</title><rect x="1178.4" y="1301" width="4.4" height="15.0" fill="rgb(223,166,46)" rx="2" ry="2" />
<text x="1181.38" y="1311.5" ></text>
</g>
<g >
<title>LZ4::decompress (62 samples, 0.21%)</title><rect x="1027.8" y="965" width="2.5" height="15.0" fill="rgb(224,179,22)" rx="2" ry="2" />
<text x="1030.83" y="975.5" ></text>
</g>
<g >
<title>amd_pmu_disable_all (10 samples, 0.03%)</title><rect x="1100.6" y="1093" width="0.4" height="15.0" fill="rgb(222,85,6)" rx="2" ry="2" />
<text x="1103.63" y="1103.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5 samples, 0.02%)</title><rect x="156.8" y="1141" width="0.2" height="15.0" fill="rgb(214,209,7)" rx="2" ry="2" />
<text x="159.80" y="1151.5" ></text>
</g>
<g >
<title>dequeue_entity (3 samples, 0.01%)</title><rect x="1080.9" y="1205" width="0.1" height="15.0" fill="rgb(235,64,13)" rx="2" ry="2" />
<text x="1083.86" y="1215.5" ></text>
</g>
<g >
<title>finish_task_switch (4 samples, 0.01%)</title><rect x="1172.7" y="1205" width="0.2" height="15.0" fill="rgb(230,108,51)" rx="2" ry="2" />
<text x="1175.71" y="1215.5" ></text>
</g>
<g >
<title>free_unref_page_list (3 samples, 0.01%)</title><rect x="182.8" y="869" width="0.2" height="15.0" fill="rgb(227,118,17)" rx="2" ry="2" />
<text x="185.83" y="879.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8 samples, 0.03%)</title><rect x="207.3" y="1045" width="0.3" height="15.0" fill="rgb(249,165,15)" rx="2" ry="2" />
<text x="210.31" y="1055.5" ></text>
</g>
<g >
<title>do_futex (4 samples, 0.01%)</title><rect x="1039.5" y="981" width="0.1" height="15.0" fill="rgb(245,120,53)" rx="2" ry="2" />
<text x="1042.49" y="991.5" ></text>
</g>
<g >
<title>source_load (3 samples, 0.01%)</title><rect x="1079.0" y="1173" width="0.1" height="15.0" fill="rgb(214,214,13)" rx="2" ry="2" />
<text x="1082.02" y="1183.5" ></text>
</g>
<g >
<title>process_one_work (3 samples, 0.01%)</title><rect x="1072.3" y="1253" width="0.1" height="15.0" fill="rgb(225,158,7)" rx="2" ry="2" />
<text x="1075.28" y="1263.5" ></text>
</g>
<g >
<title>perf_4.19 (5 samples, 0.02%)</title><rect x="1085.2" y="1317" width="0.2" height="15.0" fill="rgb(220,15,20)" rx="2" ry="2" />
<text x="1088.21" y="1327.5" ></text>
</g>
<g >
<title>ret_from_fork (11 samples, 0.04%)</title><rect x="1072.2" y="1301" width="0.5" height="15.0" fill="rgb(223,207,24)" rx="2" ry="2" />
<text x="1075.24" y="1311.5" ></text>
</g>
<g >
<title>copy_user_generic_string (3 samples, 0.01%)</title><rect x="1055.1" y="1157" width="0.1" height="15.0" fill="rgb(210,54,37)" rx="2" ry="2" />
<text x="1058.06" y="1167.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (7 samples, 0.02%)</title><rect x="91.7" y="933" width="0.2" height="15.0" fill="rgb(223,138,50)" rx="2" ry="2" />
<text x="94.66" y="943.5" ></text>
</g>
<g >
<title>do_filp_open (6 samples, 0.02%)</title><rect x="1069.9" y="1221" width="0.3" height="15.0" fill="rgb(218,224,0)" rx="2" ry="2" />
<text x="1072.92" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="95.2" y="1301" width="0.3" height="15.0" fill="rgb(248,183,52)" rx="2" ry="2" />
<text x="98.18" y="1311.5" ></text>
</g>
<g >
<title>copy_process.part.5 (7 samples, 0.02%)</title><rect x="1051.4" y="1205" width="0.3" height="15.0" fill="rgb(251,139,31)" rx="2" ry="2" />
<text x="1054.43" y="1215.5" ></text>
</g>
<g >
<title>find_busiest_group (10 samples, 0.03%)</title><rect x="1082.4" y="1189" width="0.4" height="15.0" fill="rgb(229,73,48)" rx="2" ry="2" />
<text x="1085.42" y="1199.5" ></text>
</g>
<g >
<title>__GI___libc_open (3 samples, 0.01%)</title><rect x="1038.4" y="997" width="0.1" height="15.0" fill="rgb(235,158,9)" rx="2" ry="2" />
<text x="1041.41" y="1007.5" ></text>
</g>
<g >
<title>DB::ParserTupleElementExpression::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="229" width="0.9" height="15.0" fill="rgb(217,165,47)" rx="2" ry="2" />
<text x="213.79" y="239.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (18 samples, 0.06%)</title><rect x="1188.3" y="1269" width="0.7" height="15.0" fill="rgb(232,175,33)" rx="2" ry="2" />
<text x="1191.32" y="1279.5" ></text>
</g>
<g >
<title>inet6_csk_xmit (23 samples, 0.08%)</title><rect x="1046.3" y="1125" width="0.9" height="15.0" fill="rgb(251,184,49)" rx="2" ry="2" />
<text x="1049.28" y="1135.5" ></text>
</g>
<g >
<title>__d_alloc (3 samples, 0.01%)</title><rect x="1043.7" y="1029" width="0.1" height="15.0" fill="rgb(233,88,6)" rx="2" ry="2" />
<text x="1046.72" y="1039.5" ></text>
</g>
<g >
<title>scheduler_tick (20 samples, 0.07%)</title><rect x="987.4" y="981" width="0.8" height="15.0" fill="rgb(225,206,49)" rx="2" ry="2" />
<text x="990.38" y="991.5" ></text>
</g>
<g >
<title>tty_write (11 samples, 0.04%)</title><rect x="1057.8" y="1093" width="0.4" height="15.0" fill="rgb(226,99,50)" rx="2" ry="2" />
<text x="1060.78" y="1103.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (3 samples, 0.01%)</title><rect x="1016.6" y="885" width="0.1" height="15.0" fill="rgb(230,100,23)" rx="2" ry="2" />
<text x="1019.61" y="895.5" ></text>
</g>
<g >
<title>memcpy (6 samples, 0.02%)</title><rect x="94.8" y="1077" width="0.2" height="15.0" fill="rgb(231,134,51)" rx="2" ry="2" />
<text x="97.78" y="1087.5" ></text>
</g>
<g >
<title>[clickhouse] (175 samples, 0.59%)</title><rect x="1059.8" y="1301" width="7.0" height="15.0" fill="rgb(241,148,53)" rx="2" ry="2" />
<text x="1062.82" y="1311.5" ></text>
</g>
<g >
<title>tcp_v6_do_rcv (7 samples, 0.02%)</title><rect x="1059.5" y="933" width="0.2" height="15.0" fill="rgb(223,75,26)" rx="2" ry="2" />
<text x="1062.46" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (80 samples, 0.27%)</title><rect x="1005.5" y="949" width="3.2" height="15.0" fill="rgb(224,186,10)" rx="2" ry="2" />
<text x="1008.51" y="959.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (23 samples, 0.08%)</title><rect x="210.8" y="117" width="0.9" height="15.0" fill="rgb(208,96,13)" rx="2" ry="2" />
<text x="213.79" y="127.5" ></text>
</g>
<g >
<title>do_group_exit (5 samples, 0.02%)</title><rect x="1176.1" y="1253" width="0.2" height="15.0" fill="rgb(206,109,54)" rx="2" ry="2" />
<text x="1179.10" y="1263.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="96.2" y="1157" width="0.1" height="15.0" fill="rgb(244,119,25)" rx="2" ry="2" />
<text x="99.22" y="1167.5" ></text>
</g>
<g >
<title>netif_receive_skb_internal (13 samples, 0.04%)</title><rect x="1167.2" y="1093" width="0.5" height="15.0" fill="rgb(251,201,33)" rx="2" ry="2" />
<text x="1170.20" y="1103.5" ></text>
</g>
<g >
<title>free (5 samples, 0.02%)</title><rect x="181.5" y="1173" width="0.2" height="15.0" fill="rgb(223,119,8)" rx="2" ry="2" />
<text x="184.48" y="1183.5" ></text>
</g>
<g >
<title>do_iter_read (32 samples, 0.11%)</title><rect x="1014.8" y="821" width="1.2" height="15.0" fill="rgb(215,134,13)" rx="2" ry="2" />
<text x="1017.77" y="831.5" ></text>
</g>
<g >
<title>unmap_vmas (5 samples, 0.02%)</title><rect x="1042.2" y="741" width="0.2" height="15.0" fill="rgb(235,24,23)" rx="2" ry="2" />
<text x="1045.21" y="751.5" ></text>
</g>
<g >
<title>ptep_clear_flush (8 samples, 0.03%)</title><rect x="28.3" y="805" width="0.3" height="15.0" fill="rgb(240,43,18)" rx="2" ry="2" />
<text x="31.29" y="815.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::readRows (984 samples, 3.33%)</title><rect x="997.8" y="1061" width="39.3" height="15.0" fill="rgb(232,63,32)" rx="2" ry="2" />
<text x="1000.84" y="1071.5" >DB:..</text>
</g>
<g >
<title>ttwu_do_activate.isra.7 (14 samples, 0.05%)</title><rect x="1098.8" y="1125" width="0.6" height="15.0" fill="rgb(208,129,38)" rx="2" ry="2" />
<text x="1101.83" y="1135.5" ></text>
</g>
<g >
<title>anon_inode_getfile (6 samples, 0.02%)</title><rect x="1043.7" y="1061" width="0.3" height="15.0" fill="rgb(214,217,34)" rx="2" ry="2" />
<text x="1046.72" y="1071.5" ></text>
</g>
<g >
<title>menu_select (77 samples, 0.26%)</title><rect x="1168.5" y="1237" width="3.1" height="15.0" fill="rgb(218,180,37)" rx="2" ry="2" />
<text x="1171.48" y="1247.5" ></text>
</g>
<g >
<title>unmap_page_range (5 samples, 0.02%)</title><rect x="1042.2" y="725" width="0.2" height="15.0" fill="rgb(205,183,35)" rx="2" ry="2" />
<text x="1045.21" y="735.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3 samples, 0.01%)</title><rect x="1089.7" y="1205" width="0.1" height="15.0" fill="rgb(217,116,50)" rx="2" ry="2" />
<text x="1092.73" y="1215.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (5 samples, 0.02%)</title><rect x="205.2" y="1013" width="0.2" height="15.0" fill="rgb(234,98,3)" rx="2" ry="2" />
<text x="208.20" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="204.4" y="917" width="0.2" height="15.0" fill="rgb(227,207,40)" rx="2" ry="2" />
<text x="207.36" y="927.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; (2,043 samples, 6.91%)</title><rect x="99.5" y="1205" width="81.6" height="15.0" fill="rgb(251,54,45)" rx="2" ry="2" />
<text x="102.49" y="1215.5" >DB::Aggre..</text>
</g>
<g >
<title>[ld-2.24.so] (5 samples, 0.02%)</title><rect x="1049.3" y="1301" width="0.2" height="15.0" fill="rgb(216,84,34)" rx="2" ry="2" />
<text x="1052.31" y="1311.5" ></text>
</g>
<g >
<title>__lru_cache_add (4 samples, 0.01%)</title><rect x="23.9" y="789" width="0.2" height="15.0" fill="rgb(225,194,19)" rx="2" ry="2" />
<text x="26.94" y="799.5" ></text>
</g>
<g >
<title>__madvise (4 samples, 0.01%)</title><rect x="230.5" y="1029" width="0.2" height="15.0" fill="rgb(229,13,1)" rx="2" ry="2" />
<text x="233.51" y="1039.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (26 samples, 0.09%)</title><rect x="210.7" y="565" width="1.1" height="15.0" fill="rgb(209,133,50)" rx="2" ry="2" />
<text x="213.75" y="575.5" ></text>
</g>
<g >
<title>unmap_vmas (4 samples, 0.01%)</title><rect x="10.2" y="821" width="0.2" height="15.0" fill="rgb(209,67,34)" rx="2" ry="2" />
<text x="13.24" y="831.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (3 samples, 0.01%)</title><rect x="74.8" y="853" width="0.1" height="15.0" fill="rgb(229,191,25)" rx="2" ry="2" />
<text x="77.77" y="863.5" ></text>
</g>
<g >
<title>memcpy (37 samples, 0.13%)</title><rect x="205.4" y="1029" width="1.5" height="15.0" fill="rgb(239,20,32)" rx="2" ry="2" />
<text x="208.44" y="1039.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (8 samples, 0.03%)</title><rect x="979.2" y="1045" width="0.3" height="15.0" fill="rgb(233,140,32)" rx="2" ry="2" />
<text x="982.15" y="1055.5" ></text>
</g>
<g >
<title>copy_page_range (4 samples, 0.01%)</title><rect x="1051.5" y="1189" width="0.1" height="15.0" fill="rgb(244,99,0)" rx="2" ry="2" />
<text x="1054.47" y="1199.5" ></text>
</g>
<g >
<title>pick_next_task_fair (15 samples, 0.05%)</title><rect x="1075.7" y="1221" width="0.6" height="15.0" fill="rgb(251,116,16)" rx="2" ry="2" />
<text x="1078.75" y="1231.5" ></text>
</g>
<g >
<title>__fput (8 samples, 0.03%)</title><rect x="1056.8" y="1109" width="0.3" height="15.0" fill="rgb(253,156,37)" rx="2" ry="2" />
<text x="1059.82" y="1119.5" ></text>
</g>
<g >
<title>__do_page_fault (10 samples, 0.03%)</title><rect x="12.0" y="917" width="0.4" height="15.0" fill="rgb(245,64,3)" rx="2" ry="2" />
<text x="15.04" y="927.5" ></text>
</g>
<g >
<title>execve (3 samples, 0.01%)</title><rect x="1093.6" y="1301" width="0.1" height="15.0" fill="rgb(230,150,1)" rx="2" ry="2" />
<text x="1096.56" y="1311.5" ></text>
</g>
<g >
<title>vfs_read (5 samples, 0.02%)</title><rect x="1031.1" y="917" width="0.2" height="15.0" fill="rgb(228,57,53)" rx="2" ry="2" />
<text x="1034.06" y="927.5" ></text>
</g>
<g >
<title>worker_thread (8 samples, 0.03%)</title><rect x="1080.1" y="1269" width="0.4" height="15.0" fill="rgb(232,202,39)" rx="2" ry="2" />
<text x="1083.14" y="1279.5" ></text>
</g>
<g >
<title>do_sys_open (6 samples, 0.02%)</title><rect x="1053.3" y="1237" width="0.3" height="15.0" fill="rgb(222,11,36)" rx="2" ry="2" />
<text x="1056.35" y="1247.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::index (114 samples, 0.39%)</title><rect x="225.0" y="1109" width="4.6" height="15.0" fill="rgb(217,76,3)" rx="2" ry="2" />
<text x="228.04" y="1119.5" ></text>
</g>
<g >
<title>DB::IDataType::deserializeBinaryBulkWithMultipleStreams (56 samples, 0.19%)</title><rect x="1023.4" y="1013" width="2.2" height="15.0" fill="rgb(234,32,7)" rx="2" ry="2" />
<text x="1026.36" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1039.5" y="1013" width="0.1" height="15.0" fill="rgb(233,140,42)" rx="2" ry="2" />
<text x="1042.49" y="1023.5" ></text>
</g>
<g >
<title>proc_fill_cache (5 samples, 0.02%)</title><rect x="1068.3" y="1189" width="0.2" height="15.0" fill="rgb(253,186,49)" rx="2" ry="2" />
<text x="1071.32" y="1199.5" ></text>
</g>
<g >
<title>clickhouse-clie (96 samples, 0.32%)</title><rect x="1056.0" y="1317" width="3.8" height="15.0" fill="rgb(218,158,31)" rx="2" ry="2" />
<text x="1058.98" y="1327.5" ></text>
</g>
<g >
<title>DB::MergeSortingBlockInputStream::readImpl (5 samples, 0.02%)</title><rect x="10.0" y="1157" width="0.2" height="15.0" fill="rgb(228,172,4)" rx="2" ry="2" />
<text x="13.00" y="1167.5" ></text>
</g>
<g >
<title>__se_sys_madvise (5 samples, 0.02%)</title><rect x="201.4" y="885" width="0.2" height="15.0" fill="rgb(243,92,11)" rx="2" ry="2" />
<text x="204.40" y="895.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3 samples, 0.01%)</title><rect x="1067.4" y="1093" width="0.2" height="15.0" fill="rgb(221,195,7)" rx="2" ry="2" />
<text x="1070.44" y="1103.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertRangeFrom (13 samples, 0.04%)</title><rect x="1011.1" y="981" width="0.6" height="15.0" fill="rgb(238,59,3)" rx="2" ry="2" />
<text x="1014.14" y="991.5" ></text>
</g>
<g >
<title>__d_alloc (3 samples, 0.01%)</title><rect x="1057.2" y="1077" width="0.1" height="15.0" fill="rgb(219,187,54)" rx="2" ry="2" />
<text x="1060.18" y="1087.5" ></text>
</g>
<g >
<title>do_iter_read (14 samples, 0.05%)</title><rect x="1022.5" y="853" width="0.6" height="15.0" fill="rgb(230,85,51)" rx="2" ry="2" />
<text x="1025.52" y="863.5" ></text>
</g>
<g >
<title>__alloc_fd (3 samples, 0.01%)</title><rect x="1043.6" y="1061" width="0.1" height="15.0" fill="rgb(239,201,10)" rx="2" ry="2" />
<text x="1046.60" y="1071.5" ></text>
</g>
<g >
<title>DB::ColumnString::~ColumnString (3 samples, 0.01%)</title><rect x="1011.7" y="981" width="0.2" height="15.0" fill="rgb(231,90,4)" rx="2" ry="2" />
<text x="1014.74" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.06%)</title><rect x="1067.8" y="1253" width="0.7" height="15.0" fill="rgb(249,187,37)" rx="2" ry="2" />
<text x="1070.84" y="1263.5" ></text>
</g>
<g >
<title>irq_work_run_list (44 samples, 0.15%)</title><rect x="1107.1" y="1077" width="1.8" height="15.0" fill="rgb(238,70,26)" rx="2" ry="2" />
<text x="1110.14" y="1087.5" ></text>
</g>
<g >
<title>__dentry_kill (5 samples, 0.02%)</title><rect x="1060.2" y="1125" width="0.2" height="15.0" fill="rgb(216,146,53)" rx="2" ry="2" />
<text x="1063.18" y="1135.5" ></text>
</g>
<g >
<title>pick_next_task_fair (12 samples, 0.04%)</title><rect x="1089.1" y="1221" width="0.5" height="15.0" fill="rgb(235,59,8)" rx="2" ry="2" />
<text x="1092.13" y="1231.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (3 samples, 0.01%)</title><rect x="181.7" y="1221" width="0.1" height="15.0" fill="rgb(246,207,30)" rx="2" ry="2" />
<text x="184.67" y="1231.5" ></text>
</g>
<g >
<title>perf_event_for_each_child (5 samples, 0.02%)</title><rect x="1085.2" y="1061" width="0.2" height="15.0" fill="rgb(242,95,17)" rx="2" ry="2" />
<text x="1088.21" y="1071.5" ></text>
</g>
<g >
<title>show_stat (10 samples, 0.03%)</title><rect x="1070.5" y="1173" width="0.4" height="15.0" fill="rgb(243,226,1)" rx="2" ry="2" />
<text x="1073.52" y="1183.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3 samples, 0.01%)</title><rect x="1001.7" y="773" width="0.1" height="15.0" fill="rgb(218,122,48)" rx="2" ry="2" />
<text x="1004.67" y="783.5" ></text>
</g>
<g >
<title>acpi_idle_enter (5 samples, 0.02%)</title><rect x="1096.2" y="1221" width="0.2" height="15.0" fill="rgb(236,213,10)" rx="2" ry="2" />
<text x="1099.20" y="1231.5" ></text>
</g>
<g >
<title>tcp_rcv_established (7 samples, 0.02%)</title><rect x="1059.5" y="917" width="0.2" height="15.0" fill="rgb(229,196,27)" rx="2" ry="2" />
<text x="1062.46" y="927.5" ></text>
</g>
<g >
<title>do_futex (5 samples, 0.02%)</title><rect x="1039.6" y="981" width="0.2" height="15.0" fill="rgb(217,191,22)" rx="2" ry="2" />
<text x="1042.65" y="991.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (1,677 samples, 5.68%)</title><rect x="12.8" y="997" width="67.0" height="15.0" fill="rgb(221,37,38)" rx="2" ry="2" />
<text x="15.84" y="1007.5" >DB::IBl..</text>
</g>
<g >
<title>free (5 samples, 0.02%)</title><rect x="230.5" y="1125" width="0.2" height="15.0" fill="rgb(245,218,25)" rx="2" ry="2" />
<text x="233.51" y="1135.5" ></text>
</g>
<g >
<title>rmap_walk_anon (3 samples, 0.01%)</title><rect x="1010.6" y="885" width="0.1" height="15.0" fill="rgb(217,73,33)" rx="2" ry="2" />
<text x="1013.58" y="895.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="230.0" y="981" width="0.1" height="15.0" fill="rgb(228,114,39)" rx="2" ry="2" />
<text x="232.95" y="991.5" ></text>
</g>
<g >
<title>malloc_default (3 samples, 0.01%)</title><rect x="1036.6" y="933" width="0.1" height="15.0" fill="rgb(252,216,18)" rx="2" ry="2" />
<text x="1039.57" y="943.5" ></text>
</g>
<g >
<title>filename_lookup (3 samples, 0.01%)</title><rect x="1052.9" y="1205" width="0.1" height="15.0" fill="rgb(244,100,51)" rx="2" ry="2" />
<text x="1055.87" y="1215.5" ></text>
</g>
<g >
<title>schedule (14 samples, 0.05%)</title><rect x="1082.3" y="1253" width="0.6" height="15.0" fill="rgb(224,57,1)" rx="2" ry="2" />
<text x="1085.30" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="96.2" y="1093" width="0.1" height="15.0" fill="rgb(216,61,13)" rx="2" ry="2" />
<text x="99.22" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1094.9" y="1269" width="0.1" height="15.0" fill="rgb(207,91,45)" rx="2" ry="2" />
<text x="1097.88" y="1279.5" ></text>
</g>
<g >
<title>__libc_recv (23 samples, 0.08%)</title><rect x="1058.9" y="1301" width="0.9" height="15.0" fill="rgb(225,107,54)" rx="2" ry="2" />
<text x="1061.90" y="1311.5" ></text>
</g>
<g >
<title>memcpy (3 samples, 0.01%)</title><rect x="207.0" y="1045" width="0.1" height="15.0" fill="rgb(237,50,16)" rx="2" ry="2" />
<text x="209.99" y="1055.5" ></text>
</g>
<g >
<title>do_mmap (7 samples, 0.02%)</title><rect x="1092.4" y="1221" width="0.3" height="15.0" fill="rgb(238,184,52)" rx="2" ry="2" />
<text x="1095.40" y="1231.5" ></text>
</g>
<g >
<title>DB::DataTypeFactory::get (4 samples, 0.01%)</title><rect x="210.4" y="1045" width="0.2" height="15.0" fill="rgb(242,115,17)" rx="2" ry="2" />
<text x="213.43" y="1055.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (54 samples, 0.18%)</title><rect x="1178.4" y="1285" width="2.1" height="15.0" fill="rgb(248,13,34)" rx="2" ry="2" />
<text x="1181.38" y="1295.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (84 samples, 0.28%)</title><rect x="203.8" y="1077" width="3.3" height="15.0" fill="rgb(217,13,9)" rx="2" ry="2" />
<text x="206.76" y="1087.5" ></text>
</g>
<g >
<title>DB::IDataType::createColumnConst (3 samples, 0.01%)</title><rect x="213.1" y="1109" width="0.1" height="15.0" fill="rgb(243,131,9)" rx="2" ry="2" />
<text x="216.06" y="1119.5" ></text>
</g>
<g >
<title>tcp_v6_rcv (11 samples, 0.04%)</title><rect x="1046.7" y="901" width="0.5" height="15.0" fill="rgb(253,60,53)" rx="2" ry="2" />
<text x="1049.72" y="911.5" ></text>
</g>
<g >
<title>ret_from_intr (32 samples, 0.11%)</title><rect x="1166.5" y="1221" width="1.3" height="15.0" fill="rgb(218,54,54)" rx="2" ry="2" />
<text x="1169.52" y="1231.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.02%)</title><rect x="1085.2" y="1301" width="0.2" height="15.0" fill="rgb(239,57,48)" rx="2" ry="2" />
<text x="1088.21" y="1311.5" ></text>
</g>
<g >
<title>closedir (3 samples, 0.01%)</title><rect x="1069.0" y="1285" width="0.1" height="15.0" fill="rgb(210,76,16)" rx="2" ry="2" />
<text x="1071.96" y="1295.5" ></text>
</g>
<g >
<title>__GI___libc_read (43 samples, 0.15%)</title><rect x="1023.8" y="917" width="1.7" height="15.0" fill="rgb(248,107,52)" rx="2" ry="2" />
<text x="1026.80" y="927.5" ></text>
</g>
<g >
<title>[libm-2.24.so] (4 samples, 0.01%)</title><rect x="1001.8" y="965" width="0.2" height="15.0" fill="rgb(222,127,20)" rx="2" ry="2" />
<text x="1004.83" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1039.0" y="1029" width="0.2" height="15.0" fill="rgb(238,140,0)" rx="2" ry="2" />
<text x="1042.01" y="1039.5" ></text>
</g>
<g >
<title>copy_page_to_iter (29 samples, 0.10%)</title><rect x="1014.8" y="773" width="1.2" height="15.0" fill="rgb(225,8,53)" rx="2" ry="2" />
<text x="1017.81" y="783.5" ></text>
</g>
<g >
<title>arena_decay (3 samples, 0.01%)</title><rect x="232.3" y="1045" width="0.1" height="15.0" fill="rgb(248,49,53)" rx="2" ry="2" />
<text x="235.27" y="1055.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.01%)</title><rect x="97.6" y="1141" width="0.2" height="15.0" fill="rgb(246,35,15)" rx="2" ry="2" />
<text x="100.61" y="1151.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (3 samples, 0.01%)</title><rect x="230.2" y="1109" width="0.1" height="15.0" fill="rgb(232,139,3)" rx="2" ry="2" />
<text x="233.15" y="1119.5" ></text>
</g>
<g >
<title>cpuidle_reflect (3 samples, 0.01%)</title><rect x="1168.0" y="1237" width="0.2" height="15.0" fill="rgb(231,77,33)" rx="2" ry="2" />
<text x="1171.04" y="1247.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionCount&gt;::addFree (37 samples, 0.13%)</title><rect x="160.6" y="1189" width="1.5" height="15.0" fill="rgb(235,4,44)" rx="2" ry="2" />
<text x="163.59" y="1199.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="985.8" y="869" width="0.1" height="15.0" fill="rgb(223,198,1)" rx="2" ry="2" />
<text x="988.82" y="879.5" ></text>
</g>
<g >
<title>__irqentry_text_start (70 samples, 0.24%)</title><rect x="986.6" y="1077" width="2.8" height="15.0" fill="rgb(237,209,44)" rx="2" ry="2" />
<text x="989.58" y="1087.5" ></text>
</g>
<g >
<title>__vsnprintf_chk (4 samples, 0.01%)</title><rect x="1182.8" y="1301" width="0.2" height="15.0" fill="rgb(251,18,2)" rx="2" ry="2" />
<text x="1185.81" y="1311.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1027.5" y="1013" width="0.1" height="15.0" fill="rgb(250,21,22)" rx="2" ry="2" />
<text x="1030.51" y="1023.5" ></text>
</g>
<g >
<title>do_mprotect_pkey.constprop.1 (4 samples, 0.01%)</title><rect x="1187.3" y="1221" width="0.2" height="15.0" fill="rgb(237,90,45)" rx="2" ry="2" />
<text x="1190.32" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="1037.9" y="949" width="0.2" height="15.0" fill="rgb(206,169,37)" rx="2" ry="2" />
<text x="1040.85" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="182.8" y="981" width="0.3" height="15.0" fill="rgb(246,215,31)" rx="2" ry="2" />
<text x="185.79" y="991.5" ></text>
</g>
<g >
<title>irq_work_queue (3 samples, 0.01%)</title><rect x="1112.3" y="1125" width="0.1" height="15.0" fill="rgb(243,76,9)" rx="2" ry="2" />
<text x="1115.29" y="1135.5" ></text>
</g>
<g >
<title>schedule (21 samples, 0.07%)</title><rect x="1075.6" y="1253" width="0.8" height="15.0" fill="rgb(216,224,9)" rx="2" ry="2" />
<text x="1078.59" y="1263.5" ></text>
</g>
<g >
<title>MergingAggregtd (16 samples, 0.05%)</title><rect x="96.0" y="1317" width="0.7" height="15.0" fill="rgb(212,13,17)" rx="2" ry="2" />
<text x="99.02" y="1327.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge_delay (3 samples, 0.01%)</title><rect x="28.2" y="805" width="0.1" height="15.0" fill="rgb(218,196,42)" rx="2" ry="2" />
<text x="31.17" y="815.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1042.2" y="821" width="0.2" height="15.0" fill="rgb(208,27,34)" rx="2" ry="2" />
<text x="1045.21" y="831.5" ></text>
</g>
<g >
<title>update_blocked_averages (3 samples, 0.01%)</title><rect x="1089.5" y="1157" width="0.1" height="15.0" fill="rgb(226,165,6)" rx="2" ry="2" />
<text x="1092.49" y="1167.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (28 samples, 0.09%)</title><rect x="210.7" y="645" width="1.2" height="15.0" fill="rgb(220,36,14)" rx="2" ry="2" />
<text x="213.75" y="655.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (95 samples, 0.32%)</title><rect x="1032.7" y="917" width="3.8" height="15.0" fill="rgb(206,107,47)" rx="2" ry="2" />
<text x="1035.70" y="927.5" ></text>
</g>
<g >
<title>DB::Block::cloneWithoutColumns (5 samples, 0.02%)</title><rect x="184.2" y="1141" width="0.2" height="15.0" fill="rgb(219,105,40)" rx="2" ry="2" />
<text x="187.19" y="1151.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::serializeValueIntoArena (261 samples, 0.88%)</title><rect x="135.7" y="1173" width="10.4" height="15.0" fill="rgb(234,89,39)" rx="2" ry="2" />
<text x="138.67" y="1183.5" ></text>
</g>
<g >
<title>num_to_str (4 samples, 0.01%)</title><rect x="1071.6" y="1141" width="0.2" height="15.0" fill="rgb(208,46,21)" rx="2" ry="2" />
<text x="1074.60" y="1151.5" ></text>
</g>
<g >
<title>migrate_pages (3 samples, 0.01%)</title><rect x="1001.7" y="853" width="0.1" height="15.0" fill="rgb(219,216,38)" rx="2" ry="2" />
<text x="1004.67" y="863.5" ></text>
</g>
<g >
<title>__do_page_fault (55 samples, 0.19%)</title><rect x="89.8" y="1029" width="2.2" height="15.0" fill="rgb(206,175,17)" rx="2" ry="2" />
<text x="92.79" y="1039.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::~ExpressionAction (15 samples, 0.05%)</title><rect x="1042.4" y="917" width="0.6" height="15.0" fill="rgb(233,53,8)" rx="2" ry="2" />
<text x="1045.41" y="927.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (63 samples, 0.21%)</title><rect x="1027.8" y="981" width="2.5" height="15.0" fill="rgb(250,17,46)" rx="2" ry="2" />
<text x="1030.83" y="991.5" ></text>
</g>
<g >
<title>large_palloc (6 samples, 0.02%)</title><rect x="1016.6" y="949" width="0.2" height="15.0" fill="rgb(247,218,3)" rx="2" ry="2" />
<text x="1019.57" y="959.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (3 samples, 0.01%)</title><rect x="1043.7" y="997" width="0.1" height="15.0" fill="rgb(246,177,12)" rx="2" ry="2" />
<text x="1046.72" y="1007.5" ></text>
</g>
<g >
<title>DB::Block::insert (3 samples, 0.01%)</title><rect x="213.3" y="1061" width="0.2" height="15.0" fill="rgb(222,96,3)" rx="2" ry="2" />
<text x="216.34" y="1071.5" ></text>
</g>
<g >
<title>__sched_text_start (38 samples, 0.13%)</title><rect x="1073.4" y="1237" width="1.6" height="15.0" fill="rgb(243,17,3)" rx="2" ry="2" />
<text x="1076.43" y="1247.5" ></text>
</g>
<g >
<title>[unknown] (31 samples, 0.10%)</title><rect x="1180.5" y="1285" width="1.3" height="15.0" fill="rgb(217,191,3)" rx="2" ry="2" />
<text x="1183.54" y="1295.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::serializeValueIntoArena (52 samples, 0.18%)</title><rect x="157.1" y="1189" width="2.1" height="15.0" fill="rgb(213,127,27)" rx="2" ry="2" />
<text x="160.12" y="1199.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (3 samples, 0.01%)</title><rect x="25.1" y="885" width="0.1" height="15.0" fill="rgb(232,158,16)" rx="2" ry="2" />
<text x="28.09" y="895.5" ></text>
</g>
<g >
<title>realloc (76 samples, 0.26%)</title><rect x="204.1" y="1061" width="3.0" height="15.0" fill="rgb(247,47,37)" rx="2" ry="2" />
<text x="207.08" y="1071.5" ></text>
</g>
<g >
<title>__libc_start_main (5 samples, 0.02%)</title><rect x="1085.2" y="1285" width="0.2" height="15.0" fill="rgb(229,23,37)" rx="2" ry="2" />
<text x="1088.21" y="1295.5" ></text>
</g>
<g >
<title>__remove_hrtimer (3 samples, 0.01%)</title><rect x="1098.6" y="1157" width="0.1" height="15.0" fill="rgb(211,151,37)" rx="2" ry="2" />
<text x="1101.55" y="1167.5" ></text>
</g>
<g >
<title>collect_sigign_sigcatch (5 samples, 0.02%)</title><rect x="1071.0" y="1157" width="0.2" height="15.0" fill="rgb(248,28,28)" rx="2" ry="2" />
<text x="1074.04" y="1167.5" ></text>
</g>
<g >
<title>start_kernel (25 samples, 0.08%)</title><rect x="1096.2" y="1285" width="1.0" height="15.0" fill="rgb(237,118,49)" rx="2" ry="2" />
<text x="1099.20" y="1295.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="485" width="0.9" height="15.0" fill="rgb(246,112,38)" rx="2" ry="2" />
<text x="213.79" y="495.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (26 samples, 0.09%)</title><rect x="210.7" y="517" width="1.1" height="15.0" fill="rgb(221,211,33)" rx="2" ry="2" />
<text x="213.75" y="527.5" ></text>
</g>
<g >
<title>__madvise (5 samples, 0.02%)</title><rect x="201.4" y="933" width="0.2" height="15.0" fill="rgb(230,116,42)" rx="2" ry="2" />
<text x="204.40" y="943.5" ></text>
</g>
<g >
<title>DB::Lexer::nextToken (3 samples, 0.01%)</title><rect x="212.5" y="1013" width="0.1" height="15.0" fill="rgb(208,68,42)" rx="2" ry="2" />
<text x="215.50" y="1023.5" ></text>
</g>
<g >
<title>do_munmap (3 samples, 0.01%)</title><rect x="95.0" y="1013" width="0.1" height="15.0" fill="rgb(208,90,22)" rx="2" ry="2" />
<text x="98.02" y="1023.5" ></text>
</g>
<g >
<title>[unknown] (29 samples, 0.10%)</title><rect x="1040.8" y="1301" width="1.1" height="15.0" fill="rgb(239,110,10)" rx="2" ry="2" />
<text x="1043.77" y="1311.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (6 samples, 0.02%)</title><rect x="1043.7" y="1045" width="0.3" height="15.0" fill="rgb(254,124,45)" rx="2" ry="2" />
<text x="1046.72" y="1055.5" ></text>
</g>
<g >
<title>kthread (27 samples, 0.09%)</title><rect x="1075.4" y="1285" width="1.1" height="15.0" fill="rgb(210,194,24)" rx="2" ry="2" />
<text x="1078.39" y="1295.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (4 samples, 0.01%)</title><rect x="1068.8" y="1237" width="0.2" height="15.0" fill="rgb(231,17,4)" rx="2" ry="2" />
<text x="1071.80" y="1247.5" ></text>
</g>
<g >
<title>[clickhouse] (82 samples, 0.28%)</title><rect x="1002.2" y="981" width="3.3" height="15.0" fill="rgb(245,49,51)" rx="2" ry="2" />
<text x="1005.23" y="991.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (7 samples, 0.02%)</title><rect x="1092.4" y="1253" width="0.3" height="15.0" fill="rgb(221,46,38)" rx="2" ry="2" />
<text x="1095.40" y="1263.5" ></text>
</g>
<g >
<title>DB::wrapInNullable (3 samples, 0.01%)</title><rect x="213.5" y="1029" width="0.1" height="15.0" fill="rgb(240,156,27)" rx="2" ry="2" />
<text x="216.46" y="1039.5" ></text>
</g>
<g >
<title>munmap (3 samples, 0.01%)</title><rect x="1042.0" y="869" width="0.2" height="15.0" fill="rgb(225,86,9)" rx="2" ry="2" />
<text x="1045.05" y="879.5" ></text>
</g>
<g >
<title>find_get_entry (3 samples, 0.01%)</title><rect x="1025.4" y="709" width="0.1" height="15.0" fill="rgb(240,174,23)" rx="2" ry="2" />
<text x="1028.35" y="719.5" ></text>
</g>
<g >
<title>__kfree_skb (3 samples, 0.01%)</title><rect x="1059.5" y="885" width="0.2" height="15.0" fill="rgb(218,57,4)" rx="2" ry="2" />
<text x="1062.54" y="895.5" ></text>
</g>
<g >
<title>_perf_ioctl (5 samples, 0.02%)</title><rect x="1085.2" y="1077" width="0.2" height="15.0" fill="rgb(216,198,32)" rx="2" ry="2" />
<text x="1088.21" y="1087.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (93 samples, 0.31%)</title><rect x="1032.8" y="789" width="3.7" height="15.0" fill="rgb(213,195,37)" rx="2" ry="2" />
<text x="1035.78" y="799.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (166 samples, 0.56%)</title><rect x="1002.1" y="997" width="6.6" height="15.0" fill="rgb(234,225,10)" rx="2" ry="2" />
<text x="1005.11" y="1007.5" ></text>
</g>
<g >
<title>DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::thread (23,639 samples, 80.00%)</title><rect x="96.7" y="1253" width="943.9" height="15.0" fill="rgb(238,167,31)" rx="2" ry="2" />
<text x="99.66" y="1263.5" >DB::ParallelInputsProcessor&lt;DB::ParallelAggregatingBlockInputStream::Handler&gt;::thread</text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::GreaterOp, DB::NameGreater&gt;::executeImpl (4 samples, 0.01%)</title><rect x="10.4" y="949" width="0.2" height="15.0" fill="rgb(210,121,18)" rx="2" ry="2" />
<text x="13.40" y="959.5" ></text>
</g>
<g >
<title>mod_timer (5 samples, 0.02%)</title><rect x="1167.4" y="917" width="0.2" height="15.0" fill="rgb(227,187,24)" rx="2" ry="2" />
<text x="1170.40" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (107 samples, 0.36%)</title><rect x="1062.4" y="1237" width="4.3" height="15.0" fill="rgb(232,181,47)" rx="2" ry="2" />
<text x="1065.41" y="1247.5" ></text>
</g>
<g >
<title>DB::ParserCompoundIdentifier::parseImpl (3 samples, 0.01%)</title><rect x="211.3" y="37" width="0.2" height="15.0" fill="rgb(225,183,17)" rx="2" ry="2" />
<text x="214.35" y="47.5" ></text>
</g>
<g >
<title>error_entry (7 samples, 0.02%)</title><rect x="22.3" y="885" width="0.2" height="15.0" fill="rgb(205,1,1)" rx="2" ry="2" />
<text x="25.26" y="895.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="1092.4" y="1269" width="0.3" height="15.0" fill="rgb(233,58,4)" rx="2" ry="2" />
<text x="1095.40" y="1279.5" ></text>
</g>
<g >
<title>handle_mm_fault (53 samples, 0.18%)</title><rect x="89.8" y="1013" width="2.1" height="15.0" fill="rgb(216,106,45)" rx="2" ry="2" />
<text x="92.83" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (13 samples, 0.04%)</title><rect x="1011.1" y="965" width="0.6" height="15.0" fill="rgb(217,74,34)" rx="2" ry="2" />
<text x="1014.14" y="975.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="437" width="0.9" height="15.0" fill="rgb(245,199,4)" rx="2" ry="2" />
<text x="213.79" y="447.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned short&gt;::serializeValueIntoArena (63 samples, 0.21%)</title><rect x="147.5" y="1173" width="2.5" height="15.0" fill="rgb(220,21,20)" rx="2" ry="2" />
<text x="150.49" y="1183.5" ></text>
</g>
<g >
<title>irq_work_run (8 samples, 0.03%)</title><rect x="988.6" y="981" width="0.3" height="15.0" fill="rgb(222,165,20)" rx="2" ry="2" />
<text x="991.57" y="991.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (14 samples, 0.05%)</title><rect x="1022.5" y="821" width="0.6" height="15.0" fill="rgb(214,122,40)" rx="2" ry="2" />
<text x="1025.52" y="831.5" ></text>
</g>
<g >
<title>load_balance (10 samples, 0.03%)</title><rect x="1096.7" y="1141" width="0.4" height="15.0" fill="rgb(239,142,28)" rx="2" ry="2" />
<text x="1099.71" y="1151.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="1014.3" y="901" width="0.4" height="15.0" fill="rgb(218,33,2)" rx="2" ry="2" />
<text x="1017.33" y="911.5" ></text>
</g>
<g >
<title>[unknown] (29 samples, 0.10%)</title><rect x="1188.0" y="1301" width="1.2" height="15.0" fill="rgb(205,68,45)" rx="2" ry="2" />
<text x="1191.04" y="1311.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1032.6" y="933" width="0.1" height="15.0" fill="rgb(240,13,40)" rx="2" ry="2" />
<text x="1035.58" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (95 samples, 0.32%)</title><rect x="1032.7" y="901" width="3.8" height="15.0" fill="rgb(216,42,24)" rx="2" ry="2" />
<text x="1035.70" y="911.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (28 samples, 0.09%)</title><rect x="210.7" y="741" width="1.2" height="15.0" fill="rgb(250,165,9)" rx="2" ry="2" />
<text x="213.75" y="751.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (4 samples, 0.01%)</title><rect x="988.2" y="1029" width="0.2" height="15.0" fill="rgb(254,97,53)" rx="2" ry="2" />
<text x="991.22" y="1039.5" ></text>
</g>
<g >
<title>ret_from_fork (3 samples, 0.01%)</title><rect x="1076.6" y="1301" width="0.1" height="15.0" fill="rgb(226,173,21)" rx="2" ry="2" />
<text x="1079.63" y="1311.5" ></text>
</g>
<g >
<title>migrate_misplaced_page (3 samples, 0.01%)</title><rect x="1010.6" y="933" width="0.1" height="15.0" fill="rgb(231,113,13)" rx="2" ry="2" />
<text x="1013.58" y="943.5" ></text>
</g>
<g >
<title>smp_call_function_many (6 samples, 0.02%)</title><rect x="1035.7" y="549" width="0.2" height="15.0" fill="rgb(231,99,8)" rx="2" ry="2" />
<text x="1038.66" y="559.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (3 samples, 0.01%)</title><rect x="1185.2" y="1077" width="0.1" height="15.0" fill="rgb(244,39,23)" rx="2" ry="2" />
<text x="1188.21" y="1087.5" ></text>
</g>
<g >
<title>do_iter_read (43 samples, 0.15%)</title><rect x="1023.8" y="805" width="1.7" height="15.0" fill="rgb(246,10,18)" rx="2" ry="2" />
<text x="1026.80" y="815.5" ></text>
</g>
<g >
<title>munmap (4 samples, 0.01%)</title><rect x="10.2" y="933" width="0.2" height="15.0" fill="rgb(230,41,24)" rx="2" ry="2" />
<text x="13.24" y="943.5" ></text>
</g>
<g >
<title>do_sys_open (20 samples, 0.07%)</title><rect x="1069.1" y="1237" width="0.8" height="15.0" fill="rgb(251,19,34)" rx="2" ry="2" />
<text x="1072.08" y="1247.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (11 samples, 0.04%)</title><rect x="1025.8" y="965" width="0.4" height="15.0" fill="rgb(214,29,22)" rx="2" ry="2" />
<text x="1028.79" y="975.5" ></text>
</g>
<g >
<title>futex_wait (21 samples, 0.07%)</title><rect x="1044.8" y="1093" width="0.8" height="15.0" fill="rgb(207,125,27)" rx="2" ry="2" />
<text x="1047.80" y="1103.5" ></text>
</g>
<g >
<title>__x64_sys_select (4 samples, 0.01%)</title><rect x="1067.4" y="1221" width="0.2" height="15.0" fill="rgb(206,148,13)" rx="2" ry="2" />
<text x="1070.40" y="1231.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (3 samples, 0.01%)</title><rect x="1032.6" y="917" width="0.1" height="15.0" fill="rgb(227,142,11)" rx="2" ry="2" />
<text x="1035.58" y="927.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (37 samples, 0.13%)</title><rect x="210.7" y="885" width="1.4" height="15.0" fill="rgb(214,16,2)" rx="2" ry="2" />
<text x="213.67" y="895.5" ></text>
</g>
<g >
<title>do_exit (9 samples, 0.03%)</title><rect x="1084.8" y="1237" width="0.4" height="15.0" fill="rgb(248,118,13)" rx="2" ry="2" />
<text x="1087.81" y="1247.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3 samples, 0.01%)</title><rect x="1187.6" y="1221" width="0.2" height="15.0" fill="rgb(223,141,45)" rx="2" ry="2" />
<text x="1190.64" y="1231.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="469" width="0.9" height="15.0" fill="rgb(215,8,24)" rx="2" ry="2" />
<text x="213.79" y="479.5" ></text>
</g>
<g >
<title>rcu_idle_exit (5 samples, 0.02%)</title><rect x="1171.8" y="1237" width="0.1" height="15.0" fill="rgb(211,17,46)" rx="2" ry="2" />
<text x="1174.75" y="1247.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (17 samples, 0.06%)</title><rect x="1046.5" y="1061" width="0.7" height="15.0" fill="rgb(223,189,30)" rx="2" ry="2" />
<text x="1049.52" y="1071.5" ></text>
</g>
<g >
<title>unmap_page_range (3 samples, 0.01%)</title><rect x="181.6" y="997" width="0.1" height="15.0" fill="rgb(249,225,13)" rx="2" ry="2" />
<text x="184.56" y="1007.5" ></text>
</g>
<g >
<title>ep_poll (107 samples, 0.36%)</title><rect x="1062.4" y="1173" width="4.3" height="15.0" fill="rgb(254,219,36)" rx="2" ry="2" />
<text x="1065.41" y="1183.5" ></text>
</g>
<g >
<title>dyntick_save_progress_counter (74 samples, 0.25%)</title><rect x="1086.1" y="1237" width="2.9" height="15.0" fill="rgb(246,127,35)" rx="2" ry="2" />
<text x="1089.05" y="1247.5" ></text>
</g>
<g >
<title>link_path_walk (6 samples, 0.02%)</title><rect x="1038.6" y="901" width="0.2" height="15.0" fill="rgb(216,94,26)" rx="2" ry="2" />
<text x="1041.57" y="911.5" ></text>
</g>
<g >
<title>proc_single_show (23 samples, 0.08%)</title><rect x="1071.0" y="1189" width="0.9" height="15.0" fill="rgb(212,40,26)" rx="2" ry="2" />
<text x="1073.96" y="1199.5" ></text>
</g>
<g >
<title>zap_page_range (3 samples, 0.01%)</title><rect x="230.0" y="933" width="0.1" height="15.0" fill="rgb(218,70,53)" rx="2" ry="2" />
<text x="232.95" y="943.5" ></text>
</g>
<g >
<title>[clickhouse] (23,642 samples, 80.01%)</title><rect x="96.7" y="1301" width="944.1" height="15.0" fill="rgb(229,25,12)" rx="2" ry="2" />
<text x="99.66" y="1311.5" >[clickhouse]</text>
</g>
<g >
<title>worker_thread (52 samples, 0.18%)</title><rect x="1072.9" y="1269" width="2.1" height="15.0" fill="rgb(251,88,49)" rx="2" ry="2" />
<text x="1075.87" y="1279.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (21,499 samples, 72.76%)</title><rect x="182.0" y="1221" width="858.6" height="15.0" fill="rgb(208,166,5)" rx="2" ry="2" />
<text x="185.03" y="1231.5" >DB::IBlockInputStream::read</text>
</g>
<g >
<title>interrupt_entry (3 samples, 0.01%)</title><rect x="979.5" y="1061" width="0.1" height="15.0" fill="rgb(229,137,21)" rx="2" ry="2" />
<text x="982.47" y="1071.5" ></text>
</g>
<g >
<title>copy_user_generic_string (29 samples, 0.10%)</title><rect x="1014.8" y="741" width="1.2" height="15.0" fill="rgb(242,64,21)" rx="2" ry="2" />
<text x="1017.81" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1031.1" y="965" width="0.2" height="15.0" fill="rgb(234,39,41)" rx="2" ry="2" />
<text x="1034.06" y="975.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (1,743 samples, 5.90%)</title><rect x="10.2" y="1061" width="69.6" height="15.0" fill="rgb(205,39,36)" rx="2" ry="2" />
<text x="13.20" y="1071.5" >DB::IBl..</text>
</g>
<g >
<title>__do_execve_file.isra.12 (4 samples, 0.01%)</title><rect x="1094.1" y="1189" width="0.2" height="15.0" fill="rgb(243,144,5)" rx="2" ry="2" />
<text x="1097.12" y="1199.5" ></text>
</g>
<g >
<title>unmap_vmas (3 samples, 0.01%)</title><rect x="1094.6" y="1189" width="0.1" height="15.0" fill="rgb(242,43,26)" rx="2" ry="2" />
<text x="1097.56" y="1199.5" ></text>
</g>
<g >
<title>__fput (3 samples, 0.01%)</title><rect x="1068.8" y="1205" width="0.2" height="15.0" fill="rgb(217,98,53)" rx="2" ry="2" />
<text x="1071.84" y="1215.5" ></text>
</g>
<g >
<title>ovl_read_iter (79 samples, 0.27%)</title><rect x="1005.5" y="885" width="3.2" height="15.0" fill="rgb(220,145,17)" rx="2" ry="2" />
<text x="1008.55" y="895.5" ></text>
</g>
<g >
<title>DB::Join::joinBlock (19,173 samples, 64.89%)</title><rect x="231.0" y="1125" width="765.6" height="15.0" fill="rgb(211,111,26)" rx="2" ry="2" />
<text x="233.99" y="1135.5" >DB::Join::joinBlock</text>
</g>
<g >
<title>DB::AggregatedDataVariants::convertToTwoLevel (25 samples, 0.08%)</title><rect x="97.2" y="1205" width="1.0" height="15.0" fill="rgb(226,171,21)" rx="2" ry="2" />
<text x="100.22" y="1215.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3 samples, 0.01%)</title><rect x="1179.9" y="1157" width="0.2" height="15.0" fill="rgb(228,103,44)" rx="2" ry="2" />
<text x="1182.94" y="1167.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="405" width="0.9" height="15.0" fill="rgb(209,99,12)" rx="2" ry="2" />
<text x="213.79" y="415.5" ></text>
</g>
<g >
<title>up_read (3 samples, 0.01%)</title><rect x="1035.9" y="693" width="0.2" height="15.0" fill="rgb(253,180,51)" rx="2" ry="2" />
<text x="1038.94" y="703.5" ></text>
</g>
<g >
<title>scheduler_tick (8 samples, 0.03%)</title><rect x="978.2" y="965" width="0.4" height="15.0" fill="rgb(211,108,16)" rx="2" ry="2" />
<text x="981.23" y="975.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1187.8" y="1285" width="0.1" height="15.0" fill="rgb(244,223,52)" rx="2" ry="2" />
<text x="1190.76" y="1295.5" ></text>
</g>
<g >
<title>DB::ConfigReloader::reloadIfNewer (9 samples, 0.03%)</title><rect x="95.5" y="1237" width="0.4" height="15.0" fill="rgb(234,151,14)" rx="2" ry="2" />
<text x="98.50" y="1247.5" ></text>
</g>
<g >
<title>__bitmap_and (3 samples, 0.01%)</title><rect x="1104.9" y="1125" width="0.2" height="15.0" fill="rgb(207,90,21)" rx="2" ry="2" />
<text x="1107.94" y="1135.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (3 samples, 0.01%)</title><rect x="1084.5" y="1269" width="0.1" height="15.0" fill="rgb(230,212,17)" rx="2" ry="2" />
<text x="1087.46" y="1279.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (4 samples, 0.01%)</title><rect x="1057.2" y="1093" width="0.1" height="15.0" fill="rgb(217,25,34)" rx="2" ry="2" />
<text x="1060.18" y="1103.5" ></text>
</g>
<g >
<title>__sched_text_start (19 samples, 0.06%)</title><rect x="1044.9" y="1045" width="0.7" height="15.0" fill="rgb(242,191,4)" rx="2" ry="2" />
<text x="1047.88" y="1055.5" ></text>
</g>
<g >
<title>epoll_wait (114 samples, 0.39%)</title><rect x="1062.3" y="1253" width="4.5" height="15.0" fill="rgb(249,5,44)" rx="2" ry="2" />
<text x="1065.25" y="1263.5" ></text>
</g>
<g >
<title>DB::ParserIntervalOperatorExpression::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="373" width="0.9" height="15.0" fill="rgb(233,171,40)" rx="2" ry="2" />
<text x="213.79" y="383.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (4 samples, 0.01%)</title><rect x="182.6" y="1109" width="0.1" height="15.0" fill="rgb(233,25,18)" rx="2" ry="2" />
<text x="185.55" y="1119.5" ></text>
</g>
<g >
<title>__do_execve_file.isra.12 (4 samples, 0.01%)</title><rect x="1184.8" y="1205" width="0.2" height="15.0" fill="rgb(244,56,31)" rx="2" ry="2" />
<text x="1187.81" y="1215.5" ></text>
</g>
<g >
<title>copyout (7 samples, 0.02%)</title><rect x="1055.4" y="1173" width="0.3" height="15.0" fill="rgb(230,92,30)" rx="2" ry="2" />
<text x="1058.42" y="1183.5" ></text>
</g>
<g >
<title>__handle_mm_fault (7 samples, 0.02%)</title><rect x="1181.3" y="1205" width="0.3" height="15.0" fill="rgb(211,37,14)" rx="2" ry="2" />
<text x="1184.33" y="1215.5" ></text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::EqualsOp, DB::NameEquals&gt;::executeNumLeftType&lt;unsigned char&gt; (11 samples, 0.04%)</title><rect x="184.4" y="1125" width="0.5" height="15.0" fill="rgb(242,209,31)" rx="2" ry="2" />
<text x="187.43" y="1135.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (4 samples, 0.01%)</title><rect x="10.2" y="885" width="0.2" height="15.0" fill="rgb(248,22,0)" rx="2" ry="2" />
<text x="13.24" y="895.5" ></text>
</g>
<g >
<title>DB::TCPHandler::isQueryCancelled (33 samples, 0.11%)</title><rect x="1043.1" y="1173" width="1.3" height="15.0" fill="rgb(242,176,25)" rx="2" ry="2" />
<text x="1046.12" y="1183.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (14 samples, 0.05%)</title><rect x="1096.6" y="1189" width="0.5" height="15.0" fill="rgb(239,80,5)" rx="2" ry="2" />
<text x="1099.56" y="1199.5" ></text>
</g>
<g >
<title>vm_munmap (3 samples, 0.01%)</title><rect x="95.0" y="1029" width="0.1" height="15.0" fill="rgb(213,127,1)" rx="2" ry="2" />
<text x="98.02" y="1039.5" ></text>
</g>
<g >
<title>DB::FunctionBuilderImpl::getReturnType (62 samples, 0.21%)</title><rect x="210.4" y="1109" width="2.5" height="15.0" fill="rgb(207,164,26)" rx="2" ry="2" />
<text x="213.43" y="1119.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9 samples, 0.03%)</title><rect x="12.1" y="885" width="0.3" height="15.0" fill="rgb(234,141,30)" rx="2" ry="2" />
<text x="15.08" y="895.5" ></text>
</g>
<g >
<title>tick_nohz_idle_stop_tick (24 samples, 0.08%)</title><rect x="1174.9" y="1237" width="0.9" height="15.0" fill="rgb(215,77,19)" rx="2" ry="2" />
<text x="1177.87" y="1247.5" ></text>
</g>
<g >
<title>large_ralloc_no_move (3 samples, 0.01%)</title><rect x="1011.3" y="885" width="0.1" height="15.0" fill="rgb(234,46,50)" rx="2" ry="2" />
<text x="1014.26" y="895.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (3 samples, 0.01%)</title><rect x="1187.8" y="1253" width="0.1" height="15.0" fill="rgb(226,211,54)" rx="2" ry="2" />
<text x="1190.76" y="1263.5" ></text>
</g>
<g >
<title>find_get_entry (4 samples, 0.01%)</title><rect x="1036.3" y="725" width="0.1" height="15.0" fill="rgb(227,205,47)" rx="2" ry="2" />
<text x="1039.26" y="735.5" ></text>
</g>
<g >
<title>do_exit (3 samples, 0.01%)</title><rect x="1094.6" y="1237" width="0.1" height="15.0" fill="rgb(211,225,51)" rx="2" ry="2" />
<text x="1097.56" y="1247.5" ></text>
</g>
<g >
<title>all (29,549 samples, 100%)</title><rect x="10.0" y="1333" width="1180.0" height="15.0" fill="rgb(244,32,31)" rx="2" ry="2" />
<text x="13.00" y="1343.5" ></text>
</g>
<g >
<title>call_function_interrupt (4 samples, 0.01%)</title><rect x="1024.8" y="709" width="0.1" height="15.0" fill="rgb(252,212,33)" rx="2" ry="2" />
<text x="1027.75" y="719.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="986.1" y="1061" width="0.2" height="15.0" fill="rgb(208,46,10)" rx="2" ry="2" />
<text x="989.14" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="1044.0" y="1109" width="0.4" height="15.0" fill="rgb(234,217,27)" rx="2" ry="2" />
<text x="1047.04" y="1119.5" ></text>
</g>
<g >
<title>kworker/u259:2- (8 samples, 0.03%)</title><rect x="1083.3" y="1317" width="0.4" height="15.0" fill="rgb(206,220,25)" rx="2" ry="2" />
<text x="1086.34" y="1327.5" ></text>
</g>
<g >
<title>arena_extents_dirty_dalloc (3 samples, 0.01%)</title><rect x="204.6" y="997" width="0.1" height="15.0" fill="rgb(242,30,11)" rx="2" ry="2" />
<text x="207.60" y="1007.5" ></text>
</g>
<g >
<title>task_tick_fair (12 samples, 0.04%)</title><rect x="987.6" y="965" width="0.5" height="15.0" fill="rgb(211,159,52)" rx="2" ry="2" />
<text x="990.58" y="975.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (93 samples, 0.31%)</title><rect x="1032.8" y="805" width="3.7" height="15.0" fill="rgb(250,8,26)" rx="2" ry="2" />
<text x="1035.78" y="815.5" ></text>
</g>
<g >
<title>__sys_recvfrom (21 samples, 0.07%)</title><rect x="1059.0" y="1237" width="0.8" height="15.0" fill="rgb(254,41,41)" rx="2" ry="2" />
<text x="1061.98" y="1247.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (6 samples, 0.02%)</title><rect x="203.8" y="1045" width="0.3" height="15.0" fill="rgb(239,46,12)" rx="2" ry="2" />
<text x="206.84" y="1055.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (4 samples, 0.01%)</title><rect x="204.7" y="821" width="0.2" height="15.0" fill="rgb(245,127,11)" rx="2" ry="2" />
<text x="207.72" y="831.5" ></text>
</g>
<g >
<title>update_nohz_stats (19 samples, 0.06%)</title><rect x="1079.1" y="1173" width="0.8" height="15.0" fill="rgb(249,81,9)" rx="2" ry="2" />
<text x="1082.14" y="1183.5" ></text>
</g>
<g >
<title>__sched_text_start (47 samples, 0.16%)</title><rect x="1078.1" y="1237" width="1.9" height="15.0" fill="rgb(211,15,0)" rx="2" ry="2" />
<text x="1081.15" y="1247.5" ></text>
</g>
<g >
<title>copy_user_generic_string (4 samples, 0.01%)</title><rect x="1031.1" y="789" width="0.1" height="15.0" fill="rgb(212,107,21)" rx="2" ry="2" />
<text x="1034.06" y="799.5" ></text>
</g>
<g >
<title>[clickhouse] (7 samples, 0.02%)</title><rect x="97.8" y="1109" width="0.3" height="15.0" fill="rgb(208,222,38)" rx="2" ry="2" />
<text x="100.77" y="1119.5" ></text>
</g>
<g >
<title>account_user_time (7 samples, 0.02%)</title><rect x="987.0" y="981" width="0.3" height="15.0" fill="rgb(224,56,16)" rx="2" ry="2" />
<text x="989.98" y="991.5" ></text>
</g>
<g >
<title>cpuidle_governor_latency_req (20 samples, 0.07%)</title><rect x="1169.8" y="1221" width="0.8" height="15.0" fill="rgb(210,124,23)" rx="2" ry="2" />
<text x="1172.79" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="230.0" y="1045" width="0.1" height="15.0" fill="rgb(215,190,23)" rx="2" ry="2" />
<text x="232.95" y="1055.5" ></text>
</g>
<g >
<title>DB::ExpressionActions::execute (1,214 samples, 4.11%)</title><rect x="182.3" y="1189" width="48.5" height="15.0" fill="rgb(211,139,23)" rx="2" ry="2" />
<text x="185.31" y="1199.5" >DB::..</text>
</g>
<g >
<title>__softirqentry_text_start (23 samples, 0.08%)</title><rect x="988.5" y="1029" width="0.9" height="15.0" fill="rgb(226,218,44)" rx="2" ry="2" />
<text x="991.45" y="1039.5" ></text>
</g>
<g >
<title>wp_page_copy (40 samples, 0.14%)</title><rect x="90.3" y="965" width="1.6" height="15.0" fill="rgb(228,63,43)" rx="2" ry="2" />
<text x="93.35" y="975.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (10 samples, 0.03%)</title><rect x="182.7" y="1125" width="0.4" height="15.0" fill="rgb(253,131,39)" rx="2" ry="2" />
<text x="185.71" y="1135.5" ></text>
</g>
<g >
<title>unmap_vmas (14 samples, 0.05%)</title><rect x="1042.4" y="741" width="0.6" height="15.0" fill="rgb(238,192,48)" rx="2" ry="2" />
<text x="1045.41" y="751.5" ></text>
</g>
<g >
<title>malloc_default (3 samples, 0.01%)</title><rect x="1039.3" y="965" width="0.1" height="15.0" fill="rgb(216,170,52)" rx="2" ry="2" />
<text x="1042.25" y="975.5" ></text>
</g>
<g >
<title>schedule_idle (39 samples, 0.13%)</title><rect x="1172.1" y="1237" width="1.5" height="15.0" fill="rgb(253,12,10)" rx="2" ry="2" />
<text x="1175.07" y="1247.5" ></text>
</g>
<g >
<title>net_rx_action (14 samples, 0.05%)</title><rect x="1046.6" y="997" width="0.6" height="15.0" fill="rgb(219,77,41)" rx="2" ry="2" />
<text x="1049.60" y="1007.5" ></text>
</g>
<g >
<title>do_softirq_own_stack (9 samples, 0.03%)</title><rect x="1059.4" y="1077" width="0.3" height="15.0" fill="rgb(254,128,12)" rx="2" ry="2" />
<text x="1062.38" y="1087.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1052.9" y="1269" width="0.1" height="15.0" fill="rgb(232,136,14)" rx="2" ry="2" />
<text x="1055.87" y="1279.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="201.4" y="965" width="0.2" height="15.0" fill="rgb(249,179,16)" rx="2" ry="2" />
<text x="204.40" y="975.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (5 samples, 0.02%)</title><rect x="1022.9" y="789" width="0.2" height="15.0" fill="rgb(244,58,17)" rx="2" ry="2" />
<text x="1025.88" y="799.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (15 samples, 0.05%)</title><rect x="1042.4" y="901" width="0.6" height="15.0" fill="rgb(229,95,40)" rx="2" ry="2" />
<text x="1045.41" y="911.5" ></text>
</g>
<g >
<title>munmap (11 samples, 0.04%)</title><rect x="79.4" y="885" width="0.4" height="15.0" fill="rgb(225,110,38)" rx="2" ry="2" />
<text x="82.36" y="895.5" ></text>
</g>
<g >
<title>rebalance_domains (11 samples, 0.04%)</title><rect x="1096.7" y="1157" width="0.4" height="15.0" fill="rgb(240,153,35)" rx="2" ry="2" />
<text x="1099.68" y="1167.5" ></text>
</g>
<g >
<title>event_function (4 samples, 0.01%)</title><rect x="1085.3" y="965" width="0.1" height="15.0" fill="rgb(205,186,29)" rx="2" ry="2" />
<text x="1088.25" y="975.5" ></text>
</g>
<g >
<title>release_pages (5 samples, 0.02%)</title><rect x="1042.2" y="693" width="0.2" height="15.0" fill="rgb(218,103,16)" rx="2" ry="2" />
<text x="1045.21" y="703.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (13 samples, 0.04%)</title><rect x="96.0" y="1285" width="0.5" height="15.0" fill="rgb(219,27,49)" rx="2" ry="2" />
<text x="99.02" y="1295.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::~ColumnVector (4 samples, 0.01%)</title><rect x="232.3" y="1093" width="0.1" height="15.0" fill="rgb(214,73,14)" rx="2" ry="2" />
<text x="235.27" y="1103.5" ></text>
</g>
<g >
<title>cpu_function_call (5 samples, 0.02%)</title><rect x="1085.2" y="1029" width="0.2" height="15.0" fill="rgb(234,87,43)" rx="2" ry="2" />
<text x="1088.21" y="1039.5" ></text>
</g>
<g >
<title>update_blocked_averages (3 samples, 0.01%)</title><rect x="1076.1" y="1157" width="0.2" height="15.0" fill="rgb(228,161,10)" rx="2" ry="2" />
<text x="1079.15" y="1167.5" ></text>
</g>
<g >
<title>memcg_kmem_get_cache (5 samples, 0.02%)</title><rect x="1061.5" y="1109" width="0.2" height="15.0" fill="rgb(212,109,31)" rx="2" ry="2" />
<text x="1064.45" y="1119.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (16 samples, 0.05%)</title><rect x="1039.2" y="1061" width="0.6" height="15.0" fill="rgb(210,37,40)" rx="2" ry="2" />
<text x="1042.21" y="1071.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (4 samples, 0.01%)</title><rect x="230.5" y="1045" width="0.2" height="15.0" fill="rgb(253,187,10)" rx="2" ry="2" />
<text x="233.51" y="1055.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="10.2" y="917" width="0.2" height="15.0" fill="rgb(249,120,14)" rx="2" ry="2" />
<text x="13.24" y="927.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (4 samples, 0.01%)</title><rect x="204.7" y="837" width="0.2" height="15.0" fill="rgb(248,43,34)" rx="2" ry="2" />
<text x="207.72" y="847.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToStart (4 samples, 0.01%)</title><rect x="1010.7" y="997" width="0.2" height="15.0" fill="rgb(237,30,46)" rx="2" ry="2" />
<text x="1013.74" y="1007.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (4 samples, 0.01%)</title><rect x="182.8" y="917" width="0.2" height="15.0" fill="rgb(240,158,11)" rx="2" ry="2" />
<text x="185.79" y="927.5" ></text>
</g>
<g >
<title>enqueue_task_fair (3 samples, 0.01%)</title><rect x="1113.5" y="1077" width="0.1" height="15.0" fill="rgb(229,202,3)" rx="2" ry="2" />
<text x="1116.49" y="1087.5" ></text>
</g>
<g >
<title>seq_read (10 samples, 0.03%)</title><rect x="1070.5" y="1189" width="0.4" height="15.0" fill="rgb(241,2,51)" rx="2" ry="2" />
<text x="1073.52" y="1199.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (12 samples, 0.04%)</title><rect x="1037.9" y="1029" width="0.4" height="15.0" fill="rgb(253,161,48)" rx="2" ry="2" />
<text x="1040.85" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (20 samples, 0.07%)</title><rect x="1069.1" y="1253" width="0.8" height="15.0" fill="rgb(232,178,14)" rx="2" ry="2" />
<text x="1072.08" y="1263.5" ></text>
</g>
<g >
<title>large_dalloc (9 samples, 0.03%)</title><rect x="182.8" y="1093" width="0.3" height="15.0" fill="rgb(225,156,33)" rx="2" ry="2" />
<text x="185.75" y="1103.5" ></text>
</g>
<g >
<title>smp_irq_work_interrupt (8 samples, 0.03%)</title><rect x="988.6" y="997" width="0.3" height="15.0" fill="rgb(229,58,23)" rx="2" ry="2" />
<text x="991.57" y="1007.5" ></text>
</g>
<g >
<title>__x64_sys_execve (3 samples, 0.01%)</title><rect x="1093.6" y="1253" width="0.1" height="15.0" fill="rgb(236,139,1)" rx="2" ry="2" />
<text x="1096.56" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="201.3" y="997" width="0.1" height="15.0" fill="rgb(227,156,21)" rx="2" ry="2" />
<text x="204.28" y="1007.5" ></text>
</g>
<g >
<title>rcu_gp_kthread (155 samples, 0.52%)</title><rect x="1085.6" y="1269" width="6.2" height="15.0" fill="rgb(222,132,15)" rx="2" ry="2" />
<text x="1088.57" y="1279.5" ></text>
</g>
<g >
<title>dbs_work_handler (3 samples, 0.01%)</title><rect x="1072.3" y="1237" width="0.1" height="15.0" fill="rgb(243,61,29)" rx="2" ry="2" />
<text x="1075.28" y="1247.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (3 samples, 0.01%)</title><rect x="1016.3" y="981" width="0.1" height="15.0" fill="rgb(247,135,36)" rx="2" ry="2" />
<text x="1019.29" y="991.5" ></text>
</g>
<g >
<title>pthread_mutex_trylock (20 samples, 0.07%)</title><rect x="1041.1" y="1285" width="0.8" height="15.0" fill="rgb(248,145,32)" rx="2" ry="2" />
<text x="1044.13" y="1295.5" ></text>
</g>
<g >
<title>copy_user_generic_string (80 samples, 0.27%)</title><rect x="1032.9" y="741" width="3.2" height="15.0" fill="rgb(209,1,7)" rx="2" ry="2" />
<text x="1035.86" y="751.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1042.0" y="853" width="0.2" height="15.0" fill="rgb(242,150,9)" rx="2" ry="2" />
<text x="1045.05" y="863.5" ></text>
</g>
<g >
<title>__alloc_fd (5 samples, 0.02%)</title><rect x="1061.1" y="1173" width="0.2" height="15.0" fill="rgb(245,123,50)" rx="2" ry="2" />
<text x="1064.13" y="1183.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (4 samples, 0.01%)</title><rect x="30.2" y="821" width="0.2" height="15.0" fill="rgb(234,209,50)" rx="2" ry="2" />
<text x="33.21" y="831.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (43 samples, 0.15%)</title><rect x="1023.8" y="901" width="1.7" height="15.0" fill="rgb(248,155,51)" rx="2" ry="2" />
<text x="1026.80" y="911.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::~ColumnNullable (10 samples, 0.03%)</title><rect x="229.9" y="1125" width="0.4" height="15.0" fill="rgb(253,155,26)" rx="2" ry="2" />
<text x="232.87" y="1135.5" ></text>
</g>
<g >
<title>process_backlog (12 samples, 0.04%)</title><rect x="1046.7" y="981" width="0.5" height="15.0" fill="rgb(248,173,40)" rx="2" ry="2" />
<text x="1049.68" y="991.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (21 samples, 0.07%)</title><rect x="1044.8" y="1157" width="0.8" height="15.0" fill="rgb(253,43,47)" rx="2" ry="2" />
<text x="1047.80" y="1167.5" ></text>
</g>
<g >
<title>do_wp_page (29 samples, 0.10%)</title><rect x="23.9" y="821" width="1.1" height="15.0" fill="rgb(242,219,47)" rx="2" ry="2" />
<text x="26.86" y="831.5" ></text>
</g>
<g >
<title>__netdev_alloc_skb (3 samples, 0.01%)</title><rect x="1167.0" y="1109" width="0.1" height="15.0" fill="rgb(243,103,48)" rx="2" ry="2" />
<text x="1170.00" y="1119.5" ></text>
</g>
<g >
<title>DB::DataTypeNullable::deserializeBinaryBulkWithMultipleStreams (250 samples, 0.85%)</title><rect x="1016.2" y="1029" width="10.0" height="15.0" fill="rgb(249,72,15)" rx="2" ry="2" />
<text x="1019.25" y="1039.5" ></text>
</g>
<g >
<title>do_task_stat (23 samples, 0.08%)</title><rect x="1071.0" y="1173" width="0.9" height="15.0" fill="rgb(239,104,35)" rx="2" ry="2" />
<text x="1073.96" y="1183.5" ></text>
</g>
<g >
<title>DB::MergeTreeReader::MergeTreeReader (59 samples, 0.20%)</title><rect x="1037.9" y="1109" width="2.3" height="15.0" fill="rgb(219,183,46)" rx="2" ry="2" />
<text x="1040.85" y="1119.5" ></text>
</g>
<g >
<title>__vfs_read (43 samples, 0.15%)</title><rect x="1023.8" y="837" width="1.7" height="15.0" fill="rgb(252,101,35)" rx="2" ry="2" />
<text x="1026.80" y="847.5" ></text>
</g>
<g >
<title>arena_decay (7 samples, 0.02%)</title><rect x="204.7" y="997" width="0.3" height="15.0" fill="rgb(252,75,13)" rx="2" ry="2" />
<text x="207.72" y="1007.5" ></text>
</g>
<g >
<title>__se_sys_newstat (4 samples, 0.01%)</title><rect x="1052.9" y="1237" width="0.1" height="15.0" fill="rgb(225,16,47)" rx="2" ry="2" />
<text x="1055.87" y="1247.5" ></text>
</g>
<g >
<title>DB::JoinBlockInputStream::fillColumns&lt; (981 samples, 3.32%)</title><rect x="31.5" y="821" width="39.2" height="15.0" fill="rgb(252,120,9)" rx="2" ry="2" />
<text x="34.52" y="831.5" >DB:..</text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="181.5" y="1189" width="0.2" height="15.0" fill="rgb(216,174,37)" rx="2" ry="2" />
<text x="184.48" y="1199.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3 samples, 0.01%)</title><rect x="985.8" y="821" width="0.1" height="15.0" fill="rgb(246,205,4)" rx="2" ry="2" />
<text x="988.82" y="831.5" ></text>
</g>
<g >
<title>htop (108 samples, 0.37%)</title><rect x="1067.6" y="1317" width="4.3" height="15.0" fill="rgb(211,201,1)" rx="2" ry="2" />
<text x="1070.56" y="1327.5" ></text>
</g>
<g >
<title>do_syscall_64 (31 samples, 0.10%)</title><rect x="1185.2" y="1269" width="1.2" height="15.0" fill="rgb(248,192,53)" rx="2" ry="2" />
<text x="1188.17" y="1279.5" ></text>
</g>
<g >
<title>vfs_statx (4 samples, 0.01%)</title><rect x="1052.9" y="1221" width="0.1" height="15.0" fill="rgb(217,94,9)" rx="2" ry="2" />
<text x="1055.87" y="1231.5" ></text>
</g>
<g >
<title>pick_next_task_fair (32 samples, 0.11%)</title><rect x="1073.6" y="1221" width="1.3" height="15.0" fill="rgb(216,88,44)" rx="2" ry="2" />
<text x="1076.63" y="1231.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (15 samples, 0.05%)</title><rect x="991.0" y="1045" width="0.6" height="15.0" fill="rgb(246,22,25)" rx="2" ry="2" />
<text x="993.97" y="1055.5" ></text>
</g>
<g >
<title>DB::Join::insertFromBlock (381 samples, 1.29%)</title><rect x="79.8" y="1093" width="15.2" height="15.0" fill="rgb(206,152,19)" rx="2" ry="2" />
<text x="82.80" y="1103.5" ></text>
</g>
<g >
<title>generic_exec_single (4 samples, 0.01%)</title><rect x="1085.3" y="997" width="0.1" height="15.0" fill="rgb(222,165,41)" rx="2" ry="2" />
<text x="1088.25" y="1007.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3 samples, 0.01%)</title><rect x="74.3" y="789" width="0.2" height="15.0" fill="rgb(247,133,38)" rx="2" ry="2" />
<text x="77.33" y="799.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (8 samples, 0.03%)</title><rect x="1014.3" y="949" width="0.4" height="15.0" fill="rgb(217,219,38)" rx="2" ry="2" />
<text x="1017.33" y="959.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (3 samples, 0.01%)</title><rect x="1107.5" y="1029" width="0.2" height="15.0" fill="rgb(213,138,21)" rx="2" ry="2" />
<text x="1110.54" y="1039.5" ></text>
</g>
<g >
<title>__se_sys_madvise (3 samples, 0.01%)</title><rect x="230.0" y="949" width="0.1" height="15.0" fill="rgb(228,156,28)" rx="2" ry="2" />
<text x="232.95" y="959.5" ></text>
</g>
<g >
<title>pick_next_task_fair (18 samples, 0.06%)</title><rect x="1044.9" y="1029" width="0.7" height="15.0" fill="rgb(217,134,37)" rx="2" ry="2" />
<text x="1047.92" y="1039.5" ></text>
</g>
<g >
<title>update_process_times (39 samples, 0.13%)</title><rect x="1099.7" y="1141" width="1.6" height="15.0" fill="rgb(251,225,35)" rx="2" ry="2" />
<text x="1102.71" y="1151.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="977.6" y="933" width="0.2" height="15.0" fill="rgb(228,10,32)" rx="2" ry="2" />
<text x="980.63" y="943.5" ></text>
</g>
<g >
<title>shmem_getpage_gfp.isra.6 (10 samples, 0.03%)</title><rect x="1036.1" y="757" width="0.4" height="15.0" fill="rgb(209,138,17)" rx="2" ry="2" />
<text x="1039.10" y="767.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="74.8" y="869" width="0.2" height="15.0" fill="rgb(231,226,2)" rx="2" ry="2" />
<text x="77.77" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1176.1" y="1301" width="0.2" height="15.0" fill="rgb(216,68,9)" rx="2" ry="2" />
<text x="1179.10" y="1311.5" ></text>
</g>
<g >
<title>do_mmap (3 samples, 0.01%)</title><rect x="1187.8" y="1221" width="0.1" height="15.0" fill="rgb(223,16,45)" rx="2" ry="2" />
<text x="1190.76" y="1231.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (13 samples, 0.04%)</title><rect x="992.6" y="1077" width="0.6" height="15.0" fill="rgb(205,194,34)" rx="2" ry="2" />
<text x="995.65" y="1087.5" ></text>
</g>
<g >
<title>__madvise (7 samples, 0.02%)</title><rect x="204.7" y="933" width="0.3" height="15.0" fill="rgb(227,172,14)" rx="2" ry="2" />
<text x="207.72" y="943.5" ></text>
</g>
<g >
<title>copyout (80 samples, 0.27%)</title><rect x="1032.9" y="757" width="3.2" height="15.0" fill="rgb(241,110,12)" rx="2" ry="2" />
<text x="1035.86" y="767.5" ></text>
</g>
<g >
<title>tcp_ack (6 samples, 0.02%)</title><rect x="1059.5" y="901" width="0.2" height="15.0" fill="rgb(229,94,16)" rx="2" ry="2" />
<text x="1062.50" y="911.5" ></text>
</g>
<g >
<title>kthread (15 samples, 0.05%)</title><rect x="1082.3" y="1285" width="0.6" height="15.0" fill="rgb(244,134,34)" rx="2" ry="2" />
<text x="1085.26" y="1295.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (6 samples, 0.02%)</title><rect x="1057.4" y="1093" width="0.3" height="15.0" fill="rgb(244,43,46)" rx="2" ry="2" />
<text x="1060.42" y="1103.5" ></text>
</g>
<g >
<title>source_load (7 samples, 0.02%)</title><rect x="1064.0" y="1061" width="0.3" height="15.0" fill="rgb(239,112,9)" rx="2" ry="2" />
<text x="1067.01" y="1071.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="1085.7" y="1253" width="0.1" height="15.0" fill="rgb(219,161,16)" rx="2" ry="2" />
<text x="1088.65" y="1263.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1085.2" y="1269" width="0.2" height="15.0" fill="rgb(239,14,43)" rx="2" ry="2" />
<text x="1088.21" y="1279.5" ></text>
</g>
<g >
<title>[dash] (8 samples, 0.03%)</title><rect x="1094.0" y="1285" width="0.4" height="15.0" fill="rgb(211,192,30)" rx="2" ry="2" />
<text x="1097.04" y="1295.5" ></text>
</g>
<g >
<title>proc_root_readdir (3 samples, 0.01%)</title><rect x="1068.1" y="1205" width="0.1" height="15.0" fill="rgb(217,158,37)" rx="2" ry="2" />
<text x="1071.12" y="1215.5" ></text>
</g>
<g >
<title>rcu_needs_cpu (3 samples, 0.01%)</title><rect x="1171.4" y="1189" width="0.1" height="15.0" fill="rgb(244,182,11)" rx="2" ry="2" />
<text x="1174.35" y="1199.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="203.4" y="965" width="0.1" height="15.0" fill="rgb(248,57,7)" rx="2" ry="2" />
<text x="206.36" y="975.5" ></text>
</g>
<g >
<title>[unknown] (10 samples, 0.03%)</title><rect x="1180.5" y="1237" width="0.4" height="15.0" fill="rgb(245,59,25)" rx="2" ry="2" />
<text x="1183.54" y="1247.5" ></text>
</g>
<g >
<title>DB::ColumnString::~ColumnString (7 samples, 0.02%)</title><rect x="229.9" y="1109" width="0.3" height="15.0" fill="rgb(238,151,19)" rx="2" ry="2" />
<text x="232.87" y="1119.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (5 samples, 0.02%)</title><rect x="181.5" y="1093" width="0.2" height="15.0" fill="rgb(246,177,25)" rx="2" ry="2" />
<text x="184.48" y="1103.5" ></text>
</g>
<g >
<title>schedule (13 samples, 0.04%)</title><rect x="1089.1" y="1253" width="0.5" height="15.0" fill="rgb(229,129,0)" rx="2" ry="2" />
<text x="1092.09" y="1263.5" ></text>
</g>
<g >
<title>do_group_exit (3 samples, 0.01%)</title><rect x="1094.6" y="1253" width="0.1" height="15.0" fill="rgb(217,161,19)" rx="2" ry="2" />
<text x="1097.56" y="1263.5" ></text>
</g>
<g >
<title>__se_sys_newstat (4 samples, 0.01%)</title><rect x="1039.0" y="997" width="0.2" height="15.0" fill="rgb(246,204,27)" rx="2" ry="2" />
<text x="1042.01" y="1007.5" ></text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (24 samples, 0.08%)</title><rect x="1042.0" y="1077" width="1.0" height="15.0" fill="rgb(219,52,3)" rx="2" ry="2" />
<text x="1045.05" y="1087.5" ></text>
</g>
<g >
<title>walk_component (3 samples, 0.01%)</title><rect x="1069.5" y="1173" width="0.1" height="15.0" fill="rgb(249,160,23)" rx="2" ry="2" />
<text x="1072.52" y="1183.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (20 samples, 0.07%)</title><rect x="90.6" y="933" width="0.8" height="15.0" fill="rgb(247,159,3)" rx="2" ry="2" />
<text x="93.63" y="943.5" ></text>
</g>
<g >
<title>core_sys_select (4 samples, 0.01%)</title><rect x="1094.9" y="1205" width="0.1" height="15.0" fill="rgb(238,62,12)" rx="2" ry="2" />
<text x="1097.88" y="1215.5" ></text>
</g>
<g >
<title>__madvise (3 samples, 0.01%)</title><rect x="232.3" y="981" width="0.1" height="15.0" fill="rgb(245,206,50)" rx="2" ry="2" />
<text x="235.27" y="991.5" ></text>
</g>
<g >
<title>native_write_msr (4 samples, 0.01%)</title><rect x="1085.3" y="933" width="0.1" height="15.0" fill="rgb(216,70,49)" rx="2" ry="2" />
<text x="1088.25" y="943.5" ></text>
</g>
<g >
<title>pick_next_task_fair (13 samples, 0.04%)</title><rect x="1082.3" y="1221" width="0.6" height="15.0" fill="rgb(241,38,13)" rx="2" ry="2" />
<text x="1085.34" y="1231.5" ></text>
</g>
<g >
<title>DB::MergeTreeRangeReader::DelayedStream::finalize (985 samples, 3.33%)</title><rect x="997.8" y="1077" width="39.3" height="15.0" fill="rgb(249,44,24)" rx="2" ry="2" />
<text x="1000.80" y="1087.5" >DB:..</text>
</g>
<g >
<title>std::_Sp_counted_base&lt; (15 samples, 0.05%)</title><rect x="1042.4" y="949" width="0.6" height="15.0" fill="rgb(214,176,53)" rx="2" ry="2" />
<text x="1045.41" y="959.5" ></text>
</g>
<g >
<title>memcpy (48 samples, 0.16%)</title><rect x="201.6" y="1029" width="1.9" height="15.0" fill="rgb(223,144,10)" rx="2" ry="2" />
<text x="204.60" y="1039.5" ></text>
</g>
<g >
<title>AsyncBlockInput (2,133 samples, 7.22%)</title><rect x="10.0" y="1317" width="85.2" height="15.0" fill="rgb(230,5,29)" rx="2" ry="2" />
<text x="13.00" y="1327.5" >AsyncBlock..</text>
</g>
<g >
<title>__vma_adjust (3 samples, 0.01%)</title><rect x="1187.3" y="1173" width="0.1" height="15.0" fill="rgb(254,165,29)" rx="2" ry="2" />
<text x="1190.32" y="1183.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (22 samples, 0.07%)</title><rect x="1166.9" y="1173" width="0.9" height="15.0" fill="rgb(228,143,21)" rx="2" ry="2" />
<text x="1169.88" y="1183.5" ></text>
</g>
<g >
<title>do_sys_open (6 samples, 0.02%)</title><rect x="1038.6" y="949" width="0.2" height="15.0" fill="rgb(216,9,41)" rx="2" ry="2" />
<text x="1041.57" y="959.5" ></text>
</g>
<g >
<title>dbs_work_handler (3 samples, 0.01%)</title><rect x="1081.7" y="1237" width="0.1" height="15.0" fill="rgb(223,127,19)" rx="2" ry="2" />
<text x="1084.70" y="1247.5" ></text>
</g>
<g >
<title>unmap_page_range (6 samples, 0.02%)</title><rect x="1054.4" y="1109" width="0.3" height="15.0" fill="rgb(217,149,15)" rx="2" ry="2" />
<text x="1057.43" y="1119.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (3 samples, 0.01%)</title><rect x="1037.9" y="741" width="0.1" height="15.0" fill="rgb(239,27,18)" rx="2" ry="2" />
<text x="1040.85" y="751.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (31 samples, 0.10%)</title><rect x="210.7" y="773" width="1.2" height="15.0" fill="rgb(220,158,37)" rx="2" ry="2" />
<text x="213.67" y="783.5" ></text>
</g>
<g >
<title>n_tty_receive_buf_common (5 samples, 0.02%)</title><rect x="1083.4" y="1205" width="0.2" height="15.0" fill="rgb(234,10,19)" rx="2" ry="2" />
<text x="1086.42" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="998.2" y="1029" width="0.2" height="15.0" fill="rgb(242,117,28)" rx="2" ry="2" />
<text x="1001.20" y="1039.5" ></text>
</g>
<g >
<title>do_group_exit (9 samples, 0.03%)</title><rect x="1053.9" y="1253" width="0.4" height="15.0" fill="rgb(252,72,46)" rx="2" ry="2" />
<text x="1056.91" y="1263.5" ></text>
</g>
<g >
<title>ovl_permission (3 samples, 0.01%)</title><rect x="1039.0" y="901" width="0.1" height="15.0" fill="rgb(240,213,25)" rx="2" ry="2" />
<text x="1042.01" y="911.5" ></text>
</g>
<g >
<title>kmem_cache_free (3 samples, 0.01%)</title><rect x="1060.5" y="1109" width="0.2" height="15.0" fill="rgb(239,145,47)" rx="2" ry="2" />
<text x="1063.54" y="1119.5" ></text>
</g>
<g >
<title>task_work_run (5 samples, 0.02%)</title><rect x="1043.3" y="1077" width="0.2" height="15.0" fill="rgb(205,109,49)" rx="2" ry="2" />
<text x="1046.28" y="1087.5" ></text>
</g>
<g >
<title>vfs_read (32 samples, 0.11%)</title><rect x="1014.8" y="869" width="1.2" height="15.0" fill="rgb(240,165,19)" rx="2" ry="2" />
<text x="1017.77" y="879.5" ></text>
</g>
<g >
<title>handle_mm_fault (9 samples, 0.03%)</title><rect x="30.1" y="869" width="0.4" height="15.0" fill="rgb(206,116,7)" rx="2" ry="2" />
<text x="33.13" y="879.5" ></text>
</g>
<g >
<title>copy_user_generic_string (6 samples, 0.02%)</title><rect x="1055.5" y="1157" width="0.2" height="15.0" fill="rgb(232,94,40)" rx="2" ry="2" />
<text x="1058.46" y="1167.5" ></text>
</g>
<g >
<title>ep_item_poll (3 samples, 0.01%)</title><rect x="1044.2" y="1077" width="0.2" height="15.0" fill="rgb(207,49,53)" rx="2" ry="2" />
<text x="1047.24" y="1087.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (5 samples, 0.02%)</title><rect x="1031.1" y="837" width="0.2" height="15.0" fill="rgb(224,109,28)" rx="2" ry="2" />
<text x="1034.06" y="847.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.04%)</title><rect x="1052.3" y="1237" width="0.4" height="15.0" fill="rgb(249,101,13)" rx="2" ry="2" />
<text x="1055.31" y="1247.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3 samples, 0.01%)</title><rect x="203.4" y="917" width="0.1" height="15.0" fill="rgb(254,66,9)" rx="2" ry="2" />
<text x="206.36" y="927.5" ></text>
</g>
<g >
<title>copy_user_generic_string (50 samples, 0.17%)</title><rect x="1005.5" y="789" width="2.0" height="15.0" fill="rgb(213,23,40)" rx="2" ry="2" />
<text x="1008.55" y="799.5" ></text>
</g>
<g >
<title>smp_call_function_many (3 samples, 0.01%)</title><rect x="204.8" y="789" width="0.1" height="15.0" fill="rgb(237,148,2)" rx="2" ry="2" />
<text x="207.76" y="799.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="230.5" y="1061" width="0.2" height="15.0" fill="rgb(236,206,44)" rx="2" ry="2" />
<text x="233.51" y="1071.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (3 samples, 0.01%)</title><rect x="1010.7" y="981" width="0.2" height="15.0" fill="rgb(230,61,26)" rx="2" ry="2" />
<text x="1013.74" y="991.5" ></text>
</g>
<g >
<title>__alloc_skb (3 samples, 0.01%)</title><rect x="1059.1" y="1173" width="0.1" height="15.0" fill="rgb(230,210,48)" rx="2" ry="2" />
<text x="1062.10" y="1183.5" ></text>
</g>
<g >
<title>ConfigReloader (13 samples, 0.04%)</title><rect x="95.5" y="1317" width="0.5" height="15.0" fill="rgb(218,47,32)" rx="2" ry="2" />
<text x="98.50" y="1327.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::execute (61 samples, 0.21%)</title><rect x="10.4" y="965" width="2.4" height="15.0" fill="rgb(243,11,42)" rx="2" ry="2" />
<text x="13.40" y="975.5" ></text>
</g>
<g >
<title>alloc_empty_file (3 samples, 0.01%)</title><rect x="1069.1" y="1189" width="0.1" height="15.0" fill="rgb(206,148,17)" rx="2" ry="2" />
<text x="1072.12" y="1199.5" ></text>
</g>
<g >
<title>kthread (155 samples, 0.52%)</title><rect x="1085.6" y="1285" width="6.2" height="15.0" fill="rgb(212,27,22)" rx="2" ry="2" />
<text x="1088.57" y="1295.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="1094.1" y="1237" width="0.2" height="15.0" fill="rgb(240,96,19)" rx="2" ry="2" />
<text x="1097.08" y="1247.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3 samples, 0.01%)</title><rect x="1072.5" y="1221" width="0.1" height="15.0" fill="rgb(215,189,11)" rx="2" ry="2" />
<text x="1075.52" y="1231.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="1061.5" y="1093" width="0.2" height="15.0" fill="rgb(234,152,32)" rx="2" ry="2" />
<text x="1064.49" y="1103.5" ></text>
</g>
<g >
<title>calc_load_nohz_stop (3 samples, 0.01%)</title><rect x="1173.9" y="1205" width="0.2" height="15.0" fill="rgb(246,144,12)" rx="2" ry="2" />
<text x="1176.95" y="1215.5" ></text>
</g>
<g >
<title>update_nohz_stats (45 samples, 0.15%)</title><rect x="1064.4" y="1061" width="1.8" height="15.0" fill="rgb(237,128,27)" rx="2" ry="2" />
<text x="1067.45" y="1071.5" ></text>
</g>
<g >
<title>dequeue_entity (4 samples, 0.01%)</title><rect x="1057.5" y="1029" width="0.2" height="15.0" fill="rgb(225,167,20)" rx="2" ry="2" />
<text x="1060.50" y="1039.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (5 samples, 0.02%)</title><rect x="91.7" y="917" width="0.2" height="15.0" fill="rgb(248,106,5)" rx="2" ry="2" />
<text x="94.70" y="927.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::MergeTreeReaderStream (4 samples, 0.01%)</title><rect x="1038.4" y="1045" width="0.2" height="15.0" fill="rgb(209,147,24)" rx="2" ry="2" />
<text x="1041.41" y="1055.5" ></text>
</g>
<g >
<title>mv (36 samples, 0.12%)</title><rect x="1083.8" y="1317" width="1.4" height="15.0" fill="rgb(210,157,21)" rx="2" ry="2" />
<text x="1086.78" y="1327.5" ></text>
</g>
<g >
<title>update_blocked_averages (13 samples, 0.04%)</title><rect x="1074.3" y="1157" width="0.5" height="15.0" fill="rgb(220,133,26)" rx="2" ry="2" />
<text x="1077.31" y="1167.5" ></text>
</g>
<g >
<title>handle_mm_fault (5 samples, 0.02%)</title><rect x="74.3" y="837" width="0.2" height="15.0" fill="rgb(219,193,22)" rx="2" ry="2" />
<text x="77.25" y="847.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="230.0" y="1029" width="0.1" height="15.0" fill="rgb(252,75,32)" rx="2" ry="2" />
<text x="232.95" y="1039.5" ></text>
</g>
<g >
<title>enqueue_entity (8 samples, 0.03%)</title><rect x="1108.1" y="981" width="0.3" height="15.0" fill="rgb(243,78,5)" rx="2" ry="2" />
<text x="1111.10" y="991.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (48 samples, 0.16%)</title><rect x="210.6" y="1013" width="1.9" height="15.0" fill="rgb(233,2,17)" rx="2" ry="2" />
<text x="213.59" y="1023.5" ></text>
</g>
<g >
<title>arena_ralloc (11 samples, 0.04%)</title><rect x="1011.2" y="917" width="0.4" height="15.0" fill="rgb(252,164,37)" rx="2" ry="2" />
<text x="1014.18" y="927.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionImpl::defaultImplementationForConstantArguments (11 samples, 0.04%)</title><rect x="213.3" y="1077" width="0.5" height="15.0" fill="rgb(215,117,41)" rx="2" ry="2" />
<text x="216.34" y="1087.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (11 samples, 0.04%)</title><rect x="1185.2" y="1109" width="0.4" height="15.0" fill="rgb(219,99,34)" rx="2" ry="2" />
<text x="1188.21" y="1119.5" ></text>
</g>
<g >
<title>__sched_text_start (9 samples, 0.03%)</title><rect x="1081.9" y="1237" width="0.3" height="15.0" fill="rgb(240,153,22)" rx="2" ry="2" />
<text x="1084.86" y="1247.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (4 samples, 0.01%)</title><rect x="79.5" y="693" width="0.2" height="15.0" fill="rgb(242,139,46)" rx="2" ry="2" />
<text x="82.52" y="703.5" ></text>
</g>
<g >
<title>__sched_text_start (14 samples, 0.05%)</title><rect x="1082.3" y="1237" width="0.6" height="15.0" fill="rgb(250,71,29)" rx="2" ry="2" />
<text x="1085.30" y="1247.5" ></text>
</g>
<g >
<title>__se_sys_madvise (8 samples, 0.03%)</title><rect x="182.8" y="965" width="0.3" height="15.0" fill="rgb(224,34,32)" rx="2" ry="2" />
<text x="185.79" y="975.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="96.2" y="1109" width="0.1" height="15.0" fill="rgb(228,196,41)" rx="2" ry="2" />
<text x="99.22" y="1119.5" ></text>
</g>
<g >
<title>DB::CreatingSetsBlockInputStream::readPrefixImpl (2,127 samples, 7.20%)</title><rect x="10.2" y="1125" width="84.9" height="15.0" fill="rgb(206,24,13)" rx="2" ry="2" />
<text x="13.20" y="1135.5" >DB::Creat..</text>
</g>
<g >
<title>__GI___libc_read (32 samples, 0.11%)</title><rect x="1014.8" y="933" width="1.2" height="15.0" fill="rgb(253,121,23)" rx="2" ry="2" />
<text x="1017.77" y="943.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1057.2" y="1157" width="0.1" height="15.0" fill="rgb(208,136,10)" rx="2" ry="2" />
<text x="1060.18" y="1167.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="1052.2" y="1253" width="0.1" height="15.0" fill="rgb(225,192,39)" rx="2" ry="2" />
<text x="1055.19" y="1263.5" ></text>
</g>
<g >
<title>free (3 samples, 0.01%)</title><rect x="991.7" y="1077" width="0.1" height="15.0" fill="rgb(253,172,24)" rx="2" ry="2" />
<text x="994.73" y="1087.5" ></text>
</g>
<g >
<title>flush_old_exec (11 samples, 0.04%)</title><rect x="1054.3" y="1173" width="0.4" height="15.0" fill="rgb(242,38,4)" rx="2" ry="2" />
<text x="1057.27" y="1183.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (9 samples, 0.03%)</title><rect x="1059.4" y="1109" width="0.3" height="15.0" fill="rgb(223,83,45)" rx="2" ry="2" />
<text x="1062.38" y="1119.5" ></text>
</g>
<g >
<title>set_next_entity (9 samples, 0.03%)</title><rect x="1173.1" y="1189" width="0.4" height="15.0" fill="rgb(249,25,17)" rx="2" ry="2" />
<text x="1176.11" y="1199.5" ></text>
</g>
<g >
<title>path_openat (6 samples, 0.02%)</title><rect x="1053.3" y="1205" width="0.3" height="15.0" fill="rgb(217,215,7)" rx="2" ry="2" />
<text x="1056.35" y="1215.5" ></text>
</g>
<g >
<title>sched_exec (4 samples, 0.01%)</title><rect x="1052.5" y="1173" width="0.2" height="15.0" fill="rgb(232,77,15)" rx="2" ry="2" />
<text x="1055.55" y="1183.5" ></text>
</g>
<g >
<title>ptep_clear_flush (6 samples, 0.02%)</title><rect x="1035.7" y="581" width="0.2" height="15.0" fill="rgb(250,184,15)" rx="2" ry="2" />
<text x="1038.66" y="591.5" ></text>
</g>
<g >
<title>unmap_region (5 samples, 0.02%)</title><rect x="1042.2" y="757" width="0.2" height="15.0" fill="rgb(208,137,43)" rx="2" ry="2" />
<text x="1045.21" y="767.5" ></text>
</g>
<g >
<title>alloc_pages_vma (4 samples, 0.01%)</title><rect x="30.2" y="837" width="0.2" height="15.0" fill="rgb(218,78,29)" rx="2" ry="2" />
<text x="33.21" y="847.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="182.8" y="1045" width="0.3" height="15.0" fill="rgb(221,69,10)" rx="2" ry="2" />
<text x="185.79" y="1055.5" ></text>
</g>
<g >
<title>shmem_getpage (29 samples, 0.10%)</title><rect x="1007.5" y="821" width="1.2" height="15.0" fill="rgb(229,65,30)" rx="2" ry="2" />
<text x="1010.54" y="831.5" ></text>
</g>
<g >
<title>unmap_page_range (4 samples, 0.01%)</title><rect x="10.2" y="805" width="0.2" height="15.0" fill="rgb(241,218,50)" rx="2" ry="2" />
<text x="13.24" y="815.5" ></text>
</g>
<g >
<title>hrtimer_cancel (4 samples, 0.01%)</title><rect x="1174.1" y="1205" width="0.1" height="15.0" fill="rgb(231,71,34)" rx="2" ry="2" />
<text x="1177.07" y="1215.5" ></text>
</g>
<g >
<title>do_wp_page (19 samples, 0.06%)</title><rect x="1179.7" y="1205" width="0.8" height="15.0" fill="rgb(248,172,29)" rx="2" ry="2" />
<text x="1182.70" y="1215.5" ></text>
</g>
<g >
<title>__se_sys_epoll_ctl (9 samples, 0.03%)</title><rect x="1061.9" y="1205" width="0.4" height="15.0" fill="rgb(246,72,30)" rx="2" ry="2" />
<text x="1064.89" y="1215.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.05%)</title><rect x="1043.5" y="1109" width="0.5" height="15.0" fill="rgb(216,80,25)" rx="2" ry="2" />
<text x="1046.48" y="1119.5" ></text>
</g>
<g >
<title>inode_permission (3 samples, 0.01%)</title><rect x="1039.8" y="933" width="0.2" height="15.0" fill="rgb(227,88,50)" rx="2" ry="2" />
<text x="1042.85" y="943.5" ></text>
</g>
<g >
<title>large_dalloc (9 samples, 0.03%)</title><rect x="204.4" y="1013" width="0.3" height="15.0" fill="rgb(254,182,49)" rx="2" ry="2" />
<text x="207.36" y="1023.5" ></text>
</g>
<g >
<title>acpi_idle_enter (1,046 samples, 3.54%)</title><rect x="1113.8" y="1221" width="41.7" height="15.0" fill="rgb(220,171,31)" rx="2" ry="2" />
<text x="1116.77" y="1231.5" >acp..</text>
</g>
<g >
<title>migrate_misplaced_page (3 samples, 0.01%)</title><rect x="1001.7" y="869" width="0.1" height="15.0" fill="rgb(217,9,30)" rx="2" ry="2" />
<text x="1004.67" y="879.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::CompressedReadBufferFromFile (3 samples, 0.01%)</title><rect x="1038.4" y="1029" width="0.1" height="15.0" fill="rgb(217,27,50)" rx="2" ry="2" />
<text x="1041.41" y="1039.5" ></text>
</g>
<g >
<title>poll_schedule_timeout.constprop.5 (4 samples, 0.01%)</title><rect x="1067.4" y="1157" width="0.2" height="15.0" fill="rgb(206,42,41)" rx="2" ry="2" />
<text x="1070.40" y="1167.5" ></text>
</g>
<g >
<title>DB::PODArrayBase&lt;8ul, 4096ul, AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;, 15ul, 16ul&gt;::reserveForNextSize&lt;&gt; (5 samples, 0.02%)</title><rect x="32.4" y="789" width="0.2" height="15.0" fill="rgb(206,75,53)" rx="2" ry="2" />
<text x="35.36" y="799.5" ></text>
</g>
<g >
<title>DB::MergeTreeReaderStream::seekToMark (54 samples, 0.18%)</title><rect x="1023.4" y="981" width="2.2" height="15.0" fill="rgb(215,55,29)" rx="2" ry="2" />
<text x="1026.40" y="991.5" ></text>
</g>
<g >
<title>memcpy (4 samples, 0.01%)</title><rect x="195.2" y="1077" width="0.2" height="15.0" fill="rgb(205,107,2)" rx="2" ry="2" />
<text x="198.21" y="1087.5" ></text>
</g>
<g >
<title>do_epoll_create (4 samples, 0.01%)</title><rect x="1057.2" y="1125" width="0.1" height="15.0" fill="rgb(215,130,6)" rx="2" ry="2" />
<text x="1060.18" y="1135.5" ></text>
</g>
<g >
<title>do_wp_page (37 samples, 0.13%)</title><rect x="27.1" y="837" width="1.5" height="15.0" fill="rgb(232,35,4)" rx="2" ry="2" />
<text x="30.13" y="847.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="96.1" y="1141" width="0.1" height="15.0" fill="rgb(208,167,39)" rx="2" ry="2" />
<text x="99.06" y="1151.5" ></text>
</g>
<g >
<title>arena_decay (4 samples, 0.01%)</title><rect x="1037.9" y="901" width="0.1" height="15.0" fill="rgb(253,80,7)" rx="2" ry="2" />
<text x="1040.85" y="911.5" ></text>
</g>
<g >
<title>arena_decay (8 samples, 0.03%)</title><rect x="182.8" y="1077" width="0.3" height="15.0" fill="rgb(220,97,17)" rx="2" ry="2" />
<text x="185.79" y="1087.5" ></text>
</g>
<g >
<title>kworker/62:0-ev (25 samples, 0.08%)</title><rect x="1080.6" y="1317" width="1.0" height="15.0" fill="rgb(236,67,14)" rx="2" ry="2" />
<text x="1083.58" y="1327.5" ></text>
</g>
<g >
<title>release_pages (8 samples, 0.03%)</title><rect x="79.5" y="725" width="0.3" height="15.0" fill="rgb(221,126,22)" rx="2" ry="2" />
<text x="82.48" y="735.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1069.9" y="1269" width="0.3" height="15.0" fill="rgb(211,179,21)" rx="2" ry="2" />
<text x="1072.92" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1057.2" y="1173" width="0.1" height="15.0" fill="rgb(209,24,16)" rx="2" ry="2" />
<text x="1060.18" y="1183.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::nextImpl (46 samples, 0.16%)</title><rect x="1012.0" y="1013" width="1.8" height="15.0" fill="rgb(208,38,3)" rx="2" ry="2" />
<text x="1014.98" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="204.7" y="901" width="0.3" height="15.0" fill="rgb(232,208,9)" rx="2" ry="2" />
<text x="207.72" y="911.5" ></text>
</g>
<g >
<title>DB::Aggregator::executeOnBlock (456 samples, 1.54%)</title><rect x="12.8" y="949" width="18.2" height="15.0" fill="rgb(232,108,4)" rx="2" ry="2" />
<text x="15.84" y="959.5" ></text>
</g>
<g >
<title>kthread (52 samples, 0.18%)</title><rect x="1072.9" y="1285" width="2.1" height="15.0" fill="rgb(217,89,35)" rx="2" ry="2" />
<text x="1075.87" y="1295.5" ></text>
</g>
<g >
<title>__madvise (3 samples, 0.01%)</title><rect x="985.8" y="901" width="0.1" height="15.0" fill="rgb(235,72,37)" rx="2" ry="2" />
<text x="988.82" y="911.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.01%)</title><rect x="203.4" y="997" width="0.1" height="15.0" fill="rgb(230,55,3)" rx="2" ry="2" />
<text x="206.36" y="1007.5" ></text>
</g>
<g >
<title>process_one_work (5 samples, 0.02%)</title><rect x="1075.4" y="1253" width="0.2" height="15.0" fill="rgb(211,110,50)" rx="2" ry="2" />
<text x="1078.39" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (4 samples, 0.01%)</title><rect x="182.6" y="1045" width="0.1" height="15.0" fill="rgb(234,133,35)" rx="2" ry="2" />
<text x="185.55" y="1055.5" ></text>
</g>
<g >
<title>try_to_wake_up (3 samples, 0.01%)</title><rect x="1083.5" y="1141" width="0.1" height="15.0" fill="rgb(252,53,41)" rx="2" ry="2" />
<text x="1086.50" y="1151.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (3 samples, 0.01%)</title><rect x="95.0" y="1045" width="0.1" height="15.0" fill="rgb(205,141,40)" rx="2" ry="2" />
<text x="98.02" y="1055.5" ></text>
</g>
<g >
<title>mmput (11 samples, 0.04%)</title><rect x="1054.3" y="1157" width="0.4" height="15.0" fill="rgb(219,115,30)" rx="2" ry="2" />
<text x="1057.27" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="230.6" y="1013" width="0.1" height="15.0" fill="rgb(240,96,42)" rx="2" ry="2" />
<text x="233.55" y="1023.5" ></text>
</g>
<g >
<title>vm_munmap (4 samples, 0.01%)</title><rect x="10.2" y="869" width="0.2" height="15.0" fill="rgb(253,32,46)" rx="2" ry="2" />
<text x="13.24" y="879.5" ></text>
</g>
<g >
<title>vm_munmap (11 samples, 0.04%)</title><rect x="79.4" y="821" width="0.4" height="15.0" fill="rgb(221,4,28)" rx="2" ry="2" />
<text x="82.36" y="831.5" ></text>
</g>
<g >
<title>worker_thread (23 samples, 0.08%)</title><rect x="1080.7" y="1269" width="0.9" height="15.0" fill="rgb(223,195,22)" rx="2" ry="2" />
<text x="1083.66" y="1279.5" ></text>
</g>
<g >
<title>sync_regs (5 samples, 0.02%)</title><rect x="25.3" y="885" width="0.2" height="15.0" fill="rgb(228,211,14)" rx="2" ry="2" />
<text x="28.25" y="895.5" ></text>
</g>
<g >
<title>DB::ExpressionActions::execute (19,178 samples, 64.90%)</title><rect x="230.8" y="1157" width="765.9" height="15.0" fill="rgb(216,97,52)" rx="2" ry="2" />
<text x="233.83" y="1167.5" >DB::ExpressionActions::execute</text>
</g>
<g >
<title>do_IRQ (31 samples, 0.10%)</title><rect x="1166.6" y="1205" width="1.2" height="15.0" fill="rgb(244,196,47)" rx="2" ry="2" />
<text x="1169.56" y="1215.5" ></text>
</g>
<g >
<title>page_fault (10 samples, 0.03%)</title><rect x="1181.3" y="1253" width="0.4" height="15.0" fill="rgb(208,30,14)" rx="2" ry="2" />
<text x="1184.25" y="1263.5" ></text>
</g>
<g >
<title>__queue_work (8 samples, 0.03%)</title><rect x="988.6" y="933" width="0.3" height="15.0" fill="rgb(233,118,39)" rx="2" ry="2" />
<text x="991.57" y="943.5" ></text>
</g>
<g >
<title>LZ4::decompress (21 samples, 0.07%)</title><rect x="1031.7" y="917" width="0.8" height="15.0" fill="rgb(220,7,8)" rx="2" ry="2" />
<text x="1034.70" y="927.5" ></text>
</g>
<g >
<title>DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt;::insertResultInto (21 samples, 0.07%)</title><rect x="73.7" y="885" width="0.8" height="15.0" fill="rgb(242,12,26)" rx="2" ry="2" />
<text x="76.65" y="895.5" ></text>
</g>
<g >
<title>DB::PartialSortingBlockInputStream::~PartialSortingBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="1061" width="1.0" height="15.0" fill="rgb(235,21,4)" rx="2" ry="2" />
<text x="1045.05" y="1071.5" ></text>
</g>
<g >
<title>Poco::ThreadImpl::runnableEntry (175 samples, 0.59%)</title><rect x="1059.8" y="1285" width="7.0" height="15.0" fill="rgb(223,105,16)" rx="2" ry="2" />
<text x="1062.82" y="1295.5" ></text>
</g>
<g >
<title>__se_sys_madvise (3 samples, 0.01%)</title><rect x="230.6" y="981" width="0.1" height="15.0" fill="rgb(227,77,27)" rx="2" ry="2" />
<text x="233.55" y="991.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (227 samples, 0.77%)</title><rect x="70.7" y="965" width="9.1" height="15.0" fill="rgb(212,55,36)" rx="2" ry="2" />
<text x="73.74" y="975.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (15 samples, 0.05%)</title><rect x="1049.5" y="1301" width="0.6" height="15.0" fill="rgb(229,216,30)" rx="2" ry="2" />
<text x="1052.51" y="1311.5" ></text>
</g>
<g >
<title>interrupt_entry (19 samples, 0.06%)</title><rect x="991.8" y="1077" width="0.8" height="15.0" fill="rgb(219,77,23)" rx="2" ry="2" />
<text x="994.85" y="1087.5" ></text>
</g>
<g >
<title>net_rx_action (8 samples, 0.03%)</title><rect x="1059.4" y="1045" width="0.3" height="15.0" fill="rgb(243,100,52)" rx="2" ry="2" />
<text x="1062.42" y="1055.5" ></text>
</g>
<g >
<title>shmem_file_read_iter (42 samples, 0.14%)</title><rect x="1023.8" y="773" width="1.7" height="15.0" fill="rgb(232,10,31)" rx="2" ry="2" />
<text x="1026.80" y="783.5" ></text>
</g>
<g >
<title>calloc (11 samples, 0.04%)</title><rect x="97.8" y="1157" width="0.4" height="15.0" fill="rgb(211,133,28)" rx="2" ry="2" />
<text x="100.77" y="1167.5" ></text>
</g>
<g >
<title>page_fault (5 samples, 0.02%)</title><rect x="203.3" y="1013" width="0.2" height="15.0" fill="rgb(245,215,26)" rx="2" ry="2" />
<text x="206.32" y="1023.5" ></text>
</g>
<g >
<title>update_ts_time_stats (4 samples, 0.01%)</title><rect x="1102.0" y="1157" width="0.2" height="15.0" fill="rgb(221,56,45)" rx="2" ry="2" />
<text x="1105.03" y="1167.5" ></text>
</g>
<g >
<title>DB::TCPHandler::run (95 samples, 0.32%)</title><rect x="1042.0" y="1221" width="3.8" height="15.0" fill="rgb(205,162,6)" rx="2" ry="2" />
<text x="1045.05" y="1231.5" ></text>
</g>
<g >
<title>page_fault (4 samples, 0.01%)</title><rect x="206.8" y="1013" width="0.1" height="15.0" fill="rgb(207,22,24)" rx="2" ry="2" />
<text x="209.75" y="1023.5" ></text>
</g>
<g >
<title>munmap (3 samples, 0.01%)</title><rect x="95.0" y="1093" width="0.1" height="15.0" fill="rgb(218,13,3)" rx="2" ry="2" />
<text x="98.02" y="1103.5" ></text>
</g>
<g >
<title>handle_mm_fault (3 samples, 0.01%)</title><rect x="1187.6" y="1237" width="0.2" height="15.0" fill="rgb(223,48,42)" rx="2" ry="2" />
<text x="1190.64" y="1247.5" ></text>
</g>
<g >
<title>do_execve (4 samples, 0.01%)</title><rect x="1184.8" y="1221" width="0.2" height="15.0" fill="rgb(253,34,49)" rx="2" ry="2" />
<text x="1187.81" y="1231.5" ></text>
</g>
<g >
<title>[clickhouse] (48 samples, 0.16%)</title><rect x="1014.2" y="1013" width="1.9" height="15.0" fill="rgb(215,142,39)" rx="2" ry="2" />
<text x="1017.17" y="1023.5" ></text>
</g>
<g >
<title>tick_irq_enter (3 samples, 0.01%)</title><rect x="1166.4" y="1173" width="0.1" height="15.0" fill="rgb(216,8,1)" rx="2" ry="2" />
<text x="1169.40" y="1183.5" ></text>
</g>
<g >
<title>worker_thread (14 samples, 0.05%)</title><rect x="1076.8" y="1269" width="0.6" height="15.0" fill="rgb(230,19,53)" rx="2" ry="2" />
<text x="1079.83" y="1279.5" ></text>
</g>
<g >
<title>do_syscall_64 (32 samples, 0.11%)</title><rect x="1014.8" y="901" width="1.2" height="15.0" fill="rgb(251,80,31)" rx="2" ry="2" />
<text x="1017.77" y="911.5" ></text>
</g>
<g >
<title>schedule (9 samples, 0.03%)</title><rect x="1081.9" y="1253" width="0.3" height="15.0" fill="rgb(253,81,20)" rx="2" ry="2" />
<text x="1084.86" y="1263.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (3 samples, 0.01%)</title><rect x="988.7" y="869" width="0.2" height="15.0" fill="rgb(239,214,38)" rx="2" ry="2" />
<text x="991.73" y="879.5" ></text>
</g>
<g >
<title>ksys_read (5 samples, 0.02%)</title><rect x="1031.1" y="933" width="0.2" height="15.0" fill="rgb(249,31,15)" rx="2" ry="2" />
<text x="1034.06" y="943.5" ></text>
</g>
<g >
<title>__x64_sys_munmap (5 samples, 0.02%)</title><rect x="1042.2" y="805" width="0.2" height="15.0" fill="rgb(236,166,40)" rx="2" ry="2" />
<text x="1045.21" y="815.5" ></text>
</g>
<g >
<title>od_dbs_update (3 samples, 0.01%)</title><rect x="1081.7" y="1221" width="0.1" height="15.0" fill="rgb(210,89,8)" rx="2" ry="2" />
<text x="1084.70" y="1231.5" ></text>
</g>
<g >
<title>DB::ParserVariableArityOperatorList::parseImpl (28 samples, 0.09%)</title><rect x="210.7" y="709" width="1.2" height="15.0" fill="rgb(218,83,11)" rx="2" ry="2" />
<text x="213.75" y="719.5" ></text>
</g>
<g >
<title>page_remove_rmap (3 samples, 0.01%)</title><rect x="1186.3" y="1093" width="0.1" height="15.0" fill="rgb(221,140,28)" rx="2" ry="2" />
<text x="1189.29" y="1103.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::~IBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="1093" width="1.0" height="15.0" fill="rgb(209,40,3)" rx="2" ry="2" />
<text x="1045.05" y="1103.5" ></text>
</g>
<g >
<title>DB::IAggregateFunctionHelper&lt;DB::AggregateFunctionSum&lt;unsigned char, unsigned long, DB::AggregateFunctionSumData&lt;unsigned long&gt; &gt; &gt;::addFree (46 samples, 0.16%)</title><rect x="171.3" y="1189" width="1.9" height="15.0" fill="rgb(209,51,21)" rx="2" ry="2" />
<text x="174.33" y="1199.5" ></text>
</g>
<g >
<title>sigtimedwait (3 samples, 0.01%)</title><rect x="1058.8" y="1221" width="0.1" height="15.0" fill="rgb(222,61,13)" rx="2" ry="2" />
<text x="1061.78" y="1231.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (10 samples, 0.03%)</title><rect x="95.5" y="1285" width="0.4" height="15.0" fill="rgb(211,75,29)" rx="2" ry="2" />
<text x="98.50" y="1295.5" ></text>
</g>
<g >
<title>std::_Function_handler&lt;void (12 samples, 0.04%)</title><rect x="96.0" y="1237" width="0.5" height="15.0" fill="rgb(232,139,27)" rx="2" ry="2" />
<text x="99.02" y="1247.5" ></text>
</g>
<g >
<title>copy_page (7 samples, 0.02%)</title><rect x="1180.1" y="1173" width="0.2" height="15.0" fill="rgb(212,151,6)" rx="2" ry="2" />
<text x="1183.06" y="1183.5" ></text>
</g>
<g >
<title>read_tsc (3 samples, 0.01%)</title><rect x="1173.8" y="1205" width="0.1" height="15.0" fill="rgb(211,134,12)" rx="2" ry="2" />
<text x="1176.79" y="1215.5" ></text>
</g>
<g >
<title>Poco::PooledThread::run (95 samples, 0.32%)</title><rect x="1042.0" y="1269" width="3.8" height="15.0" fill="rgb(215,121,32)" rx="2" ry="2" />
<text x="1045.05" y="1279.5" ></text>
</g>
<g >
<title>__GI___libc_read (14 samples, 0.05%)</title><rect x="1022.5" y="965" width="0.6" height="15.0" fill="rgb(225,60,41)" rx="2" ry="2" />
<text x="1025.52" y="975.5" ></text>
</g>
<g >
<title>task_work_run (8 samples, 0.03%)</title><rect x="1056.8" y="1125" width="0.3" height="15.0" fill="rgb(242,31,25)" rx="2" ry="2" />
<text x="1059.82" y="1135.5" ></text>
</g>
<g >
<title>vfs_read (21 samples, 0.07%)</title><rect x="1055.0" y="1237" width="0.8" height="15.0" fill="rgb(249,137,27)" rx="2" ry="2" />
<text x="1057.98" y="1247.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="232.3" y="949" width="0.1" height="15.0" fill="rgb(244,100,38)" rx="2" ry="2" />
<text x="235.27" y="959.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="977.4" y="1013" width="0.1" height="15.0" fill="rgb(218,14,34)" rx="2" ry="2" />
<text x="980.39" y="1023.5" ></text>
</g>
<g >
<title>__se_sys_madvise (6 samples, 0.02%)</title><rect x="97.8" y="1013" width="0.3" height="15.0" fill="rgb(213,22,10)" rx="2" ry="2" />
<text x="100.81" y="1023.5" ></text>
</g>
<g >
<title>get_page_from_freelist (19 samples, 0.06%)</title><rect x="90.7" y="917" width="0.7" height="15.0" fill="rgb(237,113,48)" rx="2" ry="2" />
<text x="93.67" y="927.5" ></text>
</g>
<g >
<title>[libc-2.24.so] (41 samples, 0.14%)</title><rect x="1176.3" y="1301" width="1.6" height="15.0" fill="rgb(242,94,25)" rx="2" ry="2" />
<text x="1179.30" y="1311.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (8 samples, 0.03%)</title><rect x="1042.6" y="709" width="0.4" height="15.0" fill="rgb(251,105,7)" rx="2" ry="2" />
<text x="1045.64" y="719.5" ></text>
</g>
<g >
<title>arena_ralloc (71 samples, 0.24%)</title><rect x="200.7" y="1045" width="2.8" height="15.0" fill="rgb(224,96,42)" rx="2" ry="2" />
<text x="203.68" y="1055.5" ></text>
</g>
<g >
<title>DB::Client::receiveAndProcessPacket (15 samples, 0.05%)</title><rect x="1056.0" y="1221" width="0.6" height="15.0" fill="rgb(237,45,4)" rx="2" ry="2" />
<text x="1059.02" y="1231.5" ></text>
</g>
<g >
<title>kthread (23 samples, 0.08%)</title><rect x="1080.7" y="1285" width="0.9" height="15.0" fill="rgb(241,125,16)" rx="2" ry="2" />
<text x="1083.66" y="1295.5" ></text>
</g>
<g >
<title>flush_tlb_func_common.constprop.2 (3 samples, 0.01%)</title><rect x="979.2" y="1013" width="0.1" height="15.0" fill="rgb(250,41,36)" rx="2" ry="2" />
<text x="982.19" y="1023.5" ></text>
</g>
<g >
<title>DB::ThreadStatus::attachQuery (3 samples, 0.01%)</title><rect x="96.7" y="1221" width="0.1" height="15.0" fill="rgb(227,177,51)" rx="2" ry="2" />
<text x="99.70" y="1231.5" ></text>
</g>
<g >
<title>handle_irq_event_percpu (3 samples, 0.01%)</title><rect x="1166.6" y="1141" width="0.2" height="15.0" fill="rgb(217,36,27)" rx="2" ry="2" />
<text x="1169.64" y="1151.5" ></text>
</g>
<g >
<title>free (4 samples, 0.01%)</title><rect x="182.6" y="1093" width="0.1" height="15.0" fill="rgb(236,201,0)" rx="2" ry="2" />
<text x="185.55" y="1103.5" ></text>
</g>
<g >
<title>dbs_work_handler (6 samples, 0.02%)</title><rect x="1073.1" y="1237" width="0.2" height="15.0" fill="rgb(246,96,43)" rx="2" ry="2" />
<text x="1076.07" y="1247.5" ></text>
</g>
<g >
<title>__madvise (5 samples, 0.02%)</title><rect x="181.5" y="1077" width="0.2" height="15.0" fill="rgb(246,77,17)" rx="2" ry="2" />
<text x="184.48" y="1087.5" ></text>
</g>
<g >
<title>load_balance (11 samples, 0.04%)</title><rect x="1075.8" y="1205" width="0.5" height="15.0" fill="rgb(212,133,27)" rx="2" ry="2" />
<text x="1078.83" y="1215.5" ></text>
</g>
<g >
<title>ip6_input_finish (12 samples, 0.04%)</title><rect x="1046.7" y="917" width="0.5" height="15.0" fill="rgb(223,21,54)" rx="2" ry="2" />
<text x="1049.68" y="927.5" ></text>
</g>
<g >
<title>DB::ParserPrefixUnaryOperatorExpression::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="261" width="0.9" height="15.0" fill="rgb(254,203,37)" rx="2" ry="2" />
<text x="213.79" y="271.5" ></text>
</g>
<g >
<title>__se_sys_futex (5 samples, 0.02%)</title><rect x="1039.6" y="997" width="0.2" height="15.0" fill="rgb(238,47,41)" rx="2" ry="2" />
<text x="1042.65" y="1007.5" ></text>
</g>
<g >
<title>search_binary_handler (3 samples, 0.01%)</title><rect x="1093.6" y="1205" width="0.1" height="15.0" fill="rgb(240,180,26)" rx="2" ry="2" />
<text x="1096.56" y="1215.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="985.7" y="965" width="0.1" height="15.0" fill="rgb(214,134,13)" rx="2" ry="2" />
<text x="988.70" y="975.5" ></text>
</g>
<g >
<title>find_get_entry (4 samples, 0.01%)</title><rect x="1022.9" y="757" width="0.2" height="15.0" fill="rgb(205,87,53)" rx="2" ry="2" />
<text x="1025.92" y="767.5" ></text>
</g>
<g >
<title>do_sys_open (3 samples, 0.01%)</title><rect x="1038.4" y="949" width="0.1" height="15.0" fill="rgb(235,44,18)" rx="2" ry="2" />
<text x="1041.41" y="959.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="70.7" y="901" width="0.4" height="15.0" fill="rgb(213,84,49)" rx="2" ry="2" />
<text x="73.74" y="911.5" ></text>
</g>
<g >
<title>ep_free (12 samples, 0.04%)</title><rect x="1060.4" y="1141" width="0.5" height="15.0" fill="rgb(225,112,34)" rx="2" ry="2" />
<text x="1063.38" y="1151.5" ></text>
</g>
<g >
<title>DB::createReadBufferFromFileBase (5 samples, 0.02%)</title><rect x="1039.3" y="1029" width="0.2" height="15.0" fill="rgb(241,69,8)" rx="2" ry="2" />
<text x="1042.25" y="1039.5" ></text>
</g>
<g >
<title>LZ4::decompress (8 samples, 0.03%)</title><rect x="1014.3" y="917" width="0.4" height="15.0" fill="rgb(253,199,50)" rx="2" ry="2" />
<text x="1017.33" y="927.5" ></text>
</g>
<g >
<title>tcache_bin_flush_small (3 samples, 0.01%)</title><rect x="96.2" y="1141" width="0.1" height="15.0" fill="rgb(213,145,2)" rx="2" ry="2" />
<text x="99.22" y="1151.5" ></text>
</g>
<g >
<title>unmap_region (3 samples, 0.01%)</title><rect x="1042.0" y="773" width="0.2" height="15.0" fill="rgb(205,144,1)" rx="2" ry="2" />
<text x="1045.05" y="783.5" ></text>
</g>
<g >
<title>DB::PODArrayBase&lt;1ul, 4096ul, AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;, 15ul, 16ul&gt;::reserveForNextSize&lt;&gt; (18 samples, 0.06%)</title><rect x="977.3" y="1061" width="0.7" height="15.0" fill="rgb(242,151,30)" rx="2" ry="2" />
<text x="980.31" y="1071.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1057.4" y="1173" width="0.3" height="15.0" fill="rgb(225,164,23)" rx="2" ry="2" />
<text x="1060.38" y="1183.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (5 samples, 0.02%)</title><rect x="91.7" y="901" width="0.2" height="15.0" fill="rgb(227,225,33)" rx="2" ry="2" />
<text x="94.70" y="911.5" ></text>
</g>
<g >
<title>update_blocked_averages (12 samples, 0.04%)</title><rect x="1079.4" y="1157" width="0.5" height="15.0" fill="rgb(210,118,15)" rx="2" ry="2" />
<text x="1082.42" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1094.7" y="1285" width="0.1" height="15.0" fill="rgb(235,132,48)" rx="2" ry="2" />
<text x="1097.68" y="1295.5" ></text>
</g>
<g >
<title>DB::Block::eraseImpl (16 samples, 0.05%)</title><rect x="182.5" y="1141" width="0.6" height="15.0" fill="rgb(225,100,21)" rx="2" ry="2" />
<text x="185.47" y="1151.5" ></text>
</g>
<g >
<title>wake_up_worker (4 samples, 0.01%)</title><rect x="1166.2" y="1125" width="0.2" height="15.0" fill="rgb(253,71,29)" rx="2" ry="2" />
<text x="1169.20" y="1135.5" ></text>
</g>
<g >
<title>__se_sys_madvise (4 samples, 0.01%)</title><rect x="182.6" y="949" width="0.1" height="15.0" fill="rgb(244,12,23)" rx="2" ry="2" />
<text x="185.55" y="959.5" ></text>
</g>
<g >
<title>DB::ColumnLowCardinality::setSharedDictionary (4 samples, 0.01%)</title><rect x="1011.7" y="1013" width="0.2" height="15.0" fill="rgb(232,77,33)" rx="2" ry="2" />
<text x="1014.74" y="1023.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::alloc (3 samples, 0.01%)</title><rect x="184.7" y="1093" width="0.1" height="15.0" fill="rgb(221,31,17)" rx="2" ry="2" />
<text x="187.71" y="1103.5" ></text>
</g>
<g >
<title>arena_decay (3 samples, 0.01%)</title><rect x="1016.6" y="933" width="0.1" height="15.0" fill="rgb(205,144,50)" rx="2" ry="2" />
<text x="1019.61" y="943.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (29 samples, 0.10%)</title><rect x="1046.1" y="1141" width="1.1" height="15.0" fill="rgb(236,68,31)" rx="2" ry="2" />
<text x="1049.08" y="1151.5" ></text>
</g>
<g >
<title>unmap_page_range (11 samples, 0.04%)</title><rect x="79.4" y="757" width="0.4" height="15.0" fill="rgb(229,147,14)" rx="2" ry="2" />
<text x="82.36" y="767.5" ></text>
</g>
<g >
<title>Poco::Net::TCPServerConnection::start (95 samples, 0.32%)</title><rect x="1042.0" y="1237" width="3.8" height="15.0" fill="rgb(222,95,6)" rx="2" ry="2" />
<text x="1045.05" y="1247.5" ></text>
</g>
<g >
<title>DB::DataTypeFactory::get (4 samples, 0.01%)</title><rect x="210.4" y="1029" width="0.2" height="15.0" fill="rgb(210,4,45)" rx="2" ry="2" />
<text x="213.43" y="1039.5" ></text>
</g>
<g >
<title>HashTable&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;::clearAndShrink (11 samples, 0.04%)</title><rect x="79.4" y="901" width="0.4" height="15.0" fill="rgb(250,109,32)" rx="2" ry="2" />
<text x="82.36" y="911.5" ></text>
</g>
<g >
<title>search_binary_handler (31 samples, 0.10%)</title><rect x="1185.2" y="1205" width="1.2" height="15.0" fill="rgb(240,59,22)" rx="2" ry="2" />
<text x="1188.17" y="1215.5" ></text>
</g>
<g >
<title>page_fault (13 samples, 0.04%)</title><rect x="1015.4" y="725" width="0.6" height="15.0" fill="rgb(235,134,49)" rx="2" ry="2" />
<text x="1018.45" y="735.5" ></text>
</g>
<g >
<title>handle_mm_fault (10 samples, 0.03%)</title><rect x="207.3" y="1061" width="0.4" height="15.0" fill="rgb(211,165,18)" rx="2" ry="2" />
<text x="210.27" y="1071.5" ></text>
</g>
<g >
<title>__se_sys_madvise (3 samples, 0.01%)</title><rect x="985.8" y="853" width="0.1" height="15.0" fill="rgb(219,38,18)" rx="2" ry="2" />
<text x="988.82" y="863.5" ></text>
</g>
<g >
<title>DB::MergingAndConvertingBlockInputStream::readImpl (227 samples, 0.77%)</title><rect x="70.7" y="949" width="9.1" height="15.0" fill="rgb(235,212,48)" rx="2" ry="2" />
<text x="73.74" y="959.5" ></text>
</g>
<g >
<title>[clickhouse] (22 samples, 0.07%)</title><rect x="1039.2" y="1077" width="0.9" height="15.0" fill="rgb(248,165,25)" rx="2" ry="2" />
<text x="1042.21" y="1087.5" ></text>
</g>
<g >
<title>realloc (15 samples, 0.05%)</title><rect x="194.8" y="1093" width="0.6" height="15.0" fill="rgb(237,124,11)" rx="2" ry="2" />
<text x="197.77" y="1103.5" ></text>
</g>
<g >
<title>call_function_single_interrupt (4 samples, 0.01%)</title><rect x="1096.4" y="1221" width="0.2" height="15.0" fill="rgb(213,23,7)" rx="2" ry="2" />
<text x="1099.40" y="1231.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (4 samples, 0.01%)</title><rect x="97.8" y="965" width="0.2" height="15.0" fill="rgb(231,162,19)" rx="2" ry="2" />
<text x="100.81" y="975.5" ></text>
</g>
<g >
<title>large_palloc (3 samples, 0.01%)</title><rect x="1039.3" y="949" width="0.1" height="15.0" fill="rgb(242,15,37)" rx="2" ry="2" />
<text x="1042.25" y="959.5" ></text>
</g>
<g >
<title>llist_reverse_order (3 samples, 0.01%)</title><rect x="991.4" y="1029" width="0.2" height="15.0" fill="rgb(213,31,30)" rx="2" ry="2" />
<text x="994.45" y="1039.5" ></text>
</g>
<g >
<title>lookup_fast (4 samples, 0.01%)</title><rect x="1069.6" y="1189" width="0.2" height="15.0" fill="rgb(246,133,29)" rx="2" ry="2" />
<text x="1072.64" y="1199.5" ></text>
</g>
<g >
<title>handle_mm_fault (9 samples, 0.03%)</title><rect x="12.1" y="901" width="0.3" height="15.0" fill="rgb(241,24,33)" rx="2" ry="2" />
<text x="15.08" y="911.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.03%)</title><rect x="1053.9" y="1301" width="0.4" height="15.0" fill="rgb(230,194,38)" rx="2" ry="2" />
<text x="1056.91" y="1311.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.03%)</title><rect x="1093.2" y="1285" width="0.4" height="15.0" fill="rgb(238,139,23)" rx="2" ry="2" />
<text x="1096.24" y="1295.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="1103.5" y="1141" width="0.1" height="15.0" fill="rgb(222,196,10)" rx="2" ry="2" />
<text x="1106.46" y="1151.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (13 samples, 0.04%)</title><rect x="1167.2" y="1077" width="0.5" height="15.0" fill="rgb(208,206,13)" rx="2" ry="2" />
<text x="1170.20" y="1087.5" ></text>
</g>
<g >
<title>shmem_getpage (4 samples, 0.01%)</title><rect x="1025.3" y="757" width="0.2" height="15.0" fill="rgb(207,61,22)" rx="2" ry="2" />
<text x="1028.31" y="767.5" ></text>
</g>
<g >
<title>rcu_dynticks_eqs_exit (3 samples, 0.01%)</title><rect x="1171.8" y="1221" width="0.1" height="15.0" fill="rgb(206,10,25)" rx="2" ry="2" />
<text x="1174.83" y="1231.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::serializeValueIntoArena (7 samples, 0.02%)</title><rect x="98.6" y="1173" width="0.3" height="15.0" fill="rgb(239,17,2)" rx="2" ry="2" />
<text x="101.61" y="1183.5" ></text>
</g>
<g >
<title>tcp_schedule_loss_probe (5 samples, 0.02%)</title><rect x="1167.4" y="949" width="0.2" height="15.0" fill="rgb(244,136,7)" rx="2" ry="2" />
<text x="1170.40" y="959.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (7 samples, 0.02%)</title><rect x="28.3" y="789" width="0.3" height="15.0" fill="rgb(216,20,46)" rx="2" ry="2" />
<text x="31.33" y="799.5" ></text>
</g>
<g >
<title>mmput (8 samples, 0.03%)</title><rect x="1093.2" y="1221" width="0.4" height="15.0" fill="rgb(246,196,18)" rx="2" ry="2" />
<text x="1096.24" y="1231.5" ></text>
</g>
<g >
<title>__x64_sys_ioctl (5 samples, 0.02%)</title><rect x="1085.2" y="1157" width="0.2" height="15.0" fill="rgb(237,0,24)" rx="2" ry="2" />
<text x="1088.21" y="1167.5" ></text>
</g>
<g >
<title>load_balance (57 samples, 0.19%)</title><rect x="1104.5" y="1141" width="2.3" height="15.0" fill="rgb(236,114,1)" rx="2" ry="2" />
<text x="1107.54" y="1151.5" ></text>
</g>
<g >
<title>do_syscall_64 (25 samples, 0.08%)</title><rect x="1060.0" y="1221" width="1.0" height="15.0" fill="rgb(209,194,45)" rx="2" ry="2" />
<text x="1062.98" y="1231.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertFrom (506 samples, 1.71%)</title><rect x="33.4" y="805" width="20.2" height="15.0" fill="rgb(206,126,5)" rx="2" ry="2" />
<text x="36.36" y="815.5" ></text>
</g>
<g >
<title>[clickhouse] (2,132 samples, 7.22%)</title><rect x="10.0" y="1301" width="85.1" height="15.0" fill="rgb(224,49,52)" rx="2" ry="2" />
<text x="13.00" y="1311.5" >[clickhouse]</text>
</g>
<g >
<title>quiet_vmstat (7 samples, 0.02%)</title><rect x="1175.5" y="1221" width="0.2" height="15.0" fill="rgb(228,108,47)" rx="2" ry="2" />
<text x="1178.46" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1040.1" y="1061" width="0.1" height="15.0" fill="rgb(227,146,23)" rx="2" ry="2" />
<text x="1043.09" y="1071.5" ></text>
</g>
<g >
<title>rmap_walk_anon (6 samples, 0.02%)</title><rect x="1035.7" y="613" width="0.2" height="15.0" fill="rgb(235,215,45)" rx="2" ry="2" />
<text x="1038.66" y="623.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1038.9" y="997" width="0.1" height="15.0" fill="rgb(234,220,45)" rx="2" ry="2" />
<text x="1041.85" y="1007.5" ></text>
</g>
<g >
<title>ret_from_fork (8 samples, 0.03%)</title><rect x="1080.1" y="1301" width="0.4" height="15.0" fill="rgb(245,14,34)" rx="2" ry="2" />
<text x="1083.14" y="1311.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (25 samples, 0.08%)</title><rect x="1188.0" y="1285" width="1.0" height="15.0" fill="rgb(230,79,6)" rx="2" ry="2" />
<text x="1191.04" y="1295.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (3 samples, 0.01%)</title><rect x="1043.7" y="981" width="0.1" height="15.0" fill="rgb(225,58,49)" rx="2" ry="2" />
<text x="1046.72" y="991.5" ></text>
</g>
<g >
<title>__wake_up_common (4 samples, 0.01%)</title><rect x="1047.0" y="821" width="0.1" height="15.0" fill="rgb(217,109,0)" rx="2" ry="2" />
<text x="1049.96" y="831.5" ></text>
</g>
<g >
<title>pick_next_task_fair (97 samples, 0.33%)</title><rect x="1062.7" y="1109" width="3.9" height="15.0" fill="rgb(241,2,42)" rx="2" ry="2" />
<text x="1065.73" y="1119.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9 samples, 0.03%)</title><rect x="30.1" y="853" width="0.4" height="15.0" fill="rgb(221,50,46)" rx="2" ry="2" />
<text x="33.13" y="863.5" ></text>
</g>
<g >
<title>irq_exit (22 samples, 0.07%)</title><rect x="1166.9" y="1189" width="0.9" height="15.0" fill="rgb(229,64,52)" rx="2" ry="2" />
<text x="1169.88" y="1199.5" ></text>
</g>
<g >
<title>zap_page_range (6 samples, 0.02%)</title><rect x="204.4" y="869" width="0.2" height="15.0" fill="rgb(246,16,4)" rx="2" ry="2" />
<text x="207.36" y="879.5" ></text>
</g>
<g >
<title>ep_poll_callback (3 samples, 0.01%)</title><rect x="1047.0" y="805" width="0.1" height="15.0" fill="rgb(226,94,48)" rx="2" ry="2" />
<text x="1050.00" y="815.5" ></text>
</g>
<g >
<title>__do_page_fault (56 samples, 0.19%)</title><rect x="26.5" y="885" width="2.2" height="15.0" fill="rgb(212,39,2)" rx="2" ry="2" />
<text x="29.45" y="895.5" ></text>
</g>
<g >
<title>__GI___libc_read (80 samples, 0.27%)</title><rect x="1005.5" y="981" width="3.2" height="15.0" fill="rgb(229,183,44)" rx="2" ry="2" />
<text x="1008.51" y="991.5" ></text>
</g>
<g >
<title>__sched_text_start (51 samples, 0.17%)</title><rect x="1089.7" y="1221" width="2.1" height="15.0" fill="rgb(220,43,20)" rx="2" ry="2" />
<text x="1092.73" y="1231.5" ></text>
</g>
<g >
<title>kworker/8:1-eve (15 samples, 0.05%)</title><rect x="1082.3" y="1317" width="0.6" height="15.0" fill="rgb(232,10,21)" rx="2" ry="2" />
<text x="1085.26" y="1327.5" ></text>
</g>
<g >
<title>do_iter_readv_writev (5 samples, 0.02%)</title><rect x="1031.1" y="853" width="0.2" height="15.0" fill="rgb(220,220,6)" rx="2" ry="2" />
<text x="1034.06" y="863.5" ></text>
</g>
<g >
<title>source_load (8 samples, 0.03%)</title><rect x="1106.3" y="1109" width="0.3" height="15.0" fill="rgb(219,182,30)" rx="2" ry="2" />
<text x="1109.26" y="1119.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (6 samples, 0.02%)</title><rect x="204.4" y="949" width="0.2" height="15.0" fill="rgb(210,139,23)" rx="2" ry="2" />
<text x="207.36" y="959.5" ></text>
</g>
<g >
<title>MemoryTracker::alloc (3 samples, 0.01%)</title><rect x="977.4" y="997" width="0.1" height="15.0" fill="rgb(230,120,19)" rx="2" ry="2" />
<text x="980.39" y="1007.5" ></text>
</g>
<g >
<title>call_function_interrupt (57 samples, 0.19%)</title><rect x="989.5" y="1077" width="2.2" height="15.0" fill="rgb(217,21,2)" rx="2" ry="2" />
<text x="992.45" y="1087.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (23 samples, 0.08%)</title><rect x="210.8" y="181" width="0.9" height="15.0" fill="rgb(212,153,41)" rx="2" ry="2" />
<text x="213.79" y="191.5" ></text>
</g>
<g >
<title>ip6_output (12 samples, 0.04%)</title><rect x="1059.3" y="1141" width="0.4" height="15.0" fill="rgb(218,209,50)" rx="2" ry="2" />
<text x="1062.26" y="1151.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1094.6" y="1301" width="0.1" height="15.0" fill="rgb(209,159,5)" rx="2" ry="2" />
<text x="1097.56" y="1311.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel (3 samples, 0.01%)</title><rect x="1174.1" y="1189" width="0.1" height="15.0" fill="rgb(225,102,8)" rx="2" ry="2" />
<text x="1177.11" y="1199.5" ></text>
</g>
<g >
<title>handle_mm_fault (5 samples, 0.02%)</title><rect x="18.2" y="853" width="0.2" height="15.0" fill="rgb(234,72,41)" rx="2" ry="2" />
<text x="21.19" y="863.5" ></text>
</g>
<g >
<title>DB::ReadBufferFromFile::ReadBufferFromFile (3 samples, 0.01%)</title><rect x="1039.3" y="1013" width="0.1" height="15.0" fill="rgb(244,93,10)" rx="2" ry="2" />
<text x="1042.25" y="1023.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="1039.3" y="917" width="0.1" height="15.0" fill="rgb(242,122,48)" rx="2" ry="2" />
<text x="1042.25" y="927.5" ></text>
</g>
<g >
<title>smp_irq_work_interrupt (17 samples, 0.06%)</title><rect x="1165.7" y="1205" width="0.7" height="15.0" fill="rgb(238,182,31)" rx="2" ry="2" />
<text x="1168.68" y="1215.5" ></text>
</g>
<g >
<title>__ia32_sys_exit_group (5 samples, 0.02%)</title><rect x="1176.1" y="1269" width="0.2" height="15.0" fill="rgb(207,12,38)" rx="2" ry="2" />
<text x="1179.10" y="1279.5" ></text>
</g>
<g >
<title>free (9 samples, 0.03%)</title><rect x="182.8" y="1109" width="0.3" height="15.0" fill="rgb(242,189,10)" rx="2" ry="2" />
<text x="185.75" y="1119.5" ></text>
</g>
<g >
<title>tmux:_client (10 samples, 0.03%)</title><rect x="1175.9" y="1317" width="0.4" height="15.0" fill="rgb(246,227,54)" rx="2" ry="2" />
<text x="1178.90" y="1327.5" ></text>
</g>
<g >
<title>realloc (3 samples, 0.01%)</title><rect x="74.8" y="837" width="0.1" height="15.0" fill="rgb(213,219,31)" rx="2" ry="2" />
<text x="77.77" y="847.5" ></text>
</g>
<g >
<title>DB::ColumnLowCardinality::Index::insertPositionsRange (16 samples, 0.05%)</title><rect x="1011.1" y="997" width="0.6" height="15.0" fill="rgb(207,138,9)" rx="2" ry="2" />
<text x="1014.10" y="1007.5" ></text>
</g>
<g >
<title>[clickhouse] (25 samples, 0.08%)</title><rect x="149.0" y="1157" width="1.0" height="15.0" fill="rgb(244,75,8)" rx="2" ry="2" />
<text x="152.01" y="1167.5" ></text>
</g>
<g >
<title>__next_timer_interrupt (5 samples, 0.02%)</title><rect x="1171.2" y="1173" width="0.2" height="15.0" fill="rgb(221,223,11)" rx="2" ry="2" />
<text x="1174.15" y="1183.5" ></text>
</g>
<g >
<title>load_balance (3 samples, 0.01%)</title><rect x="1072.5" y="1205" width="0.1" height="15.0" fill="rgb(248,160,14)" rx="2" ry="2" />
<text x="1075.52" y="1215.5" ></text>
</g>
<g >
<title>TCPHandler (138 samples, 0.47%)</title><rect x="1042.0" y="1317" width="5.6" height="15.0" fill="rgb(208,19,1)" rx="2" ry="2" />
<text x="1045.05" y="1327.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="203.4" y="981" width="0.1" height="15.0" fill="rgb(236,65,2)" rx="2" ry="2" />
<text x="206.36" y="991.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.01%)</title><rect x="206.8" y="997" width="0.1" height="15.0" fill="rgb(240,66,6)" rx="2" ry="2" />
<text x="209.75" y="1007.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="977.6" y="949" width="0.2" height="15.0" fill="rgb(221,140,15)" rx="2" ry="2" />
<text x="980.63" y="959.5" ></text>
</g>
<g >
<title>alloc_pages_vma (20 samples, 0.07%)</title><rect x="90.6" y="949" width="0.8" height="15.0" fill="rgb(208,196,34)" rx="2" ry="2" />
<text x="93.63" y="959.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (3 samples, 0.01%)</title><rect x="1187.8" y="1237" width="0.1" height="15.0" fill="rgb(240,5,6)" rx="2" ry="2" />
<text x="1190.76" y="1247.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="204.4" y="965" width="0.2" height="15.0" fill="rgb(251,91,5)" rx="2" ry="2" />
<text x="207.36" y="975.5" ></text>
</g>
<g >
<title>do_wp_page (45 samples, 0.15%)</title><rect x="92.9" y="997" width="1.8" height="15.0" fill="rgb(231,224,18)" rx="2" ry="2" />
<text x="95.86" y="1007.5" ></text>
</g>
<g >
<title>free (5 samples, 0.02%)</title><rect x="230.0" y="1093" width="0.2" height="15.0" fill="rgb(253,186,20)" rx="2" ry="2" />
<text x="232.95" y="1103.5" ></text>
</g>
<g >
<title>arena_ralloc (13 samples, 0.04%)</title><rect x="977.5" y="1013" width="0.5" height="15.0" fill="rgb(212,26,15)" rx="2" ry="2" />
<text x="980.51" y="1023.5" ></text>
</g>
<g >
<title>LZ4::decompress (29 samples, 0.10%)</title><rect x="1026.2" y="965" width="1.2" height="15.0" fill="rgb(231,41,54)" rx="2" ry="2" />
<text x="1029.23" y="975.5" ></text>
</g>
<g >
<title>schedule (19 samples, 0.06%)</title><rect x="1080.8" y="1253" width="0.7" height="15.0" fill="rgb(253,223,4)" rx="2" ry="2" />
<text x="1083.78" y="1263.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="1069.9" y="1253" width="0.3" height="15.0" fill="rgb(223,222,51)" rx="2" ry="2" />
<text x="1072.92" y="1263.5" ></text>
</g>
<g >
<title>irq_exit (24 samples, 0.08%)</title><rect x="988.4" y="1045" width="1.0" height="15.0" fill="rgb(224,103,22)" rx="2" ry="2" />
<text x="991.41" y="1055.5" ></text>
</g>
<g >
<title>wake_up_q (5 samples, 0.02%)</title><rect x="1039.6" y="949" width="0.2" height="15.0" fill="rgb(227,210,41)" rx="2" ry="2" />
<text x="1042.65" y="959.5" ></text>
</g>
<g >
<title>std::vector&lt;DB::ColumnWithTypeAndName, std::allocator&lt;DB::ColumnWithTypeAndName&gt; &gt;::~vector (5 samples, 0.02%)</title><rect x="230.5" y="1157" width="0.2" height="15.0" fill="rgb(252,42,10)" rx="2" ry="2" />
<text x="233.51" y="1167.5" ></text>
</g>
<g >
<title>DB::Block::insert (4 samples, 0.01%)</title><rect x="997.9" y="1045" width="0.2" height="15.0" fill="rgb(238,53,17)" rx="2" ry="2" />
<text x="1000.92" y="1055.5" ></text>
</g>
<g >
<title>DB::PreparedFunctionCast::executeImpl (6 samples, 0.02%)</title><rect x="213.5" y="1061" width="0.2" height="15.0" fill="rgb(237,167,12)" rx="2" ry="2" />
<text x="216.46" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (85 samples, 0.29%)</title><rect x="203.7" y="1093" width="3.4" height="15.0" fill="rgb(207,196,15)" rx="2" ry="2" />
<text x="206.72" y="1103.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (9 samples, 0.03%)</title><rect x="1056.8" y="1141" width="0.3" height="15.0" fill="rgb(245,17,29)" rx="2" ry="2" />
<text x="1059.78" y="1151.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned long&gt;::deserializeBinaryBulk (161 samples, 0.54%)</title><rect x="1016.9" y="1013" width="6.5" height="15.0" fill="rgb(216,126,2)" rx="2" ry="2" />
<text x="1019.93" y="1023.5" ></text>
</g>
<g >
<title>curl (7 samples, 0.02%)</title><rect x="1066.8" y="1317" width="0.3" height="15.0" fill="rgb(219,30,39)" rx="2" ry="2" />
<text x="1069.84" y="1327.5" ></text>
</g>
<g >
<title>__tcp_transmit_skb (13 samples, 0.04%)</title><rect x="1059.2" y="1189" width="0.5" height="15.0" fill="rgb(214,28,1)" rx="2" ry="2" />
<text x="1062.22" y="1199.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (8 samples, 0.03%)</title><rect x="95.2" y="1285" width="0.3" height="15.0" fill="rgb(253,37,34)" rx="2" ry="2" />
<text x="98.18" y="1295.5" ></text>
</g>
<g >
<title>do_futex (21 samples, 0.07%)</title><rect x="1044.8" y="1109" width="0.8" height="15.0" fill="rgb(242,31,29)" rx="2" ry="2" />
<text x="1047.80" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1053.3" y="1269" width="0.3" height="15.0" fill="rgb(240,27,3)" rx="2" ry="2" />
<text x="1056.35" y="1279.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (4 samples, 0.01%)</title><rect x="201.4" y="837" width="0.2" height="15.0" fill="rgb(226,198,14)" rx="2" ry="2" />
<text x="204.40" y="847.5" ></text>
</g>
<g >
<title>tick_sched_timer (12 samples, 0.04%)</title><rect x="978.1" y="997" width="0.5" height="15.0" fill="rgb(226,66,12)" rx="2" ry="2" />
<text x="981.07" y="1007.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; (32 samples, 0.11%)</title><rect x="98.2" y="1205" width="1.3" height="15.0" fill="rgb(210,54,47)" rx="2" ry="2" />
<text x="101.21" y="1215.5" ></text>
</g>
<g >
<title>kthread (3 samples, 0.01%)</title><rect x="1076.6" y="1285" width="0.1" height="15.0" fill="rgb(210,36,0)" rx="2" ry="2" />
<text x="1079.63" y="1295.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (6 samples, 0.02%)</title><rect x="1025.9" y="773" width="0.2" height="15.0" fill="rgb(236,78,25)" rx="2" ry="2" />
<text x="1028.87" y="783.5" ></text>
</g>
<g >
<title>zap_page_range (4 samples, 0.01%)</title><rect x="1037.9" y="773" width="0.1" height="15.0" fill="rgb(234,39,23)" rx="2" ry="2" />
<text x="1040.85" y="783.5" ></text>
</g>
<g >
<title>copy_page_to_iter (4 samples, 0.01%)</title><rect x="1031.1" y="821" width="0.1" height="15.0" fill="rgb(222,213,38)" rx="2" ry="2" />
<text x="1034.06" y="831.5" ></text>
</g>
<g >
<title>find_get_entry (9 samples, 0.03%)</title><rect x="1008.3" y="773" width="0.3" height="15.0" fill="rgb(240,56,2)" rx="2" ry="2" />
<text x="1011.26" y="783.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="204.7" y="917" width="0.3" height="15.0" fill="rgb(221,38,32)" rx="2" ry="2" />
<text x="207.72" y="927.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="1100.2" y="1109" width="0.1" height="15.0" fill="rgb(237,146,44)" rx="2" ry="2" />
<text x="1103.19" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="230.0" y="965" width="0.1" height="15.0" fill="rgb(221,33,15)" rx="2" ry="2" />
<text x="232.95" y="975.5" ></text>
</g>
<g >
<title>ip_local_deliver_finish (11 samples, 0.04%)</title><rect x="1167.2" y="1029" width="0.4" height="15.0" fill="rgb(238,181,8)" rx="2" ry="2" />
<text x="1170.20" y="1039.5" ></text>
</g>
<g >
<title>rmap_walk_anon (3 samples, 0.01%)</title><rect x="1001.7" y="821" width="0.1" height="15.0" fill="rgb(242,184,35)" rx="2" ry="2" />
<text x="1004.67" y="831.5" ></text>
</g>
<g >
<title>wq_worker_comm (3 samples, 0.01%)</title><rect x="1071.4" y="1141" width="0.1" height="15.0" fill="rgb(230,33,9)" rx="2" ry="2" />
<text x="1074.36" y="1151.5" ></text>
</g>
<g >
<title>DB::FunctionToFixedString::executeForN (14 samples, 0.05%)</title><rect x="11.0" y="949" width="0.6" height="15.0" fill="rgb(224,113,24)" rx="2" ry="2" />
<text x="14.00" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.03%)</title><rect x="1056.8" y="1157" width="0.3" height="15.0" fill="rgb(235,106,38)" rx="2" ry="2" />
<text x="1059.78" y="1167.5" ></text>
</g>
<g >
<title>find_busiest_group (12 samples, 0.04%)</title><rect x="1081.0" y="1189" width="0.5" height="15.0" fill="rgb(205,87,9)" rx="2" ry="2" />
<text x="1083.98" y="1199.5" ></text>
</g>
<g >
<title>DB::ColumnUnique&lt;DB::ColumnString&gt;::ColumnUnique (4 samples, 0.01%)</title><rect x="998.2" y="1013" width="0.2" height="15.0" fill="rgb(247,49,39)" rx="2" ry="2" />
<text x="1001.20" y="1023.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8 samples, 0.03%)</title><rect x="1001.5" y="885" width="0.3" height="15.0" fill="rgb(228,74,49)" rx="2" ry="2" />
<text x="1004.51" y="895.5" ></text>
</g>
<g >
<title>ip6_input (12 samples, 0.04%)</title><rect x="1046.7" y="933" width="0.5" height="15.0" fill="rgb(217,171,4)" rx="2" ry="2" />
<text x="1049.68" y="943.5" ></text>
</g>
<g >
<title>pick_next_task_fair (8 samples, 0.03%)</title><rect x="1077.0" y="1221" width="0.3" height="15.0" fill="rgb(206,211,17)" rx="2" ry="2" />
<text x="1079.99" y="1231.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (5 samples, 0.02%)</title><rect x="205.0" y="997" width="0.2" height="15.0" fill="rgb(236,189,47)" rx="2" ry="2" />
<text x="208.00" y="1007.5" ></text>
</g>
<g >
<title>DB::MergingAndConvertingBlockInputStream::~MergingAndConvertingBlockInputStream (9 samples, 0.03%)</title><rect x="1042.0" y="917" width="0.4" height="15.0" fill="rgb(251,227,19)" rx="2" ry="2" />
<text x="1045.05" y="927.5" ></text>
</g>
<g >
<title>kworker/37:1-ev (3 samples, 0.01%)</title><rect x="1076.6" y="1317" width="0.1" height="15.0" fill="rgb(250,112,9)" rx="2" ry="2" />
<text x="1079.63" y="1327.5" ></text>
</g>
<g >
<title>tmux (69 samples, 0.23%)</title><rect x="1186.7" y="1317" width="2.7" height="15.0" fill="rgb(234,12,33)" rx="2" ry="2" />
<text x="1189.69" y="1327.5" ></text>
</g>
<g >
<title>__tick_nohz_idle_restart_tick (20 samples, 0.07%)</title><rect x="1173.9" y="1221" width="0.8" height="15.0" fill="rgb(254,73,33)" rx="2" ry="2" />
<text x="1176.95" y="1231.5" ></text>
</g>
<g >
<title>[perf_4.19] (5 samples, 0.02%)</title><rect x="1085.2" y="1253" width="0.2" height="15.0" fill="rgb(209,145,13)" rx="2" ry="2" />
<text x="1088.21" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1039.3" y="981" width="0.1" height="15.0" fill="rgb(231,31,29)" rx="2" ry="2" />
<text x="1042.25" y="991.5" ></text>
</g>
<g >
<title>release_pages (3 samples, 0.01%)</title><rect x="182.8" y="885" width="0.2" height="15.0" fill="rgb(209,99,4)" rx="2" ry="2" />
<text x="185.83" y="895.5" ></text>
</g>
<g >
<title>__vfs_read (32 samples, 0.11%)</title><rect x="1014.8" y="853" width="1.2" height="15.0" fill="rgb(249,58,25)" rx="2" ry="2" />
<text x="1017.77" y="863.5" ></text>
</g>
<g >
<title>copy_page_to_iter (81 samples, 0.27%)</title><rect x="1032.8" y="773" width="3.3" height="15.0" fill="rgb(254,181,53)" rx="2" ry="2" />
<text x="1035.82" y="783.5" ></text>
</g>
<g >
<title>try_to_wake_up (17 samples, 0.06%)</title><rect x="1098.8" y="1141" width="0.6" height="15.0" fill="rgb(209,115,50)" rx="2" ry="2" />
<text x="1101.75" y="1151.5" ></text>
</g>
<g >
<title>readv (3 samples, 0.01%)</title><rect x="1181.0" y="1253" width="0.1" height="15.0" fill="rgb(233,157,22)" rx="2" ry="2" />
<text x="1183.97" y="1263.5" ></text>
</g>
<g >
<title>ret_from_fork (3 samples, 0.01%)</title><rect x="1075.2" y="1301" width="0.1" height="15.0" fill="rgb(231,136,25)" rx="2" ry="2" />
<text x="1078.19" y="1311.5" ></text>
</g>
<g >
<title>arena_extent_alloc_large (3 samples, 0.01%)</title><rect x="1039.3" y="933" width="0.1" height="15.0" fill="rgb(208,42,47)" rx="2" ry="2" />
<text x="1042.25" y="943.5" ></text>
</g>
<g >
<title>tty_poll (3 samples, 0.01%)</title><rect x="1178.2" y="1189" width="0.1" height="15.0" fill="rgb(251,131,44)" rx="2" ry="2" />
<text x="1181.22" y="1199.5" ></text>
</g>
<g >
<title>arena_decay (5 samples, 0.02%)</title><rect x="181.5" y="1141" width="0.2" height="15.0" fill="rgb(241,132,52)" rx="2" ry="2" />
<text x="184.48" y="1151.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (4 samples, 0.01%)</title><rect x="1025.9" y="677" width="0.1" height="15.0" fill="rgb(219,157,36)" rx="2" ry="2" />
<text x="1028.87" y="687.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.01%)</title><rect x="1032.4" y="869" width="0.1" height="15.0" fill="rgb(209,21,49)" rx="2" ry="2" />
<text x="1035.38" y="879.5" ></text>
</g>
<g >
<title>DB::ExpressionBlockInputStream::~ExpressionBlockInputStream (24 samples, 0.08%)</title><rect x="1042.0" y="981" width="1.0" height="15.0" fill="rgb(213,43,54)" rx="2" ry="2" />
<text x="1045.05" y="991.5" ></text>
</g>
<g >
<title>DB::ColumnVector&lt;unsigned char&gt;::insertDefault (24 samples, 0.08%)</title><rect x="830.3" y="1077" width="0.9" height="15.0" fill="rgb(228,20,53)" rx="2" ry="2" />
<text x="833.28" y="1087.5" ></text>
</g>
<g >
<title>memcpy (4 samples, 0.01%)</title><rect x="1011.5" y="901" width="0.1" height="15.0" fill="rgb(218,40,47)" rx="2" ry="2" />
<text x="1014.46" y="911.5" ></text>
</g>
<g >
<title>ttwu_do_wakeup.isra.6 (4 samples, 0.01%)</title><rect x="1108.7" y="1013" width="0.2" height="15.0" fill="rgb(214,51,39)" rx="2" ry="2" />
<text x="1111.70" y="1023.5" ></text>
</g>
<g >
<title>DB::ParserUnaryMinusExpression::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="293" width="0.9" height="15.0" fill="rgb(226,222,53)" rx="2" ry="2" />
<text x="213.79" y="303.5" ></text>
</g>
<g >
<title>try_to_unmap (3 samples, 0.01%)</title><rect x="1001.7" y="837" width="0.1" height="15.0" fill="rgb(224,5,17)" rx="2" ry="2" />
<text x="1004.67" y="847.5" ></text>
</g>
<g >
<title>walk_component (4 samples, 0.01%)</title><rect x="1070.0" y="1173" width="0.1" height="15.0" fill="rgb(230,63,15)" rx="2" ry="2" />
<text x="1072.96" y="1183.5" ></text>
</g>
<g >
<title>sock_poll (3 samples, 0.01%)</title><rect x="1044.2" y="1061" width="0.2" height="15.0" fill="rgb(252,101,19)" rx="2" ry="2" />
<text x="1047.24" y="1071.5" ></text>
</g>
<g >
<title>ThreadPoolImpl&lt;std::thread&gt;::worker (2,132 samples, 7.22%)</title><rect x="10.0" y="1285" width="85.1" height="15.0" fill="rgb(217,165,3)" rx="2" ry="2" />
<text x="13.00" y="1295.5" >ThreadPool..</text>
</g>
<g >
<title>DB::ColumnString::serializeValueIntoArena (85 samples, 0.29%)</title><rect x="139.7" y="1157" width="3.4" height="15.0" fill="rgb(223,130,8)" rx="2" ry="2" />
<text x="142.66" y="1167.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::readCompressedData (23 samples, 0.08%)</title><rect x="1030.3" y="997" width="1.0" height="15.0" fill="rgb(236,17,2)" rx="2" ry="2" />
<text x="1033.35" y="1007.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; (5 samples, 0.02%)</title><rect x="183.6" y="1141" width="0.2" height="15.0" fill="rgb(205,149,51)" rx="2" ry="2" />
<text x="186.63" y="1151.5" ></text>
</g>
<g >
<title>migrate_misplaced_page (7 samples, 0.02%)</title><rect x="1035.6" y="661" width="0.3" height="15.0" fill="rgb(251,90,32)" rx="2" ry="2" />
<text x="1038.62" y="671.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (8 samples, 0.03%)</title><rect x="1014.3" y="933" width="0.4" height="15.0" fill="rgb(221,184,45)" rx="2" ry="2" />
<text x="1017.33" y="943.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="309" width="0.9" height="15.0" fill="rgb(231,55,41)" rx="2" ry="2" />
<text x="213.79" y="319.5" ></text>
</g>
<g >
<title>path_openat (6 samples, 0.02%)</title><rect x="1069.9" y="1205" width="0.3" height="15.0" fill="rgb(206,26,16)" rx="2" ry="2" />
<text x="1072.92" y="1215.5" ></text>
</g>
<g >
<title>tty_port_default_receive_buf (6 samples, 0.02%)</title><rect x="1083.4" y="1221" width="0.2" height="15.0" fill="rgb(241,9,0)" rx="2" ry="2" />
<text x="1086.38" y="1231.5" ></text>
</g>
<g >
<title>mmap_region (3 samples, 0.01%)</title><rect x="1187.8" y="1205" width="0.1" height="15.0" fill="rgb(220,24,31)" rx="2" ry="2" />
<text x="1190.76" y="1215.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (11 samples, 0.04%)</title><rect x="1185.2" y="1125" width="0.4" height="15.0" fill="rgb(216,147,46)" rx="2" ry="2" />
<text x="1188.21" y="1135.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="204.4" y="981" width="0.2" height="15.0" fill="rgb(236,117,23)" rx="2" ry="2" />
<text x="207.36" y="991.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="245" width="0.9" height="15.0" fill="rgb(250,84,23)" rx="2" ry="2" />
<text x="213.79" y="255.5" ></text>
</g>
<g >
<title>DB::readVarUInt (7 samples, 0.02%)</title><rect x="1056.2" y="1189" width="0.3" height="15.0" fill="rgb(228,154,27)" rx="2" ry="2" />
<text x="1059.22" y="1199.5" ></text>
</g>
<g >
<title>generic_permission (3 samples, 0.01%)</title><rect x="1038.6" y="853" width="0.1" height="15.0" fill="rgb(213,45,45)" rx="2" ry="2" />
<text x="1041.61" y="863.5" ></text>
</g>
<g >
<title>decay_load (4 samples, 0.01%)</title><rect x="1111.8" y="1109" width="0.1" height="15.0" fill="rgb(232,150,38)" rx="2" ry="2" />
<text x="1114.77" y="1119.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (32 samples, 0.11%)</title><rect x="1026.2" y="1013" width="1.3" height="15.0" fill="rgb(211,78,35)" rx="2" ry="2" />
<text x="1029.23" y="1023.5" ></text>
</g>
<g >
<title>do_munmap (11 samples, 0.04%)</title><rect x="79.4" y="805" width="0.4" height="15.0" fill="rgb(229,155,6)" rx="2" ry="2" />
<text x="82.36" y="815.5" ></text>
</g>
<g >
<title>DB::MergingAndConvertingBlockInputStream::~MergingAndConvertingBlockInputStream (9 samples, 0.03%)</title><rect x="1042.0" y="933" width="0.4" height="15.0" fill="rgb(206,152,28)" rx="2" ry="2" />
<text x="1045.05" y="943.5" ></text>
</g>
<g >
<title>unmap_page_range (4 samples, 0.01%)</title><rect x="183.0" y="933" width="0.1" height="15.0" fill="rgb(241,123,31)" rx="2" ry="2" />
<text x="185.95" y="943.5" ></text>
</g>
<g >
<title>check_preempt_curr (4 samples, 0.01%)</title><rect x="1108.7" y="997" width="0.2" height="15.0" fill="rgb(210,29,43)" rx="2" ry="2" />
<text x="1111.70" y="1007.5" ></text>
</g>
<g >
<title>path_openat (3 samples, 0.01%)</title><rect x="1038.4" y="917" width="0.1" height="15.0" fill="rgb(223,12,52)" rx="2" ry="2" />
<text x="1041.41" y="927.5" ></text>
</g>
<g >
<title>kthread (54 samples, 0.18%)</title><rect x="1077.9" y="1285" width="2.2" height="15.0" fill="rgb(217,80,36)" rx="2" ry="2" />
<text x="1080.91" y="1295.5" ></text>
</g>
<g >
<title>smp_call_function_single_interrupt (19 samples, 0.06%)</title><rect x="991.0" y="1061" width="0.7" height="15.0" fill="rgb(234,158,51)" rx="2" ry="2" />
<text x="993.97" y="1071.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::readBig (154 samples, 0.52%)</title><rect x="1016.9" y="997" width="6.2" height="15.0" fill="rgb(239,7,31)" rx="2" ry="2" />
<text x="1019.93" y="1007.5" ></text>
</g>
<g >
<title>DB::IDataType::getFileNameForStream (3 samples, 0.01%)</title><rect x="1025.6" y="997" width="0.2" height="15.0" fill="rgb(206,82,25)" rx="2" ry="2" />
<text x="1028.63" y="1007.5" ></text>
</g>
<g >
<title>seq_put_decimal_ull_width (4 samples, 0.01%)</title><rect x="1071.6" y="1157" width="0.2" height="15.0" fill="rgb(213,10,7)" rx="2" ry="2" />
<text x="1074.60" y="1167.5" ></text>
</g>
<g >
<title>mem_cgroup_commit_charge (3 samples, 0.01%)</title><rect x="28.1" y="805" width="0.1" height="15.0" fill="rgb(250,81,48)" rx="2" ry="2" />
<text x="31.05" y="815.5" ></text>
</g>
<g >
<title>update_group_capacity (3 samples, 0.01%)</title><rect x="1106.6" y="1109" width="0.1" height="15.0" fill="rgb(239,142,51)" rx="2" ry="2" />
<text x="1109.58" y="1119.5" ></text>
</g>
<g >
<title>arena_decay (4 samples, 0.01%)</title><rect x="230.0" y="1061" width="0.1" height="15.0" fill="rgb(230,167,24)" rx="2" ry="2" />
<text x="232.95" y="1071.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="1057.4" y="1157" width="0.3" height="15.0" fill="rgb(248,213,48)" rx="2" ry="2" />
<text x="1060.38" y="1167.5" ></text>
</g>
<g >
<title>DB::ParserLeftAssociativeBinaryOperatorList::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="325" width="0.9" height="15.0" fill="rgb(208,58,46)" rx="2" ry="2" />
<text x="213.79" y="335.5" ></text>
</g>
<g >
<title>migrate_misplaced_page (7 samples, 0.02%)</title><rect x="1015.6" y="661" width="0.3" height="15.0" fill="rgb(243,58,39)" rx="2" ry="2" />
<text x="1018.65" y="671.5" ></text>
</g>
<g >
<title>DB::ColumnString::serializeValueIntoArena (35 samples, 0.12%)</title><rect x="146.1" y="1173" width="1.4" height="15.0" fill="rgb(206,187,21)" rx="2" ry="2" />
<text x="149.09" y="1183.5" ></text>
</g>
<g >
<title>open64 (6 samples, 0.02%)</title><rect x="1053.3" y="1285" width="0.3" height="15.0" fill="rgb(235,105,47)" rx="2" ry="2" />
<text x="1056.35" y="1295.5" ></text>
</g>
<g >
<title>[clickhouse] (992 samples, 3.36%)</title><rect x="31.1" y="853" width="39.6" height="15.0" fill="rgb(226,56,28)" rx="2" ry="2" />
<text x="34.08" y="863.5" >[cl..</text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.05%)</title><rect x="1042.4" y="821" width="0.6" height="15.0" fill="rgb(219,49,42)" rx="2" ry="2" />
<text x="1045.41" y="831.5" ></text>
</g>
<g >
<title>std::_Sp_counted_ptr_inplace&lt;DB::Arena, std::allocator&lt;DB::Arena&gt;, (6 samples, 0.02%)</title><rect x="1042.2" y="869" width="0.2" height="15.0" fill="rgb(208,3,23)" rx="2" ry="2" />
<text x="1045.17" y="879.5" ></text>
</g>
<g >
<title>std::_Sp_counted_ptr_inplace&lt;DB::Join, std::allocator&lt;DB::Join&gt;, (15 samples, 0.05%)</title><rect x="1042.4" y="885" width="0.6" height="15.0" fill="rgb(253,214,49)" rx="2" ry="2" />
<text x="1045.41" y="895.5" ></text>
</g>
<g >
<title>__madvise (6 samples, 0.02%)</title><rect x="204.4" y="933" width="0.2" height="15.0" fill="rgb(224,216,54)" rx="2" ry="2" />
<text x="207.36" y="943.5" ></text>
</g>
<g >
<title>do_mmap (4 samples, 0.01%)</title><rect x="1084.2" y="1221" width="0.2" height="15.0" fill="rgb(226,142,8)" rx="2" ry="2" />
<text x="1087.22" y="1231.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned char&gt;::deserializeBinaryBulk (4 samples, 0.01%)</title><rect x="1013.9" y="1013" width="0.2" height="15.0" fill="rgb(241,74,9)" rx="2" ry="2" />
<text x="1016.89" y="1023.5" ></text>
</g>
<g >
<title>smp_irq_work_interrupt (45 samples, 0.15%)</title><rect x="1107.1" y="1109" width="1.8" height="15.0" fill="rgb(227,67,2)" rx="2" ry="2" />
<text x="1110.10" y="1119.5" ></text>
</g>
<g >
<title>od_dbs_update (3 samples, 0.01%)</title><rect x="1078.0" y="1221" width="0.1" height="15.0" fill="rgb(231,62,1)" rx="2" ry="2" />
<text x="1080.99" y="1231.5" ></text>
</g>
<g >
<title>ThreadFromGlobalPool::ThreadFromGlobalPool&lt;void ThreadPoolImpl&lt;ThreadFromGlobalPool&gt;::scheduleImpl&lt;void&gt; (13 samples, 0.04%)</title><rect x="96.0" y="1269" width="0.5" height="15.0" fill="rgb(251,151,43)" rx="2" ry="2" />
<text x="99.02" y="1279.5" ></text>
</g>
<g >
<title>extents_alloc (3 samples, 0.01%)</title><rect x="1036.6" y="885" width="0.1" height="15.0" fill="rgb(218,88,37)" rx="2" ry="2" />
<text x="1039.57" y="895.5" ></text>
</g>
<g >
<title>do_select (4 samples, 0.01%)</title><rect x="1094.9" y="1189" width="0.1" height="15.0" fill="rgb(219,143,42)" rx="2" ry="2" />
<text x="1097.88" y="1199.5" ></text>
</g>
<g >
<title>DB::ColumnString::indexImpl&lt;unsigned char&gt; (274 samples, 0.93%)</title><rect x="214.1" y="1093" width="10.9" height="15.0" fill="rgb(213,157,4)" rx="2" ry="2" />
<text x="217.10" y="1103.5" ></text>
</g>
<g >
<title>kern_select (4 samples, 0.01%)</title><rect x="1067.4" y="1205" width="0.2" height="15.0" fill="rgb(247,176,20)" rx="2" ry="2" />
<text x="1070.40" y="1215.5" ></text>
</g>
<g >
<title>AllocatorWithHint&lt;false, AllocatorHints::DefaultHint, 67108864ul&gt;::realloc (20 samples, 0.07%)</title><rect x="985.3" y="1045" width="0.8" height="15.0" fill="rgb(239,20,2)" rx="2" ry="2" />
<text x="988.30" y="1055.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (23 samples, 0.08%)</title><rect x="210.8" y="149" width="0.9" height="15.0" fill="rgb(240,130,39)" rx="2" ry="2" />
<text x="213.79" y="159.5" ></text>
</g>
<g >
<title>execve (31 samples, 0.10%)</title><rect x="1185.2" y="1301" width="1.2" height="15.0" fill="rgb(239,53,27)" rx="2" ry="2" />
<text x="1188.17" y="1311.5" ></text>
</g>
<g >
<title>filename_lookup (4 samples, 0.01%)</title><rect x="1039.0" y="965" width="0.2" height="15.0" fill="rgb(218,19,1)" rx="2" ry="2" />
<text x="1042.01" y="975.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::readPrefix (2,127 samples, 7.20%)</title><rect x="10.2" y="1173" width="84.9" height="15.0" fill="rgb(207,150,21)" rx="2" ry="2" />
<text x="13.20" y="1183.5" >DB::IBloc..</text>
</g>
<g >
<title>load_balance (3 samples, 0.01%)</title><rect x="1067.4" y="1077" width="0.2" height="15.0" fill="rgb(209,136,15)" rx="2" ry="2" />
<text x="1070.44" y="1087.5" ></text>
</g>
<g >
<title>ktime_get (4 samples, 0.01%)</title><rect x="1173.7" y="1221" width="0.2" height="15.0" fill="rgb(249,169,34)" rx="2" ry="2" />
<text x="1176.75" y="1231.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1184.8" y="1269" width="0.2" height="15.0" fill="rgb(244,41,52)" rx="2" ry="2" />
<text x="1187.81" y="1279.5" ></text>
</g>
<g >
<title>x86_pmu_disable (4 samples, 0.01%)</title><rect x="1101.1" y="1093" width="0.1" height="15.0" fill="rgb(215,104,40)" rx="2" ry="2" />
<text x="1104.07" y="1103.5" ></text>
</g>
<g >
<title>alloc_pages_vma (6 samples, 0.02%)</title><rect x="12.1" y="869" width="0.3" height="15.0" fill="rgb(244,202,30)" rx="2" ry="2" />
<text x="15.12" y="879.5" ></text>
</g>
<g >
<title>do_wp_page (11 samples, 0.04%)</title><rect x="1177.5" y="1221" width="0.4" height="15.0" fill="rgb(238,97,13)" rx="2" ry="2" />
<text x="1180.46" y="1231.5" ></text>
</g>
<g >
<title>__do_page_fault (4 samples, 0.01%)</title><rect x="1187.6" y="1253" width="0.2" height="15.0" fill="rgb(232,169,43)" rx="2" ry="2" />
<text x="1190.60" y="1263.5" ></text>
</g>
<g >
<title>operator new (6 samples, 0.02%)</title><rect x="1025.9" y="869" width="0.2" height="15.0" fill="rgb(241,64,1)" rx="2" ry="2" />
<text x="1028.87" y="879.5" ></text>
</g>
<g >
<title>__tcp_send_ack (3 samples, 0.01%)</title><rect x="1059.1" y="1189" width="0.1" height="15.0" fill="rgb(250,69,8)" rx="2" ry="2" />
<text x="1062.10" y="1199.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (9 samples, 0.03%)</title><rect x="1091.2" y="1125" width="0.4" height="15.0" fill="rgb(235,15,46)" rx="2" ry="2" />
<text x="1094.20" y="1135.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (20 samples, 0.07%)</title><rect x="27.2" y="789" width="0.8" height="15.0" fill="rgb(229,171,27)" rx="2" ry="2" />
<text x="30.21" y="799.5" ></text>
</g>
<g >
<title>_init (14 samples, 0.05%)</title><rect x="1181.1" y="1269" width="0.6" height="15.0" fill="rgb(252,200,10)" rx="2" ry="2" />
<text x="1184.13" y="1279.5" ></text>
</g>
<g >
<title>DB::CurrentThread::attachTo (4 samples, 0.01%)</title><rect x="96.7" y="1237" width="0.2" height="15.0" fill="rgb(252,140,17)" rx="2" ry="2" />
<text x="99.70" y="1247.5" ></text>
</g>
<g >
<title>irq_work_run_list (5 samples, 0.02%)</title><rect x="1113.2" y="1029" width="0.2" height="15.0" fill="rgb(222,19,50)" rx="2" ry="2" />
<text x="1116.21" y="1039.5" ></text>
</g>
<g >
<title>ovl_read_iter (94 samples, 0.32%)</title><rect x="1032.7" y="837" width="3.8" height="15.0" fill="rgb(232,107,38)" rx="2" ry="2" />
<text x="1035.74" y="847.5" ></text>
</g>
<g >
<title>irq_work_interrupt (19 samples, 0.06%)</title><rect x="1165.6" y="1221" width="0.8" height="15.0" fill="rgb(211,73,25)" rx="2" ry="2" />
<text x="1168.60" y="1231.5" ></text>
</g>
<g >
<title>DB::ExpressionAction::execute (66 samples, 0.22%)</title><rect x="10.2" y="981" width="2.6" height="15.0" fill="rgb(233,229,49)" rx="2" ry="2" />
<text x="13.20" y="991.5" ></text>
</g>
<g >
<title>DB::Block::erase (21 samples, 0.07%)</title><rect x="182.5" y="1157" width="0.8" height="15.0" fill="rgb(225,189,15)" rx="2" ry="2" />
<text x="185.47" y="1167.5" ></text>
</g>
<g >
<title>find_busiest_group (11 samples, 0.04%)</title><rect x="1075.8" y="1189" width="0.5" height="15.0" fill="rgb(219,140,40)" rx="2" ry="2" />
<text x="1078.83" y="1199.5" ></text>
</g>
<g >
<title>worker_thread (27 samples, 0.09%)</title><rect x="1075.4" y="1269" width="1.1" height="15.0" fill="rgb(237,89,12)" rx="2" ry="2" />
<text x="1078.39" y="1279.5" ></text>
</g>
<g >
<title>path_openat (6 samples, 0.02%)</title><rect x="1038.6" y="917" width="0.2" height="15.0" fill="rgb(243,168,19)" rx="2" ry="2" />
<text x="1041.57" y="927.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="213" width="0.9" height="15.0" fill="rgb(231,120,15)" rx="2" ry="2" />
<text x="213.79" y="223.5" ></text>
</g>
<g >
<title>swapper (2,019 samples, 6.83%)</title><rect x="1095.2" y="1317" width="80.6" height="15.0" fill="rgb(209,28,45)" rx="2" ry="2" />
<text x="1098.20" y="1327.5" >swapper</text>
</g>
<g >
<title>flush_tlb_mm_range (6 samples, 0.02%)</title><rect x="1035.7" y="565" width="0.2" height="15.0" fill="rgb(223,216,28)" rx="2" ry="2" />
<text x="1038.66" y="575.5" ></text>
</g>
<g >
<title>kworker/25:1-ev (3 samples, 0.01%)</title><rect x="1075.2" y="1317" width="0.1" height="15.0" fill="rgb(206,178,6)" rx="2" ry="2" />
<text x="1078.19" y="1327.5" ></text>
</g>
<g >
<title>mmap_region (7 samples, 0.02%)</title><rect x="1092.4" y="1205" width="0.3" height="15.0" fill="rgb(228,94,29)" rx="2" ry="2" />
<text x="1095.40" y="1215.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.02%)</title><rect x="18.2" y="837" width="0.2" height="15.0" fill="rgb(210,34,33)" rx="2" ry="2" />
<text x="21.19" y="847.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5 samples, 0.02%)</title><rect x="1025.0" y="613" width="0.2" height="15.0" fill="rgb(225,160,32)" rx="2" ry="2" />
<text x="1028.03" y="623.5" ></text>
</g>
<g >
<title>DB::FunctionComparison&lt;DB::GreaterOp, DB::NameGreater&gt;::executeNumLeftType&lt;unsigned long&gt; (4 samples, 0.01%)</title><rect x="10.4" y="933" width="0.2" height="15.0" fill="rgb(230,64,31)" rx="2" ry="2" />
<text x="13.40" y="943.5" ></text>
</g>
<g >
<title>shmem_getpage (5 samples, 0.02%)</title><rect x="1022.9" y="805" width="0.2" height="15.0" fill="rgb(215,29,27)" rx="2" ry="2" />
<text x="1025.88" y="815.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 (195 samples, 0.66%)</title><rect x="84.3" y="1061" width="7.8" height="15.0" fill="rgb(235,119,22)" rx="2" ry="2" />
<text x="87.32" y="1071.5" ></text>
</g>
<g >
<title>[clickhouse] (6 samples, 0.02%)</title><rect x="1025.9" y="805" width="0.2" height="15.0" fill="rgb(246,75,42)" rx="2" ry="2" />
<text x="1028.87" y="815.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="184.7" y="1109" width="0.2" height="15.0" fill="rgb(221,39,26)" rx="2" ry="2" />
<text x="187.67" y="1119.5" ></text>
</g>
<g >
<title>get_page_from_freelist (17 samples, 0.06%)</title><rect x="27.3" y="773" width="0.7" height="15.0" fill="rgb(234,165,53)" rx="2" ry="2" />
<text x="30.33" y="783.5" ></text>
</g>
<g >
<title>zap_page_range (5 samples, 0.02%)</title><rect x="201.4" y="869" width="0.2" height="15.0" fill="rgb(253,14,0)" rx="2" ry="2" />
<text x="204.40" y="879.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="232.3" y="1029" width="0.1" height="15.0" fill="rgb(206,89,51)" rx="2" ry="2" />
<text x="235.27" y="1039.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1016.6" y="901" width="0.1" height="15.0" fill="rgb(247,114,21)" rx="2" ry="2" />
<text x="1019.61" y="911.5" ></text>
</g>
<g >
<title>DB::DataTypeNumberBase&lt;unsigned char&gt;::deserializeBinaryBulk (17 samples, 0.06%)</title><rect x="1016.2" y="1013" width="0.7" height="15.0" fill="rgb(248,36,51)" rx="2" ry="2" />
<text x="1019.25" y="1023.5" ></text>
</g>
<g >
<title>[clickhouse] (3 samples, 0.01%)</title><rect x="1016.6" y="917" width="0.1" height="15.0" fill="rgb(226,218,9)" rx="2" ry="2" />
<text x="1019.61" y="927.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.01%)</title><rect x="1041.0" y="1269" width="0.1" height="15.0" fill="rgb(233,40,13)" rx="2" ry="2" />
<text x="1043.97" y="1279.5" ></text>
</g>
<g >
<title>extent_dalloc_wrapper (4 samples, 0.01%)</title><rect x="1037.9" y="853" width="0.1" height="15.0" fill="rgb(219,45,39)" rx="2" ry="2" />
<text x="1040.85" y="863.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (42 samples, 0.14%)</title><rect x="986.7" y="1045" width="1.7" height="15.0" fill="rgb(220,87,48)" rx="2" ry="2" />
<text x="989.70" y="1055.5" ></text>
</g>
<g >
<title>tcp_rcv_established (7 samples, 0.02%)</title><rect x="1046.9" y="869" width="0.3" height="15.0" fill="rgb(223,18,14)" rx="2" ry="2" />
<text x="1049.88" y="879.5" ></text>
</g>
<g >
<title>unmap_vmas (11 samples, 0.04%)</title><rect x="79.4" y="773" width="0.4" height="15.0" fill="rgb(251,121,6)" rx="2" ry="2" />
<text x="82.36" y="783.5" ></text>
</g>
<g >
<title>update_nohz_stats (6 samples, 0.02%)</title><rect x="1076.0" y="1173" width="0.3" height="15.0" fill="rgb(234,207,39)" rx="2" ry="2" />
<text x="1079.03" y="1183.5" ></text>
</g>
<g >
<title>perf_ioctl (5 samples, 0.02%)</title><rect x="1085.2" y="1093" width="0.2" height="15.0" fill="rgb(218,160,29)" rx="2" ry="2" />
<text x="1088.21" y="1103.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (24 samples, 0.08%)</title><rect x="210.8" y="389" width="0.9" height="15.0" fill="rgb(220,224,45)" rx="2" ry="2" />
<text x="213.79" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.02%)</title><rect x="74.3" y="821" width="0.2" height="15.0" fill="rgb(226,168,48)" rx="2" ry="2" />
<text x="77.25" y="831.5" ></text>
</g>
<g >
<title>__split_vma (3 samples, 0.01%)</title><rect x="1187.3" y="1189" width="0.1" height="15.0" fill="rgb(227,33,25)" rx="2" ry="2" />
<text x="1190.32" y="1199.5" ></text>
</g>
<g >
<title>[ld-2.24.so] (4 samples, 0.01%)</title><rect x="1093.8" y="1285" width="0.2" height="15.0" fill="rgb(231,57,53)" rx="2" ry="2" />
<text x="1096.80" y="1295.5" ></text>
</g>
<g >
<title>__note_gp_changes (5 samples, 0.02%)</title><rect x="1103.1" y="1125" width="0.2" height="15.0" fill="rgb(231,37,10)" rx="2" ry="2" />
<text x="1106.14" y="1135.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3 samples, 0.01%)</title><rect x="30.2" y="805" width="0.2" height="15.0" fill="rgb(229,11,38)" rx="2" ry="2" />
<text x="33.25" y="815.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferFromFile::seek (54 samples, 0.18%)</title><rect x="1023.4" y="965" width="2.2" height="15.0" fill="rgb(241,78,23)" rx="2" ry="2" />
<text x="1026.40" y="975.5" ></text>
</g>
<g >
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="75.0" y="853" width="0.1" height="15.0" fill="rgb(249,93,37)" rx="2" ry="2" />
<text x="78.01" y="863.5" ></text>
</g>
<g >
<title>[unknown] (9 samples, 0.03%)</title><rect x="1094.8" y="1301" width="0.4" height="15.0" fill="rgb(225,131,16)" rx="2" ry="2" />
<text x="1097.84" y="1311.5" ></text>
</g>
<g >
<title>DB::IBlockInputStream::read (4 samples, 0.01%)</title><rect x="10.0" y="1141" width="0.2" height="15.0" fill="rgb(237,170,14)" rx="2" ry="2" />
<text x="13.00" y="1151.5" ></text>
</g>
<g >
<title>DB::FunctionMultiIf::executeImpl (724 samples, 2.45%)</title><rect x="184.9" y="1141" width="29.0" height="15.0" fill="rgb(211,150,3)" rx="2" ry="2" />
<text x="187.95" y="1151.5" >DB..</text>
</g>
<g >
<title>_nohz_idle_balance (14 samples, 0.05%)</title><rect x="1096.6" y="1173" width="0.5" height="15.0" fill="rgb(210,49,28)" rx="2" ry="2" />
<text x="1099.56" y="1183.5" ></text>
</g>
<g >
<title>DB::ParserLambdaExpression::parseImpl (34 samples, 0.12%)</title><rect x="210.7" y="789" width="1.3" height="15.0" fill="rgb(248,175,16)" rx="2" ry="2" />
<text x="213.67" y="799.5" ></text>
</g>
<g >
<title>start_secondary (1,969 samples, 6.66%)</title><rect x="1097.2" y="1285" width="78.6" height="15.0" fill="rgb(239,222,54)" rx="2" ry="2" />
<text x="1100.19" y="1295.5" >start_sec..</text>
</g>
<g >
<title>irq_work_interrupt (49 samples, 0.17%)</title><rect x="1106.9" y="1125" width="2.0" height="15.0" fill="rgb(241,219,5)" rx="2" ry="2" />
<text x="1109.94" y="1135.5" ></text>
</g>
<g >
<title>DB::DataTypeFixedString::deserializeBinaryBulk (300 samples, 1.02%)</title><rect x="998.8" y="1029" width="11.9" height="15.0" fill="rgb(236,135,26)" rx="2" ry="2" />
<text x="1001.76" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="10.2" y="901" width="0.2" height="15.0" fill="rgb(221,195,42)" rx="2" ry="2" />
<text x="13.24" y="911.5" ></text>
</g>
<g >
<title>flush_to_ldisc (6 samples, 0.02%)</title><rect x="1083.4" y="1237" width="0.2" height="15.0" fill="rgb(218,66,30)" rx="2" ry="2" />
<text x="1086.38" y="1247.5" ></text>
</g>
<g >
<title>DB::CompressedReadBufferBase::decompress (126 samples, 0.43%)</title><rect x="1016.9" y="981" width="5.1" height="15.0" fill="rgb(223,114,8)" rx="2" ry="2" />
<text x="1019.93" y="991.5" ></text>
</g>
<g >
<title>DB::ParserVariableArityOperatorList::parseImpl (24 samples, 0.08%)</title><rect x="210.8" y="453" width="0.9" height="15.0" fill="rgb(254,15,33)" rx="2" ry="2" />
<text x="213.79" y="463.5" ></text>
</g>
<g >
<title>do_mprotect_pkey.constprop.1 (4 samples, 0.01%)</title><rect x="1092.1" y="1221" width="0.2" height="15.0" fill="rgb(253,45,9)" rx="2" ry="2" />
<text x="1095.12" y="1231.5" ></text>
</g>
<g >
<title>DB::AsynchronousBlockInputStream::calculate (2,132 samples, 7.22%)</title><rect x="10.0" y="1221" width="85.1" height="15.0" fill="rgb(215,130,22)" rx="2" ry="2" />
<text x="13.00" y="1231.5" >DB::Asynch..</text>
</g>
<g >
<title>ptep_clear_flush (3 samples, 0.01%)</title><rect x="1010.6" y="853" width="0.1" height="15.0" fill="rgb(237,76,11)" rx="2" ry="2" />
<text x="1013.58" y="863.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (26 samples, 0.09%)</title><rect x="210.7" y="549" width="1.1" height="15.0" fill="rgb(225,175,37)" rx="2" ry="2" />
<text x="213.75" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1053.3" y="1253" width="0.3" height="15.0" fill="rgb(220,2,17)" rx="2" ry="2" />
<text x="1056.35" y="1263.5" ></text>
</g>
<g >
<title>do_execve (31 samples, 0.10%)</title><rect x="1185.2" y="1237" width="1.2" height="15.0" fill="rgb(235,204,45)" rx="2" ry="2" />
<text x="1188.17" y="1247.5" ></text>
</g>
<g >
<title>DB::Aggregator::mergeDataImpl&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;, 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; &gt; (8 samples, 0.03%)</title><rect x="96.0" y="1189" width="0.3" height="15.0" fill="rgb(227,154,53)" rx="2" ry="2" />
<text x="99.02" y="1199.5" ></text>
</g>
<g >
<title>page_fault (5 samples, 0.02%)</title><rect x="18.2" y="885" width="0.2" height="15.0" fill="rgb(236,154,45)" rx="2" ry="2" />
<text x="21.19" y="895.5" ></text>
</g>
<g >
<title>tick_nohz_next_event (15 samples, 0.05%)</title><rect x="1170.9" y="1205" width="0.6" height="15.0" fill="rgb(244,38,10)" rx="2" ry="2" />
<text x="1173.87" y="1215.5" ></text>
</g>
<g >
<title>proc_pid_readdir (6 samples, 0.02%)</title><rect x="1067.9" y="1205" width="0.2" height="15.0" fill="rgb(223,99,4)" rx="2" ry="2" />
<text x="1070.88" y="1215.5" ></text>
</g>
<g >
<title>DB::ColumnNullable::serializeValueIntoArena (3 samples, 0.01%)</title><rect x="99.0" y="1189" width="0.1" height="15.0" fill="rgb(211,223,2)" rx="2" ry="2" />
<text x="102.01" y="1199.5" ></text>
</g>
<g >
<title>ep_unregister_pollwait.isra.0 (7 samples, 0.02%)</title><rect x="1060.5" y="1125" width="0.3" height="15.0" fill="rgb(217,68,3)" rx="2" ry="2" />
<text x="1063.50" y="1135.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6 samples, 0.02%)</title><rect x="1035.4" y="629" width="0.2" height="15.0" fill="rgb(251,90,7)" rx="2" ry="2" />
<text x="1038.38" y="639.5" ></text>
</g>
<g >
<title>extents_alloc (6 samples, 0.02%)</title><rect x="201.0" y="981" width="0.2" height="15.0" fill="rgb(235,181,48)" rx="2" ry="2" />
<text x="204.00" y="991.5" ></text>
</g>
<g >
<title>copy_page_to_iter (37 samples, 0.13%)</title><rect x="1023.8" y="757" width="1.5" height="15.0" fill="rgb(237,176,24)" rx="2" ry="2" />
<text x="1026.84" y="767.5" ></text>
</g>
<g >
<title>__se_sys_getdents (17 samples, 0.06%)</title><rect x="1067.8" y="1237" width="0.7" height="15.0" fill="rgb(215,131,22)" rx="2" ry="2" />
<text x="1070.84" y="1247.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1038.2" y="981" width="0.1" height="15.0" fill="rgb(233,24,19)" rx="2" ry="2" />
<text x="1041.17" y="991.5" ></text>
</g>
<g >
<title>formatReadableQuantity[abi:cxx11] (5 samples, 0.02%)</title><rect x="1058.3" y="1205" width="0.2" height="15.0" fill="rgb(245,10,7)" rx="2" ry="2" />
<text x="1061.30" y="1215.5" ></text>
</g>
<g >
<title>DB::ICompressionCodec::decompress (43 samples, 0.15%)</title><rect x="1012.0" y="981" width="1.7" height="15.0" fill="rgb(214,219,11)" rx="2" ry="2" />
<text x="1014.98" y="991.5" ></text>
</g>
<g >
<title>lapic_next_event (3 samples, 0.01%)</title><rect x="1101.5" y="1157" width="0.1" height="15.0" fill="rgb(240,160,36)" rx="2" ry="2" />
<text x="1104.47" y="1167.5" ></text>
</g>
<g >
<title>DB::ConfigReloader::getNewFileList (8 samples, 0.03%)</title><rect x="95.5" y="1221" width="0.4" height="15.0" fill="rgb(236,92,2)" rx="2" ry="2" />
<text x="98.54" y="1231.5" ></text>
</g>
<g >
<title>Poco::Net::TCPServerDispatcher::run (95 samples, 0.32%)</title><rect x="1042.0" y="1253" width="3.8" height="15.0" fill="rgb(247,142,35)" rx="2" ry="2" />
<text x="1045.05" y="1263.5" ></text>
</g>
<g >
<title>[clickhouse] (5 samples, 0.02%)</title><rect x="181.5" y="1125" width="0.2" height="15.0" fill="rgb(235,128,7)" rx="2" ry="2" />
<text x="184.48" y="1135.5" ></text>
</g>
<g >
<title>kworker/17:1-ev (3 samples, 0.01%)</title><rect x="1072.7" y="1317" width="0.1" height="15.0" fill="rgb(251,37,16)" rx="2" ry="2" />
<text x="1075.67" y="1327.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (3 samples, 0.01%)</title><rect x="1035.2" y="645" width="0.1" height="15.0" fill="rgb(251,30,4)" rx="2" ry="2" />
<text x="1038.18" y="655.5" ></text>
</g>
<g >
<title>proc_task_readdir (7 samples, 0.02%)</title><rect x="1068.2" y="1205" width="0.3" height="15.0" fill="rgb(244,79,4)" rx="2" ry="2" />
<text x="1071.24" y="1215.5" ></text>
</g>
<g >
<title>__GI___libc_close (7 samples, 0.02%)</title><rect x="1043.2" y="1141" width="0.3" height="15.0" fill="rgb(210,78,28)" rx="2" ry="2" />
<text x="1046.20" y="1151.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (6 samples, 0.02%)</title><rect x="1042.7" y="661" width="0.3" height="15.0" fill="rgb(217,8,37)" rx="2" ry="2" />
<text x="1045.72" y="671.5" ></text>
</g>
<g >
<title>[clickhouse] (8 samples, 0.03%)</title><rect x="1023.4" y="885" width="0.3" height="15.0" fill="rgb(225,55,49)" rx="2" ry="2" />
<text x="1026.40" y="895.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="1042.2" y="837" width="0.2" height="15.0" fill="rgb(245,58,21)" rx="2" ry="2" />
<text x="1045.21" y="847.5" ></text>
</g>
<g >
<title>memcpy (9 samples, 0.03%)</title><rect x="1031.3" y="1013" width="0.3" height="15.0" fill="rgb(235,188,19)" rx="2" ry="2" />
<text x="1034.26" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.04%)</title><rect x="79.4" y="869" width="0.4" height="15.0" fill="rgb(252,9,45)" rx="2" ry="2" />
<text x="82.36" y="879.5" ></text>
</g>
<g >
<title>kworker/9:0-eve (7 samples, 0.02%)</title><rect x="1082.9" y="1317" width="0.2" height="15.0" fill="rgb(221,73,29)" rx="2" ry="2" />
<text x="1085.86" y="1327.5" ></text>
</g>
<g >
<title>DB::ColumnLowCardinality::~ColumnLowCardinality (4 samples, 0.01%)</title><rect x="182.6" y="1125" width="0.1" height="15.0" fill="rgb(217,155,35)" rx="2" ry="2" />
<text x="185.55" y="1135.5" ></text>
</g>
<g >
<title>kthread (5 samples, 0.02%)</title><rect x="1082.9" y="1285" width="0.2" height="15.0" fill="rgb(238,91,17)" rx="2" ry="2" />
<text x="1085.94" y="1295.5" ></text>
</g>
<g >
<title>[clickhouse] (20 samples, 0.07%)</title><rect x="32.6" y="789" width="0.8" height="15.0" fill="rgb(247,92,41)" rx="2" ry="2" />
<text x="35.56" y="799.5" ></text>
</g>
<g >
<title>vfs_readv (3 samples, 0.01%)</title><rect x="1181.0" y="1189" width="0.1" height="15.0" fill="rgb(230,112,25)" rx="2" ry="2" />
<text x="1183.97" y="1199.5" ></text>
</g>
<g >
<title>__xstat64 (3 samples, 0.01%)</title><rect x="1040.1" y="1093" width="0.1" height="15.0" fill="rgb(253,165,32)" rx="2" ry="2" />
<text x="1043.09" y="1103.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;::find (3 samples, 0.01%)</title><rect x="183.4" y="1141" width="0.1" height="15.0" fill="rgb(214,208,43)" rx="2" ry="2" />
<text x="186.39" y="1151.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (6 samples, 0.02%)</title><rect x="12.1" y="853" width="0.3" height="15.0" fill="rgb(252,78,24)" rx="2" ry="2" />
<text x="15.12" y="863.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (22 samples, 0.07%)</title><rect x="1060.1" y="1205" width="0.9" height="15.0" fill="rgb(237,48,8)" rx="2" ry="2" />
<text x="1063.10" y="1215.5" ></text>
</g>
<g >
<title>tcache_bin_flush_large (4 samples, 0.01%)</title><rect x="977.8" y="981" width="0.2" height="15.0" fill="rgb(208,180,8)" rx="2" ry="2" />
<text x="980.79" y="991.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (84 samples, 0.28%)</title><rect x="1098.3" y="1189" width="3.4" height="15.0" fill="rgb(224,188,35)" rx="2" ry="2" />
<text x="1101.31" y="1199.5" ></text>
</g>
<g >
<title>opendir (8 samples, 0.03%)</title><rect x="1069.9" y="1285" width="0.3" height="15.0" fill="rgb(214,152,18)" rx="2" ry="2" />
<text x="1072.88" y="1295.5" ></text>
</g>
<g >
<title>memcpy (10 samples, 0.03%)</title><rect x="12.4" y="949" width="0.4" height="15.0" fill="rgb(254,24,45)" rx="2" ry="2" />
<text x="15.44" y="959.5" ></text>
</g>
<g >
<title>try_to_unmap_one (7 samples, 0.02%)</title><rect x="1015.6" y="597" width="0.3" height="15.0" fill="rgb(213,154,8)" rx="2" ry="2" />
<text x="1018.65" y="607.5" ></text>
</g>
<g >
<title>DB::IParserBase::parse (26 samples, 0.09%)</title><rect x="210.7" y="597" width="1.1" height="15.0" fill="rgb(213,134,4)" rx="2" ry="2" />
<text x="213.75" y="607.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1069.0" y="1269" width="0.1" height="15.0" fill="rgb(226,212,7)" rx="2" ry="2" />
<text x="1071.96" y="1279.5" ></text>
</g>
<g >
<title>__madvise (6 samples, 0.02%)</title><rect x="97.8" y="1061" width="0.3" height="15.0" fill="rgb(253,157,26)" rx="2" ry="2" />
<text x="100.81" y="1071.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="156.8" y="1157" width="0.3" height="15.0" fill="rgb(239,184,17)" rx="2" ry="2" />
<text x="159.80" y="1167.5" ></text>
</g>
<g >
<title>ret_from_fork (5 samples, 0.02%)</title><rect x="1082.9" y="1301" width="0.2" height="15.0" fill="rgb(206,140,37)" rx="2" ry="2" />
<text x="1085.94" y="1311.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="1052.9" y="1253" width="0.1" height="15.0" fill="rgb(223,124,11)" rx="2" ry="2" />
<text x="1055.87" y="1263.5" ></text>
</g>
<g >
<title>page_fault (29 samples, 0.10%)</title><rect x="1034.9" y="725" width="1.2" height="15.0" fill="rgb(254,122,2)" rx="2" ry="2" />
<text x="1037.90" y="735.5" ></text>
</g>
<g >
<title>arena_decay (5 samples, 0.02%)</title><rect x="201.4" y="997" width="0.2" height="15.0" fill="rgb(243,221,20)" rx="2" ry="2" />
<text x="204.40" y="1007.5" ></text>
</g>
<g >
<title>remote_function (4 samples, 0.01%)</title><rect x="1096.4" y="1173" width="0.2" height="15.0" fill="rgb(218,158,17)" rx="2" ry="2" />
<text x="1099.40" y="1183.5" ></text>
</g>
<g >
<title>CityHash_v1_0_2::CityHash128WithSeed (17 samples, 0.06%)</title><rect x="1030.4" y="965" width="0.7" height="15.0" fill="rgb(220,210,33)" rx="2" ry="2" />
<text x="1033.39" y="975.5" ></text>
</g>
<g >
<title>do_exit (8 samples, 0.03%)</title><rect x="1093.2" y="1237" width="0.4" height="15.0" fill="rgb(243,138,35)" rx="2" ry="2" />
<text x="1096.24" y="1247.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment