profile_result_sorted.svg
image/svg+xml
Filename: profile_result_sorted.svg
Type: image/svg+xml
Part: 1
<?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="838" onload="init(evt)" viewBox="0 0 1200 838" 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, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.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, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
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(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, 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
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
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;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
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);
}
}
}
search();
}
function unzoom(dont_update_text) {
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]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
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;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
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="838.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Hot Path Profile - patched_phase_B</text>
<text id="details" x="10.00" y="821" > </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="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="821" > </text>
<g id="frames">
<g >
<title>SlabGetNextFreeChunk (10,040,205 samples, 0.05%)</title><rect x="88.8" y="421" width="0.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="91.76" y="431.5" ></text>
</g>
<g >
<title>[unknown] (12,546,060 samples, 0.06%)</title><rect x="1072.9" y="341" width="0.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1075.94" y="351.5" ></text>
</g>
<g >
<title>socket_putmessage_noblock (2,475,377 samples, 0.01%)</title><rect x="917.6" y="357" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="920.56" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (5,407,182 samples, 0.03%)</title><rect x="49.6" y="741" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="52.60" y="751.5" ></text>
</g>
<g >
<title>MemoryContextReset (4,449,833 samples, 0.02%)</title><rect x="110.5" y="373" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="113.46" y="383.5" ></text>
</g>
<g >
<title>calc_bucket (26,033,485 samples, 0.13%)</title><rect x="432.9" y="341" width="1.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="435.94" y="351.5" ></text>
</g>
<g >
<title>hash_seq_search (1,910,816 samples, 0.01%)</title><rect x="869.4" y="293" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="872.43" y="303.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (2,932,386 samples, 0.01%)</title><rect x="137.9" y="389" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="140.93" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (8,376,954 samples, 0.04%)</title><rect x="1183.8" y="485" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1186.81" y="495.5" ></text>
</g>
<g >
<title>DecodeCommit (2,045,827 samples, 0.01%)</title><rect x="49.9" y="501" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="52.91" y="511.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (38,056,483 samples, 0.18%)</title><rect x="121.5" y="373" width="2.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="124.51" y="383.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (14,540,583 samples, 0.07%)</title><rect x="439.6" y="341" width="0.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="442.60" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (2,997,049 samples, 0.01%)</title><rect x="97.0" y="469" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="100.02" y="479.5" ></text>
</g>
<g >
<title>merge_children (3,735,352 samples, 0.02%)</title><rect x="91.6" y="405" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="94.64" y="415.5" ></text>
</g>
<g >
<title>index_getnext_slot (4,569,610 samples, 0.02%)</title><rect x="118.7" y="165" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="121.74" y="175.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (2,111,268 samples, 0.01%)</title><rect x="123.4" y="293" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="126.38" y="303.5" ></text>
</g>
<g >
<title>perform_spin_delay (27,050,481 samples, 0.13%)</title><rect x="914.0" y="325" width="1.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="916.96" y="335.5" ></text>
</g>
<g >
<title>SlabFree (16,416,700 samples, 0.08%)</title><rect x="831.9" y="373" width="1.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="834.93" y="383.5" ></text>
</g>
<g >
<title>pfree (1,990,698 samples, 0.01%)</title><rect x="20.0" y="741" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="23.04" y="751.5" ></text>
</g>
<g >
<title>heap_getnextslot (2,074,381 samples, 0.01%)</title><rect x="118.0" y="229" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="121.03" y="239.5" ></text>
</g>
<g >
<title>_bt_search (2,403,212 samples, 0.01%)</title><rect x="26.2" y="309" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="29.20" y="319.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref (3,416,020 samples, 0.02%)</title><rect x="858.3" y="357" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="861.27" y="367.5" ></text>
</g>
<g >
<title>index_open (5,741,179 samples, 0.03%)</title><rect x="117.4" y="245" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="120.44" y="255.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (35,493,042 samples, 0.17%)</title><rect x="722.6" y="389" width="2.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="725.59" y="399.5" ></text>
</g>
<g >
<title>hash_seq_search (2,754,984,418 samples, 13.31%)</title><rect x="460.2" y="389" width="157.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="463.19" y="399.5" >hash_seq_search</text>
</g>
<g >
<title>pairingheap_remove (47,062,966 samples, 0.23%)</title><rect x="1088.1" y="405" width="2.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1091.14" y="415.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,133,818 samples, 0.01%)</title><rect x="116.6" y="293" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="119.57" y="303.5" ></text>
</g>
<g >
<title>fastgetattr (2,539,309 samples, 0.01%)</title><rect x="124.7" y="117" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="127.66" y="127.5" ></text>
</g>
<g >
<title>[anon] (1,889,931 samples, 0.01%)</title><rect x="22.7" y="757" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="25.73" y="767.5" ></text>
</g>
<g >
<title>pgstat_entry_ref_hash_insert (2,402,127 samples, 0.01%)</title><rect x="858.3" y="325" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="861.30" y="335.5" ></text>
</g>
<g >
<title>ReorderBufferIterTXNNext (127,636,535 samples, 0.62%)</title><rect x="858.8" y="437" width="7.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="861.80" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferCommit (14,298,557,649 samples, 69.10%)</title><rect x="104.3" y="485" width="815.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="107.31" y="495.5" >ReorderBufferCommit</text>
</g>
<g >
<title>standby_decode (7,034,413 samples, 0.03%)</title><rect x="103.6" y="517" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="106.56" y="527.5" ></text>
</g>
<g >
<title>BackendMain (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="629" width="1138.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="53.90" y="639.5" >BackendMain</text>
</g>
<g >
<title>hash_create (17,256,765 samples, 0.08%)</title><rect x="127.6" y="421" width="1.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="130.63" y="431.5" ></text>
</g>
<g >
<title>LockRelationOid (41,257,296 samples, 0.20%)</title><rect x="121.5" y="389" width="2.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="124.51" y="399.5" ></text>
</g>
<g >
<title>fmtint (2,665,935 samples, 0.01%)</title><rect x="830.2" y="341" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="833.18" y="351.5" ></text>
</g>
<g >
<title>index_open (78,428,438 samples, 0.38%)</title><rect x="116.0" y="405" width="4.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="118.95" y="415.5" ></text>
</g>
<g >
<title>[libc.so.6] (65,071,134 samples, 0.31%)</title><rect x="152.8" y="357" width="3.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="155.83" y="367.5" ></text>
</g>
<g >
<title>WalSndLoop (42,220,254 samples, 0.20%)</title><rect x="24.0" y="629" width="2.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="27.01" y="639.5" ></text>
</g>
<g >
<title>XLogNextRecord (3,937,602 samples, 0.02%)</title><rect x="22.1" y="757" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="25.06" y="767.5" ></text>
</g>
<g >
<title>AbortTransaction (66,897,649 samples, 0.32%)</title><rect x="106.6" y="405" width="3.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="109.56" y="415.5" ></text>
</g>
<g >
<title>pgstat_lock_entry (2,365,192 samples, 0.01%)</title><rect x="1179.1" y="437" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1182.06" y="447.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref_locked (6,246,605 samples, 0.03%)</title><rect x="1178.8" y="453" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1181.84" y="463.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,581,212 samples, 0.01%)</title><rect x="901.4" y="341" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="904.43" y="351.5" ></text>
</g>
<g >
<title>initscan (3,019,206 samples, 0.01%)</title><rect x="124.2" y="165" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="127.18" y="175.5" ></text>
</g>
<g >
<title>ReorderBufferCommit (4,095,698 samples, 0.02%)</title><rect x="23.8" y="533" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="26.78" y="543.5" ></text>
</g>
<g >
<title>ReorderBufferAllocChange (16,957,400 samples, 0.08%)</title><rect x="1180.9" y="469" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1183.89" y="479.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref (3,027,262 samples, 0.01%)</title><rect x="1170.7" y="341" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1173.71" y="351.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (5,241,665 samples, 0.03%)</title><rect x="117.5" y="197" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="120.46" y="207.5" ></text>
</g>
<g >
<title>ValidXLogRecord (65,556,792 samples, 0.32%)</title><rect x="45.5" y="725" width="3.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="48.48" y="735.5" ></text>
</g>
<g >
<title>pg_vsnprintf (4,960,330 samples, 0.02%)</title><rect x="1170.3" y="357" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="1173.34" y="367.5" ></text>
</g>
<g >
<title>index_endscan (1,924,377 samples, 0.01%)</title><rect x="120.6" y="405" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="123.59" y="415.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (3,106,566 samples, 0.02%)</title><rect x="883.1" y="293" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="886.12" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (10,801,048 samples, 0.05%)</title><rect x="82.5" y="453" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="85.52" y="463.5" ></text>
</g>
<g >
<title>relation_open (33,316,986 samples, 0.16%)</title><rect x="24.1" y="453" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="27.11" y="463.5" ></text>
</g>
<g >
<title>uint32_hash (7,066,403 samples, 0.03%)</title><rect x="1173.9" y="405" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1176.92" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (36,415,034 samples, 0.18%)</title><rect x="880.9" y="309" width="2.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="883.88" y="319.5" ></text>
</g>
<g >
<title>XLogSendLogical (4,095,698 samples, 0.02%)</title><rect x="23.8" y="597" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="26.78" y="607.5" ></text>
</g>
<g >
<title>heap_beginscan (4,294,000 samples, 0.02%)</title><rect x="124.1" y="181" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="127.14" y="191.5" ></text>
</g>
<g >
<title>GetWALInsertionTimeLine (2,007,613 samples, 0.01%)</title><rect x="45.0" y="693" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="48.01" y="703.5" ></text>
</g>
<g >
<title>ProcReleaseLocks (7,618,536 samples, 0.04%)</title><rect x="109.2" y="357" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="112.19" y="367.5" ></text>
</g>
<g >
<title>pg_decode_begin_txn (29,159,931 samples, 0.14%)</title><rect x="916.3" y="421" width="1.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="919.30" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferProcessPartialChange (3,140,572 samples, 0.02%)</title><rect x="101.2" y="469" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="104.20" y="479.5" ></text>
</g>
<g >
<title>index_getnext_tid (2,006,451 samples, 0.01%)</title><rect x="24.1" y="245" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="27.11" y="255.5" ></text>
</g>
<g >
<title>merge_children (5,607,204 samples, 0.03%)</title><rect x="1090.5" y="373" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1093.50" y="383.5" ></text>
</g>
<g >
<title>dlist_delete (4,326,731 samples, 0.02%)</title><rect x="1098.3" y="325" width="0.3" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1101.31" y="335.5" ></text>
</g>
<g >
<title>DecodeCommit (4,968,276 samples, 0.02%)</title><rect x="49.6" y="517" width="0.3" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="52.62" y="527.5" ></text>
</g>
<g >
<title>_bt_readpage (3,006,203 samples, 0.01%)</title><rect x="25.2" y="149" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="28.19" y="159.5" ></text>
</g>
<g >
<title>[libc.so.6] (6,165,230 samples, 0.03%)</title><rect x="1083.6" y="389" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1086.64" y="399.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (76,760,394 samples, 0.37%)</title><rect x="780.1" y="373" width="4.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="783.12" y="383.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (74,594,396 samples, 0.36%)</title><rect x="116.2" y="373" width="4.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="119.17" y="383.5" ></text>
</g>
<g >
<title>FilterByOrigin (6,390,397 samples, 0.03%)</title><rect x="98.5" y="485" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="101.47" y="495.5" ></text>
</g>
<g >
<title>__send (3,721,175 samples, 0.02%)</title><rect x="50.0" y="741" width="0.2" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="53.03" y="751.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,261,368 samples, 0.01%)</title><rect x="22.8" y="741" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="25.84" y="751.5" ></text>
</g>
<g >
<title>LWLockAcquire (4,061,060 samples, 0.02%)</title><rect x="915.9" y="389" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="918.87" y="399.5" ></text>
</g>
<g >
<title>hash_seq_search (5,979,304 samples, 0.03%)</title><rect x="122.4" y="309" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="125.38" y="319.5" ></text>
</g>
<g >
<title>UpdateDecodingStats (7,139,141 samples, 0.03%)</title><rect x="858.2" y="405" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="861.18" y="415.5" ></text>
</g>
<g >
<title>WalSndLoop (4,733,944 samples, 0.02%)</title><rect x="50.3" y="597" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="53.28" y="607.5" ></text>
</g>
<g >
<title>PostgresMain (4,733,944 samples, 0.02%)</title><rect x="50.3" y="645" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="53.28" y="655.5" ></text>
</g>
<g >
<title>pg_atomic_read_u32 (7,195,863 samples, 0.03%)</title><rect x="909.3" y="309" width="0.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="912.32" y="319.5" ></text>
</g>
<g >
<title>table_relation_size (2,748,572 samples, 0.01%)</title><rect x="124.2" y="133" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="127.18" y="143.5" ></text>
</g>
<g >
<title>index_fetch_heap (4,074,273 samples, 0.02%)</title><rect x="118.7" y="149" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="121.74" y="159.5" ></text>
</g>
<g >
<title>pgstat_report_replslot (5,993,140 samples, 0.03%)</title><rect x="858.2" y="389" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="861.22" y="399.5" ></text>
</g>
<g >
<title>heap2_decode (254,271,818 samples, 1.23%)</title><rect x="83.5" y="517" width="14.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="86.54" y="527.5" ></text>
</g>
<g >
<title>dlist_delete (2,106,636 samples, 0.01%)</title><rect x="1086.1" y="373" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="1089.08" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (23,151,209 samples, 0.11%)</title><rect x="789.7" y="389" width="1.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="792.70" y="399.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (8,252,715 samples, 0.04%)</title><rect x="789.2" y="357" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="792.23" y="367.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (970,091,491 samples, 4.69%)</title><rect x="724.6" y="389" width="55.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="727.61" y="399.5" >Memor..</text>
</g>
<g >
<title>ReorderBufferProcessTXN (2,456,306 samples, 0.01%)</title><rect x="50.3" y="485" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="53.28" y="495.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (40,809,466 samples, 0.20%)</title><rect x="81.2" y="501" width="2.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="84.22" y="511.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (59,708,164 samples, 0.29%)</title><rect x="1174.5" y="437" width="3.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1177.50" y="447.5" ></text>
</g>
<g >
<title>_bt_first (4,016,286 samples, 0.02%)</title><rect x="24.8" y="261" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="27.85" y="271.5" ></text>
</g>
<g >
<title>table_open (3,080,392 samples, 0.01%)</title><rect x="116.5" y="325" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="119.51" y="335.5" ></text>
</g>
<g >
<title>hash_initial_lookup (4,000,619 samples, 0.02%)</title><rect x="1173.7" y="389" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1176.70" y="399.5" ></text>
</g>
<g >
<title>LockRelationOid (3,834,042 samples, 0.02%)</title><rect x="116.0" y="373" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="118.95" y="383.5" ></text>
</g>
<g >
<title>btgettuple (2,775,062 samples, 0.01%)</title><rect x="49.7" y="389" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="52.73" y="399.5" ></text>
</g>
<g >
<title>SlabGetNextFreeChunk (12,782,995 samples, 0.06%)</title><rect x="1085.3" y="389" width="0.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1088.35" y="399.5" ></text>
</g>
<g >
<title>index_getnext_slot (5,775,467 samples, 0.03%)</title><rect x="26.0" y="373" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="29.01" y="383.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (2,518,585 samples, 0.01%)</title><rect x="14.7" y="757" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="17.68" y="767.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,111,268 samples, 0.01%)</title><rect x="123.4" y="325" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="126.38" y="335.5" ></text>
</g>
<g >
<title>memcpy (68,059,386 samples, 0.33%)</title><rect x="1069.1" y="357" width="3.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1072.06" y="367.5" ></text>
</g>
<g >
<title>WalSndUpdateProgress (3,498,752 samples, 0.02%)</title><rect x="919.4" y="405" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="922.40" y="415.5" ></text>
</g>
<g >
<title>ReorderBufferAddSnapshot (1,533,794,992 samples, 7.41%)</title><rect x="1084.3" y="453" width="87.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1087.32" y="463.5" >ReorderBuf..</text>
</g>
<g >
<title>hash_search_with_hash_value (30,839,427 samples, 0.15%)</title><rect x="81.7" y="469" width="1.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="84.70" y="479.5" ></text>
</g>
<g >
<title>ScanPgRelation (9,732,479 samples, 0.05%)</title><rect x="119.3" y="181" width="0.5" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="122.26" y="191.5" ></text>
</g>
<g >
<title>appendStringInfo (7,791,430 samples, 0.04%)</title><rect x="918.8" y="405" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="921.81" y="415.5" ></text>
</g>
<g >
<title>_bt_search (2,319,904 samples, 0.01%)</title><rect x="111.7" y="309" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="114.65" y="319.5" ></text>
</g>
<g >
<title>ServerLoop (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="677" width="1138.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="53.90" y="687.5" >ServerLoop</text>
</g>
<g >
<title>PlanCacheRelCallback (145,666,830 samples, 0.70%)</title><rect x="394.9" y="405" width="8.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="397.88" y="415.5" ></text>
</g>
<g >
<title>SlabGetNextFreeChunk (6,316,026 samples, 0.03%)</title><rect x="1181.4" y="421" width="0.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1184.40" y="431.5" ></text>
</g>
<g >
<title>relation_open (3,282,905 samples, 0.02%)</title><rect x="119.4" y="133" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="122.43" y="143.5" ></text>
</g>
<g >
<title>pairingheap_remove (3,830,385 samples, 0.02%)</title><rect x="137.9" y="405" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="140.88" y="415.5" ></text>
</g>
<g >
<title>dlist_is_empty (2,217,263 samples, 0.01%)</title><rect x="866.0" y="421" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="868.96" y="431.5" ></text>
</g>
<g >
<title>dlist_delete_from (3,060,190 samples, 0.01%)</title><rect x="832.7" y="357" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="835.65" y="367.5" ></text>
</g>
<g >
<title>AtEOXact_Parallel (1,970,583 samples, 0.01%)</title><rect x="108.0" y="389" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="111.01" y="399.5" ></text>
</g>
<g >
<title>SlabGetNextFreeChunk (17,142,510 samples, 0.08%)</title><rect x="95.7" y="421" width="1.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="98.74" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (7,305,316 samples, 0.04%)</title><rect x="112.9" y="389" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="115.94" y="399.5" ></text>
</g>
<g >
<title>pg_snprintf (4,960,330 samples, 0.02%)</title><rect x="1170.3" y="373" width="0.3" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="1173.34" y="383.5" ></text>
</g>
<g >
<title>[unknown] (2,273,371 samples, 0.01%)</title><rect x="42.5" y="645" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="45.55" y="655.5" ></text>
</g>
<g >
<title>__libc_pread (202,216,990 samples, 0.98%)</title><rect x="708.7" y="341" width="11.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="711.71" y="351.5" ></text>
</g>
<g >
<title>merge (10,364,361 samples, 0.05%)</title><rect x="1066.9" y="373" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1069.86" y="383.5" ></text>
</g>
<g >
<title>socket_flush_if_writable (4,878,356 samples, 0.02%)</title><rect x="1188.4" y="549" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1191.38" y="559.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (2,858,310 samples, 0.01%)</title><rect x="1181.2" y="421" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1184.24" y="431.5" ></text>
</g>
<g >
<title>merge (2,967,033 samples, 0.01%)</title><rect x="1182.1" y="421" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1185.05" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferFreeSnap (38,861,607 samples, 0.19%)</title><rect x="141.8" y="405" width="2.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="144.82" y="415.5" ></text>
</g>
<g >
<title>SnapBuildProcessChange (9,599,452 samples, 0.05%)</title><rect x="103.0" y="501" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="106.02" y="511.5" ></text>
</g>
<g >
<title>SearchSysCache1 (49,582,419 samples, 0.24%)</title><rect x="117.4" y="325" width="2.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="120.38" y="335.5" ></text>
</g>
<g >
<title>main (4,733,944 samples, 0.02%)</title><rect x="50.3" y="741" width="0.2" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="53.28" y="751.5" ></text>
</g>
<g >
<title>TransactionLogFetch (8,189,721 samples, 0.04%)</title><rect x="1091.8" y="373" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1094.78" y="383.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (77,907,224 samples, 0.38%)</title><rect x="10.2" y="757" width="4.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="13.22" y="767.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (19,401,378,025 samples, 93.76%)</title><rect x="78.1" y="533" width="1106.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="81.06" y="543.5" >LogicalDecodingProcessRecord</text>
</g>
<g >
<title>ReorderBufferBuildTupleCidHash (146,146,761 samples, 0.71%)</title><rect x="126.2" y="437" width="8.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="129.23" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (2,788,821 samples, 0.01%)</title><rect x="97.9" y="469" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="100.88" y="479.5" ></text>
</g>
<g >
<title>internal_putbytes (1,986,705 samples, 0.01%)</title><rect x="918.7" y="341" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="921.70" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeReserve (2,790,300 samples, 0.01%)</title><rect x="833.8" y="389" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="836.76" y="399.5" ></text>
</g>
<g >
<title>DecodeCommit (4,733,944 samples, 0.02%)</title><rect x="50.3" y="533" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="53.28" y="543.5" ></text>
</g>
<g >
<title>pairingheap_add (2,967,033 samples, 0.01%)</title><rect x="1182.1" y="437" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1185.05" y="447.5" ></text>
</g>
<g >
<title>systable_getnext (2,023,846 samples, 0.01%)</title><rect x="24.4" y="293" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="27.39" y="303.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (13,346,002 samples, 0.06%)</title><rect x="98.9" y="469" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="101.86" y="479.5" ></text>
</g>
<g >
<title>GetRmgr (26,534,464 samples, 0.13%)</title><rect x="79.6" y="517" width="1.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="82.62" y="527.5" ></text>
</g>
<g >
<title>_start (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="757" width="1138.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="53.90" y="767.5" >_start</text>
</g>
<g >
<title>index_getnext_slot (3,437,273 samples, 0.02%)</title><rect x="25.5" y="213" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="28.51" y="223.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,156,944,467 samples, 10.42%)</title><rect x="938.8" y="357" width="123.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="941.85" y="367.5" >[libc.so.6]</text>
</g>
<g >
<title>[libc.so.6] (25,095,755 samples, 0.12%)</title><rect x="41.1" y="693" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="44.12" y="703.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (2,782,805 samples, 0.01%)</title><rect x="101.4" y="469" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="104.38" y="479.5" ></text>
</g>
<g >
<title>index_getnext_slot (3,738,797 samples, 0.02%)</title><rect x="24.5" y="277" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="27.50" y="287.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeTXN (92,652,213 samples, 0.45%)</title><rect x="1068.4" y="389" width="5.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1071.40" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeChange (437,017,931 samples, 2.11%)</title><rect x="832.9" y="405" width="24.9" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="835.87" y="415.5" >R..</text>
</g>
<g >
<title>btgettuple (4,016,286 samples, 0.02%)</title><rect x="24.8" y="277" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="27.85" y="287.5" ></text>
</g>
<g >
<title>RelationCacheInvalidate (25,386,138 samples, 0.12%)</title><rect x="868.1" y="325" width="1.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="871.10" y="335.5" ></text>
</g>
<g >
<title>systable_beginscan (2,006,451 samples, 0.01%)</title><rect x="24.1" y="389" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="27.11" y="399.5" ></text>
</g>
<g >
<title>PostgresMain (4,095,698 samples, 0.02%)</title><rect x="23.8" y="661" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="26.78" y="671.5" ></text>
</g>
<g >
<title>PinBufferForBlock (2,334,159 samples, 0.01%)</title><rect x="125.0" y="53" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="127.99" y="63.5" ></text>
</g>
<g >
<title>RelidByRelfilenumber (3,466,183 samples, 0.02%)</title><rect x="49.7" y="453" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="52.69" y="463.5" ></text>
</g>
<g >
<title>XLogDecodeNextRecord (405,511,661 samples, 1.96%)</title><rect x="26.5" y="741" width="23.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="29.47" y="751.5" >X..</text>
</g>
<g >
<title>PlanCacheRelCallback (2,401,708 samples, 0.01%)</title><rect x="10.6" y="741" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.63" y="751.5" ></text>
</g>
<g >
<title>hash_seq_term (4,698,643 samples, 0.02%)</title><rect x="895.1" y="309" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="898.10" y="319.5" ></text>
</g>
<g >
<title>AbortCurrentTransactionInternal (76,572,884 samples, 0.37%)</title><rect x="106.5" y="421" width="4.4" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="109.53" y="431.5" ></text>
</g>
<g >
<title>index_open (36,918,539 samples, 0.18%)</title><rect x="123.9" y="309" width="2.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="126.90" y="319.5" ></text>
</g>
<g >
<title>ReadPageInternal (47,422,832 samples, 0.23%)</title><rect x="42.8" y="725" width="2.7" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="45.77" y="735.5" ></text>
</g>
<g >
<title>index_open (2,866,003 samples, 0.01%)</title><rect x="116.3" y="309" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="119.28" y="319.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (4,226,988 samples, 0.02%)</title><rect x="1174.1" y="389" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1177.09" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferAllocChange (32,647,377 samples, 0.16%)</title><rect x="1084.6" y="437" width="1.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1087.57" y="447.5" ></text>
</g>
<g >
<title>ProcessClientReadInterrupt (6,844,328 samples, 0.03%)</title><rect x="63.0" y="501" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="65.98" y="511.5" ></text>
</g>
<g >
<title>[unknown] (1,995,532 samples, 0.01%)</title><rect x="857.6" y="341" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="860.61" y="351.5" ></text>
</g>
<g >
<title>table_open (82,841,627 samples, 0.40%)</title><rect x="121.5" y="421" width="4.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="124.51" y="431.5" ></text>
</g>
<g >
<title>_bt_search (2,504,180 samples, 0.01%)</title><rect x="49.7" y="357" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="52.74" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferRestoreChange (2,643,102 samples, 0.01%)</title><rect x="20.7" y="757" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="23.67" y="767.5" ></text>
</g>
<g >
<title>_bt_search (1,827,787 samples, 0.01%)</title><rect x="25.0" y="245" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="27.97" y="255.5" ></text>
</g>
<g >
<title>ResetCatalogCache (27,605,367 samples, 0.13%)</title><rect x="869.7" y="309" width="1.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="872.67" y="319.5" ></text>
</g>
<g >
<title>LWLockRelease (10,528,139 samples, 0.05%)</title><rect x="909.9" y="341" width="0.6" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="912.86" y="351.5" ></text>
</g>
<g >
<title>SearchSysCache2 (8,068,140 samples, 0.04%)</title><rect x="116.9" y="293" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="119.92" y="303.5" ></text>
</g>
<g >
<title>systable_beginscan (4,890,446 samples, 0.02%)</title><rect x="119.4" y="165" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="122.36" y="175.5" ></text>
</g>
<g >
<title>OpenTransientFilePerm (1,862,906 samples, 0.01%)</title><rect x="831.1" y="389" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="834.06" y="399.5" ></text>
</g>
<g >
<title>XLogReaderValidatePageHeader (1,859,252 samples, 0.01%)</title><rect x="44.7" y="709" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="47.68" y="719.5" ></text>
</g>
<g >
<title>ReorderBufferIterTXNFinish (2,144,324 samples, 0.01%)</title><rect x="705.2" y="437" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="708.25" y="447.5" ></text>
</g>
<g >
<title>merge (24,360,730 samples, 0.12%)</title><rect x="786.8" y="357" width="1.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="789.85" y="367.5" ></text>
</g>
<g >
<title>memcpy (664,314,620 samples, 3.21%)</title><rect x="791.7" y="389" width="37.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="794.66" y="399.5" >mem..</text>
</g>
<g >
<title>ScanPgRelation (1,853,283 samples, 0.01%)</title><rect x="116.6" y="245" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="119.57" y="255.5" ></text>
</g>
<g >
<title>pairingheap_remove (9,145,292 samples, 0.04%)</title><rect x="1094.5" y="373" width="0.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1097.48" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (5,914,185 samples, 0.03%)</title><rect x="20.3" y="741" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="23.26" y="751.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (43,406,099 samples, 0.21%)</title><rect x="1171.9" y="437" width="2.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1174.85" y="447.5" ></text>
</g>
<g >
<title>index_getnext_slot (4,016,286 samples, 0.02%)</title><rect x="24.8" y="309" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="27.85" y="319.5" ></text>
</g>
<g >
<title>postmaster_child_launch (4,733,944 samples, 0.02%)</title><rect x="50.3" y="677" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="53.28" y="687.5" ></text>
</g>
<g >
<title>heap_decode (96,833,859 samples, 0.47%)</title><rect x="98.0" y="517" width="5.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="101.04" y="527.5" ></text>
</g>
<g >
<title>WalSndLoop (2,045,827 samples, 0.01%)</title><rect x="49.9" y="565" width="0.1" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="52.91" y="575.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,990,416 samples, 0.01%)</title><rect x="123.7" y="373" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="126.68" y="383.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref_cached (1,936,697 samples, 0.01%)</title><rect x="1178.9" y="421" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1181.89" y="431.5" ></text>
</g>
<g >
<title>index_getnext_tid (1,826,307 samples, 0.01%)</title><rect x="112.2" y="357" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="115.23" y="367.5" ></text>
</g>
<g >
<title>UpdateDecodingStats (8,634,945 samples, 0.04%)</title><rect x="1178.7" y="485" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1181.70" y="495.5" ></text>
</g>
<g >
<title>[unknown] (181,099,375 samples, 0.88%)</title><rect x="1159.9" y="357" width="10.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1162.94" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferProcessXid (18,517,321 samples, 0.09%)</title><rect x="101.9" y="501" width="1.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="104.91" y="511.5" ></text>
</g>
<g >
<title>xact_decode (4,968,276 samples, 0.02%)</title><rect x="49.6" y="533" width="0.3" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="52.62" y="543.5" ></text>
</g>
<g >
<title>nocachegetattr (2,000,410 samples, 0.01%)</title><rect x="124.7" y="101" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="127.69" y="111.5" ></text>
</g>
<g >
<title>SearchCatCache2 (3,738,797 samples, 0.02%)</title><rect x="24.5" y="341" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="27.50" y="351.5" ></text>
</g>
<g >
<title>OutputPluginPrepareWrite (5,639,756 samples, 0.03%)</title><rect x="916.5" y="389" width="0.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="919.54" y="399.5" ></text>
</g>
<g >
<title>cfree (57,177,213 samples, 0.28%)</title><rect x="702.0" y="389" width="3.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="704.99" y="399.5" ></text>
</g>
<g >
<title>hash_initial_lookup (1,814,717 samples, 0.01%)</title><rect x="900.8" y="293" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="903.80" y="303.5" ></text>
</g>
<g >
<title>__libc_start_main (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="741" width="1138.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="53.90" y="751.5" >__libc_start_main</text>
</g>
<g >
<title>memset (2,663,725 samples, 0.01%)</title><rect x="784.5" y="373" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="787.50" y="383.5" ></text>
</g>
<g >
<title>register_seq_scan (79,450,868 samples, 0.38%)</title><rect x="455.7" y="373" width="4.5" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="458.66" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferXidHasBaseSnapshot (6,719,165 samples, 0.03%)</title><rect x="103.2" y="485" width="0.3" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="106.16" y="495.5" ></text>
</g>
<g >
<title>merge_children (3,143,303 samples, 0.02%)</title><rect x="91.4" y="421" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="94.43" y="431.5" ></text>
</g>
<g >
<title>palloc (5,528,043 samples, 0.03%)</title><rect x="1183.5" y="469" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1186.50" y="479.5" ></text>
</g>
<g >
<title>pvsnprintf (4,436,819 samples, 0.02%)</title><rect x="917.7" y="357" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="920.71" y="367.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (5,452,252 samples, 0.03%)</title><rect x="117.5" y="213" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="120.46" y="223.5" ></text>
</g>
<g >
<title>recv (174,884,411 samples, 0.85%)</title><rect x="63.8" y="485" width="10.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="66.82" y="495.5" ></text>
</g>
<g >
<title>hash_search (37,008,816 samples, 0.18%)</title><rect x="113.7" y="421" width="2.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="116.71" y="431.5" ></text>
</g>
<g >
<title>__strdup (2,454,193 samples, 0.01%)</title><rect x="720.5" y="373" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="723.46" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (3,445,700 samples, 0.02%)</title><rect x="93.7" y="453" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="96.71" y="463.5" ></text>
</g>
<g >
<title>hash_seq_search (182,257,159 samples, 0.88%)</title><rect x="885.0" y="325" width="10.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="887.97" y="335.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (25,080,682 samples, 0.12%)</title><rect x="24.5" y="405" width="1.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="27.50" y="415.5" ></text>
</g>
<g >
<title>FileAccess (11,362,898 samples, 0.05%)</title><rect x="707.8" y="373" width="0.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="710.84" y="383.5" ></text>
</g>
<g >
<title>_bt_first (2,775,062 samples, 0.01%)</title><rect x="49.7" y="373" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="52.73" y="383.5" ></text>
</g>
<g >
<title>secure_write (3,339,123 samples, 0.02%)</title><rect x="917.4" y="309" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="920.37" y="319.5" ></text>
</g>
<g >
<title>RelidByRelfilenumber (39,092,453 samples, 0.19%)</title><rect x="24.1" y="501" width="2.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="27.11" y="511.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (2,595,636 samples, 0.01%)</title><rect x="1183.0" y="453" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1186.03" y="463.5" ></text>
</g>
<g >
<title>index_getnext_tid (4,059,971 samples, 0.02%)</title><rect x="25.7" y="213" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="28.70" y="223.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (1,981,552 samples, 0.01%)</title><rect x="120.0" y="117" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="123.00" y="127.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (1,805,386 samples, 0.01%)</title><rect x="120.9" y="309" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="123.90" y="319.5" ></text>
</g>
<g >
<title>hash_initial_lookup (2,099,191 samples, 0.01%)</title><rect x="103.8" y="437" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="106.85" y="447.5" ></text>
</g>
<g >
<title>[libc.so.6] (112,222,860 samples, 0.54%)</title><rect x="1075.0" y="405" width="6.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1078.01" y="415.5" ></text>
</g>
<g >
<title>hash_initial_lookup (2,702,852 samples, 0.01%)</title><rect x="115.4" y="389" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="118.35" y="399.5" ></text>
</g>
<g >
<title>[[vdso]] (26,726,038 samples, 0.13%)</title><rect x="59.8" y="517" width="1.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="62.81" y="527.5" ></text>
</g>
<g >
<title>RelationReloadNailed (5,775,467 samples, 0.03%)</title><rect x="26.0" y="421" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="29.01" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferReplay (2,045,827 samples, 0.01%)</title><rect x="49.9" y="469" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="52.91" y="479.5" ></text>
</g>
<g >
<title>hash_search (7,394,318 samples, 0.04%)</title><rect x="1183.9" y="469" width="0.4" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1186.87" y="479.5" ></text>
</g>
<g >
<title>AtCleanup_Memory (5,395,601 samples, 0.03%)</title><rect x="110.4" y="389" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="113.41" y="399.5" ></text>
</g>
<g >
<title>FreeDesc (3,540,104 samples, 0.02%)</title><rect x="1094.2" y="373" width="0.2" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="1097.21" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeChange (1,257,523,684 samples, 6.08%)</title><rect x="1098.6" y="389" width="71.7" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1101.63" y="399.5" >ReorderB..</text>
</g>
<g >
<title>WalSndWaitForWal (2,321,773 samples, 0.01%)</title><rect x="45.3" y="693" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="48.35" y="703.5" ></text>
</g>
<g >
<title>hash_search (3,881,518 samples, 0.02%)</title><rect x="1189.3" y="757" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1192.30" y="767.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (8,455,399 samples, 0.04%)</title><rect x="116.9" y="325" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="119.90" y="335.5" ></text>
</g>
<g >
<title>InvalidateCatalogSnapshot (107,775,746 samples, 0.52%)</title><rect x="388.7" y="405" width="6.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="391.73" y="415.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,043,753,812 samples, 5.04%)</title><rect x="180.0" y="405" width="59.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="182.96" y="415.5" >[libc...</text>
</g>
<g >
<title>RelationRebuildRelation (2,262,191 samples, 0.01%)</title><rect x="24.7" y="261" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="27.72" y="271.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (28,735,580 samples, 0.14%)</title><rect x="90.2" y="453" width="1.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="93.21" y="463.5" ></text>
</g>
<g >
<title>MemoryContextResetOnly (3,591,686 samples, 0.02%)</title><rect x="110.5" y="357" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="113.51" y="367.5" ></text>
</g>
<g >
<title>InvalidateCatalogSnapshot (2,650,815 samples, 0.01%)</title><rect x="879.6" y="341" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="882.64" y="351.5" ></text>
</g>
<g >
<title>hash_search (4,243,290 samples, 0.02%)</title><rect x="14.8" y="741" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="17.82" y="751.5" ></text>
</g>
<g >
<title>RelfilenumberMapInvalidateCallback (211,762,464 samples, 1.02%)</title><rect x="883.3" y="341" width="12.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="886.29" y="351.5" ></text>
</g>
<g >
<title>_bt_compare (3,614,642 samples, 0.02%)</title><rect x="120.8" y="325" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="123.81" y="335.5" ></text>
</g>
<g >
<title>AtEOXact_PgStat (2,827,421 samples, 0.01%)</title><rect x="108.1" y="389" width="0.2" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="111.12" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferRestoreCleanup (1,863,102 samples, 0.01%)</title><rect x="22.6" y="661" width="0.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="25.63" y="671.5" ></text>
</g>
<g >
<title>systable_getnext (2,006,451 samples, 0.01%)</title><rect x="24.1" y="277" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="27.11" y="287.5" ></text>
</g>
<g >
<title>LockRelease (2,028,421 samples, 0.01%)</title><rect x="118.6" y="133" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="121.60" y="143.5" ></text>
</g>
<g >
<title>ReorderBufferGetInvalidations (44,674,356 samples, 0.22%)</title><rect x="1171.8" y="453" width="2.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1174.78" y="463.5" ></text>
</g>
<g >
<title>register_seq_scan (8,228,759 samples, 0.04%)</title><rect x="884.5" y="309" width="0.5" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="887.51" y="319.5" ></text>
</g>
<g >
<title>relation_open (3,080,392 samples, 0.01%)</title><rect x="116.5" y="309" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="119.51" y="319.5" ></text>
</g>
<g >
<title>_mm_cvtsi32_si128 (1,850,550 samples, 0.01%)</title><rect x="47.2" y="693" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="50.17" y="703.5" ></text>
</g>
<g >
<title>BackendMain (4,733,944 samples, 0.02%)</title><rect x="50.3" y="661" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="53.28" y="671.5" ></text>
</g>
<g >
<title>RelationBuildDesc (17,593,535 samples, 0.09%)</title><rect x="111.4" y="421" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="114.39" y="431.5" ></text>
</g>
<g >
<title>AtEOXact_MultiXact (1,896,598 samples, 0.01%)</title><rect x="107.9" y="389" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="110.87" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferXidSetCatalogChanges (9,263,671 samples, 0.04%)</title><rect x="97.5" y="485" width="0.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="100.51" y="495.5" ></text>
</g>
<g >
<title>AllocSetFree (9,589,793 samples, 0.05%)</title><rect x="1096.0" y="357" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1098.97" y="367.5" ></text>
</g>
<g >
<title>systable_getnext (5,775,467 samples, 0.03%)</title><rect x="26.0" y="389" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="29.01" y="399.5" ></text>
</g>
<g >
<title>btgettuple (7,566,164 samples, 0.04%)</title><rect x="25.1" y="197" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="28.08" y="207.5" ></text>
</g>
<g >
<title>tag_hash (94,442,342 samples, 0.46%)</title><rect x="129.2" y="405" width="5.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="132.18" y="415.5" ></text>
</g>
<g >
<title>memset (406,597,749 samples, 1.96%)</title><rect x="156.6" y="405" width="23.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="159.58" y="415.5" >m..</text>
</g>
<g >
<title>smgrreleaseall (2,052,594 samples, 0.01%)</title><rect x="869.4" y="309" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="872.43" y="319.5" ></text>
</g>
<g >
<title>socket_flush_if_writable (6,011,761 samples, 0.03%)</title><rect x="917.2" y="357" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="920.21" y="367.5" ></text>
</g>
<g >
<title>AllocSetContextCreateInternal (1,888,309 samples, 0.01%)</title><rect x="127.9" y="405" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="130.92" y="415.5" ></text>
</g>
<g >
<title>malloc (24,068,635 samples, 0.12%)</title><rect x="920.0" y="405" width="1.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="923.00" y="415.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesHistoricMVCC (11,135,198 samples, 0.05%)</title><rect x="125.3" y="101" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="128.29" y="111.5" ></text>
</g>
<g >
<title>[unknown] (104,193,532 samples, 0.50%)</title><rect x="851.8" y="373" width="5.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="854.79" y="383.5" ></text>
</g>
<g >
<title>TransactionIdDidCommit (8,189,721 samples, 0.04%)</title><rect x="1091.8" y="389" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1094.78" y="399.5" ></text>
</g>
<g >
<title>XLogReadRecord (70,125,090 samples, 0.34%)</title><rect x="1184.4" y="533" width="4.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1187.38" y="543.5" ></text>
</g>
<g >
<title>merge (1,768,597 samples, 0.01%)</title><rect x="100.2" y="437" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="103.15" y="447.5" ></text>
</g>
<g >
<title>ServerLoop (42,220,254 samples, 0.20%)</title><rect x="24.0" y="741" width="2.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="27.01" y="751.5" ></text>
</g>
<g >
<title>relation_open (35,313,764 samples, 0.17%)</title><rect x="118.2" y="245" width="2.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="121.20" y="255.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (11,989,381 samples, 0.06%)</title><rect x="99.9" y="469" width="0.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="102.87" y="479.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,225,331 samples, 0.02%)</title><rect x="143.9" y="325" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="146.85" y="335.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (2,924,569 samples, 0.01%)</title><rect x="1063.7" y="373" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1066.68" y="383.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (15,063,408 samples, 0.07%)</title><rect x="25.1" y="293" width="0.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="28.08" y="303.5" ></text>
</g>
<g >
<title>AllocSetAlloc (1,823,040 samples, 0.01%)</title><rect x="116.7" y="309" width="0.1" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="119.74" y="319.5" ></text>
</g>
<g >
<title>[unknown] (18,604,393 samples, 0.09%)</title><rect x="719.2" y="309" width="1.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="722.18" y="319.5" ></text>
</g>
<g >
<title>ReorderBufferAccumulateInvalidations (22,566,093 samples, 0.11%)</title><rect x="1179.5" y="485" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1182.54" y="495.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (3,038,371 samples, 0.01%)</title><rect x="917.0" y="357" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="920.04" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferTXNSizeCompare (2,009,012 samples, 0.01%)</title><rect x="91.0" y="405" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="93.98" y="415.5" ></text>
</g>
<g >
<title>ReorderBufferFreeChange (3,287,541 samples, 0.02%)</title><rect x="1068.5" y="373" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1071.51" y="383.5" ></text>
</g>
<g >
<title>heap_prepare_pagescan (14,096,205 samples, 0.07%)</title><rect x="125.1" y="149" width="0.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="128.12" y="159.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (51,083,748 samples, 0.25%)</title><rect x="1174.8" y="405" width="3.0" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1177.84" y="415.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (18,038,546 samples, 0.09%)</title><rect x="101.9" y="485" width="1.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="104.94" y="495.5" ></text>
</g>
<g >
<title>systable_beginscan (5,969,137 samples, 0.03%)</title><rect x="124.1" y="213" width="0.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="127.09" y="223.5" ></text>
</g>
<g >
<title>secure_raw_read (182,757,219 samples, 0.88%)</title><rect x="63.4" y="501" width="10.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="66.37" y="511.5" ></text>
</g>
<g >
<title>hash_initial_lookup (4,271,571 samples, 0.02%)</title><rect x="1084.0" y="389" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1086.99" y="399.5" ></text>
</g>
<g >
<title>pg_vsnprintf (4,436,819 samples, 0.02%)</title><rect x="917.7" y="341" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="920.71" y="351.5" ></text>
</g>
<g >
<title>dlist_push_tail (7,848,367 samples, 0.04%)</title><rect x="93.9" y="453" width="0.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="96.91" y="463.5" ></text>
</g>
<g >
<title>systable_endscan (1,960,525 samples, 0.01%)</title><rect x="119.6" y="165" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="122.64" y="175.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (11,409,026 samples, 0.06%)</title><rect x="141.2" y="405" width="0.6" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="144.17" y="415.5" ></text>
</g>
<g >
<title>heapam_index_fetch_tuple (4,074,273 samples, 0.02%)</title><rect x="118.7" y="117" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="121.74" y="127.5" ></text>
</g>
<g >
<title>RelationInitPhysicalAddr (4,615,213 samples, 0.02%)</title><rect x="111.9" y="405" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="114.90" y="415.5" ></text>
</g>
<g >
<title>SlabGetNextFreeChunk (21,303,240 samples, 0.10%)</title><rect x="1063.8" y="373" width="1.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1066.85" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (9,866,413 samples, 0.05%)</title><rect x="1094.4" y="389" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1097.44" y="399.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (8,753,799 samples, 0.04%)</title><rect x="128.7" y="405" width="0.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="131.68" y="415.5" ></text>
</g>
<g >
<title>LWLockAcquire (47,323,010 samples, 0.23%)</title><rect x="907.2" y="341" width="2.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="910.17" y="351.5" ></text>
</g>
<g >
<title>unlink (1,863,102 samples, 0.01%)</title><rect x="22.6" y="645" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="25.63" y="655.5" ></text>
</g>
<g >
<title>ReorderBufferQueueChange (1,496,789,753 samples, 7.23%)</title><rect x="1086.4" y="437" width="85.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1089.43" y="447.5" >ReorderBuf..</text>
</g>
<g >
<title>merge_children (2,932,386 samples, 0.01%)</title><rect x="137.9" y="373" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="140.93" y="383.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (2,085,085 samples, 0.01%)</title><rect x="124.8" y="101" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="127.84" y="111.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (24,572,514 samples, 0.12%)</title><rect x="920.0" y="421" width="1.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="922.98" y="431.5" ></text>
</g>
<g >
<title>pgstat_clear_snapshot (2,012,394 samples, 0.01%)</title><rect x="108.2" y="373" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="111.17" y="383.5" ></text>
</g>
<g >
<title>WalSndPrepareWrite (3,977,610 samples, 0.02%)</title><rect x="918.1" y="389" width="0.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="921.13" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferProcessTXN (4,095,698 samples, 0.02%)</title><rect x="23.8" y="501" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="26.78" y="511.5" ></text>
</g>
<g >
<title>ReorderBufferProcessPartialChange (1,850,692 samples, 0.01%)</title><rect x="1182.9" y="453" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1185.93" y="463.5" ></text>
</g>
<g >
<title>AllocSetRealloc (2,559,444 samples, 0.01%)</title><rect x="829.8" y="373" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="832.82" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferProcessTXN (4,639,500 samples, 0.02%)</title><rect x="49.6" y="469" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="52.62" y="479.5" ></text>
</g>
<g >
<title>WalSndWriteData (6,801,439 samples, 0.03%)</title><rect x="918.4" y="389" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="921.42" y="399.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,555,107 samples, 0.02%)</title><rect x="102.6" y="437" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="105.61" y="447.5" ></text>
</g>
<g >
<title>write (107,135,509 samples, 0.52%)</title><rect x="851.6" y="389" width="6.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="854.62" y="399.5" ></text>
</g>
<g >
<title>RelationInitPhysicalAddr (3,437,273 samples, 0.02%)</title><rect x="25.5" y="261" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="28.51" y="271.5" ></text>
</g>
<g >
<title>DecodeCommit (4,095,698 samples, 0.02%)</title><rect x="23.8" y="549" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="26.78" y="559.5" ></text>
</g>
<g >
<title>[unknown] (169,336,218 samples, 0.82%)</title><rect x="64.0" y="453" width="9.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="66.99" y="463.5" ></text>
</g>
<g >
<title>BackendStartup (4,968,276 samples, 0.02%)</title><rect x="49.6" y="677" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="52.62" y="687.5" ></text>
</g>
<g >
<title>[libc.so.6] (859,038,798 samples, 4.15%)</title><rect x="730.9" y="357" width="49.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="733.92" y="367.5" >[lib..</text>
</g>
<g >
<title>sigprocmask (2,456,517 samples, 0.01%)</title><rect x="110.2" y="389" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="113.16" y="399.5" ></text>
</g>
<g >
<title>SearchCatCache1 (21,341,885 samples, 0.10%)</title><rect x="24.7" y="373" width="1.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="27.72" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,011,348 samples, 0.02%)</title><rect x="103.7" y="453" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="106.68" y="463.5" ></text>
</g>
<g >
<title>OutputPluginWrite (7,870,564 samples, 0.04%)</title><rect x="918.4" y="405" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="921.36" y="415.5" ></text>
</g>
<g >
<title>dlist_push_tail (4,161,540 samples, 0.02%)</title><rect x="1183.2" y="453" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1186.18" y="463.5" ></text>
</g>
<g >
<title>dlist_delete_from (4,326,731 samples, 0.02%)</title><rect x="1098.3" y="341" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1101.31" y="351.5" ></text>
</g>
<g >
<title>pg_rotate_left32 (47,719,324 samples, 0.23%)</title><rect x="131.8" y="373" width="2.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="134.84" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferFreeChange (63,646,835 samples, 0.31%)</title><rect x="1095.0" y="389" width="3.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1098.00" y="399.5" ></text>
</g>
<g >
<title>merge_children (4,416,992 samples, 0.02%)</title><rect x="789.5" y="341" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="792.45" y="351.5" ></text>
</g>
<g >
<title>_bt_binsrch (3,614,642 samples, 0.02%)</title><rect x="120.8" y="341" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="123.81" y="351.5" ></text>
</g>
<g >
<title>ScanPgRelation (2,006,451 samples, 0.01%)</title><rect x="24.1" y="293" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="27.11" y="303.5" ></text>
</g>
<g >
<title>MemoryContextDelete (1,755,974 samples, 0.01%)</title><rect x="149.7" y="389" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="152.71" y="399.5" ></text>
</g>
<g >
<title>systable_endscan (3,656,007 samples, 0.02%)</title><rect x="120.5" y="421" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="123.49" y="431.5" ></text>
</g>
<g >
<title>calc_bucket (1,755,708 samples, 0.01%)</title><rect x="1084.1" y="373" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1087.13" y="383.5" ></text>
</g>
<g >
<title>TransactionIdGetStatus (7,254,303 samples, 0.04%)</title><rect x="1091.8" y="357" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1094.84" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferExecuteInvalidations (8,088,896,663 samples, 39.09%)</title><rect x="239.9" y="437" width="461.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="242.93" y="447.5" >ReorderBufferExecuteInvalidations</text>
</g>
<g >
<title>socket_putmessage (1,778,245 samples, 0.01%)</title><rect x="917.6" y="341" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="920.60" y="351.5" ></text>
</g>
<g >
<title>memcpy (8,079,415 samples, 0.04%)</title><rect x="1180.4" y="437" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1183.37" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (6,242,345 samples, 0.03%)</title><rect x="934.3" y="389" width="0.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="937.31" y="399.5" ></text>
</g>
<g >
<title>[unknown] (2,730,906 samples, 0.01%)</title><rect x="73.5" y="389" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="76.49" y="399.5" ></text>
</g>
<g >
<title>OutputPluginWrite (14,108,315 samples, 0.07%)</title><rect x="916.9" y="389" width="0.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="919.89" y="399.5" ></text>
</g>
<g >
<title>_bt_first (5,775,467 samples, 0.03%)</title><rect x="26.0" y="325" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="29.01" y="335.5" ></text>
</g>
<g >
<title>pfree (35,385,963 samples, 0.17%)</title><rect x="142.0" y="389" width="2.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="145.02" y="399.5" ></text>
</g>
<g >
<title>pq_getbyte_if_available (207,468,936 samples, 1.00%)</title><rect x="62.0" y="533" width="11.9" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="65.04" y="543.5" ></text>
</g>
<g >
<title>all (20,693,568,156 samples, 100%)</title><rect x="10.0" y="789" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="799.5" ></text>
</g>
<g >
<title>hash_destroy (2,224,888 samples, 0.01%)</title><rect x="149.7" y="405" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="152.69" y="415.5" ></text>
</g>
<g >
<title>ReorderBufferRestoreChange (1,910,610,918 samples, 9.23%)</title><rect x="720.6" y="405" width="108.9" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="723.60" y="415.5" >ReorderBuffer..</text>
</g>
<g >
<title>SlabFree (1,794,365 samples, 0.01%)</title><rect x="1068.6" y="341" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1071.60" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferReplay (2,456,306 samples, 0.01%)</title><rect x="50.3" y="501" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="53.28" y="511.5" ></text>
</g>
<g >
<title>hash_seq_init (2,199,486 samples, 0.01%)</title><rect x="107.0" y="373" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="109.97" y="383.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (2,262,191 samples, 0.01%)</title><rect x="24.7" y="245" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="27.72" y="255.5" ></text>
</g>
<g >
<title>SIGetDataEntries (238,728,296 samples, 1.15%)</title><rect x="901.9" y="357" width="13.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="904.89" y="367.5" ></text>
</g>
<g >
<title>heap_beginscan (2,845,642 samples, 0.01%)</title><rect x="117.8" y="229" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="120.77" y="239.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (30,355,345 samples, 0.15%)</title><rect x="1084.6" y="421" width="1.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1087.62" y="431.5" ></text>
</g>
<g >
<title>exec_replication_command (4,095,698 samples, 0.02%)</title><rect x="23.8" y="645" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="26.78" y="655.5" ></text>
</g>
<g >
<title>RelationReloadNailed (40,362,329 samples, 0.20%)</title><rect x="123.9" y="357" width="2.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="126.86" y="367.5" ></text>
</g>
<g >
<title>GetCurrentTimestamp (36,292,034 samples, 0.18%)</title><rect x="59.3" y="533" width="2.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="62.27" y="543.5" ></text>
</g>
<g >
<title>index_getnext_tid (2,920,151 samples, 0.01%)</title><rect x="24.2" y="357" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="27.22" y="367.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (4,095,698 samples, 0.02%)</title><rect x="23.8" y="581" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="26.78" y="591.5" ></text>
</g>
<g >
<title>ReorderBufferReplay (42,220,254 samples, 0.20%)</title><rect x="24.0" y="533" width="2.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="27.01" y="543.5" ></text>
</g>
<g >
<title>SnapBuildProcessNewCid (194,208,325 samples, 0.94%)</title><rect x="87.0" y="501" width="11.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="89.97" y="511.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (8,984,951 samples, 0.04%)</title><rect x="910.0" y="325" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="912.95" y="335.5" ></text>
</g>
<g >
<title>systable_getnext (3,738,797 samples, 0.02%)</title><rect x="24.5" y="293" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="27.50" y="303.5" ></text>
</g>
<g >
<title>index_close (2,028,421 samples, 0.01%)</title><rect x="118.6" y="165" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="121.60" y="175.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,988,336 samples, 0.01%)</title><rect x="49.5" y="709" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="52.48" y="719.5" ></text>
</g>
<g >
<title>relation_open (2,866,003 samples, 0.01%)</title><rect x="116.3" y="293" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="119.28" y="303.5" ></text>
</g>
<g >
<title>ResetCatalogCachesExt (29,030,782 samples, 0.14%)</title><rect x="869.6" y="325" width="1.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="872.59" y="335.5" ></text>
</g>
<g >
<title>pg_snprintf (6,977,940 samples, 0.03%)</title><rect x="149.9" y="389" width="0.4" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="152.89" y="399.5" ></text>
</g>
<g >
<title>memcpy (3,355,321 samples, 0.02%)</title><rect x="1179.6" y="469" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1182.61" y="479.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (36,704,848 samples, 0.18%)</title><rect x="94.8" y="453" width="2.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="97.82" y="463.5" ></text>
</g>
<g >
<title>[unknown] (13,079,538 samples, 0.06%)</title><rect x="23.0" y="757" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="25.97" y="767.5" ></text>
</g>
<g >
<title>pq_endmsgread (12,385,304 samples, 0.06%)</title><rect x="61.3" y="533" width="0.7" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="64.34" y="543.5" ></text>
</g>
<g >
<title>recv (172,279,864 samples, 0.83%)</title><rect x="63.8" y="469" width="9.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="66.82" y="479.5" ></text>
</g>
<g >
<title>table_scan_getnextslot (25,283,874 samples, 0.12%)</title><rect x="124.5" y="197" width="1.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="127.49" y="207.5" ></text>
</g>
<g >
<title>ReorderBufferXidHasBaseSnapshot (62,671,137 samples, 0.30%)</title><rect x="1174.3" y="453" width="3.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1177.33" y="463.5" ></text>
</g>
<g >
<title>btgettuple (2,920,151 samples, 0.01%)</title><rect x="24.2" y="341" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="27.22" y="351.5" ></text>
</g>
<g >
<title>merge (5,783,854 samples, 0.03%)</title><rect x="90.8" y="421" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="93.76" y="431.5" ></text>
</g>
<g >
<title>btgettuple (3,437,273 samples, 0.02%)</title><rect x="25.5" y="181" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="28.51" y="191.5" ></text>
</g>
<g >
<title>_bt_search (2,232,702 samples, 0.01%)</title><rect x="25.4" y="165" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="28.36" y="175.5" ></text>
</g>
<g >
<title>ReorderBufferFreeTXN (3,547,506 samples, 0.02%)</title><rect x="149.7" y="421" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="152.66" y="431.5" ></text>
</g>
<g >
<title>uint32_hash (5,979,528 samples, 0.03%)</title><rect x="883.0" y="309" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="885.95" y="319.5" ></text>
</g>
<g >
<title>AllocSetAlloc (108,876,919 samples, 0.53%)</title><rect x="724.6" y="373" width="6.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="727.65" y="383.5" ></text>
</g>
<g >
<title>RelationInitPhysicalAddr (3,434,568 samples, 0.02%)</title><rect x="868.7" y="309" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="871.71" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (5,383,790 samples, 0.03%)</title><rect x="1183.9" y="453" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1186.93" y="463.5" ></text>
</g>
<g >
<title>StartLogicalReplication (4,968,276 samples, 0.02%)</title><rect x="49.6" y="597" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="52.62" y="607.5" ></text>
</g>
<g >
<title>begin_cb_wrapper (29,986,532 samples, 0.14%)</title><rect x="916.3" y="437" width="1.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="919.26" y="447.5" ></text>
</g>
<g >
<title>[unknown] (8,530,819 samples, 0.04%)</title><rect x="73.2" y="437" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="76.16" y="447.5" ></text>
</g>
<g >
<title>merge (6,067,860 samples, 0.03%)</title><rect x="1087.8" y="389" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1090.79" y="399.5" ></text>
</g>
<g >
<title>RelationReloadNailed (2,023,846 samples, 0.01%)</title><rect x="24.4" y="325" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="27.39" y="335.5" ></text>
</g>
<g >
<title>index_open (2,262,191 samples, 0.01%)</title><rect x="24.7" y="309" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="27.72" y="319.5" ></text>
</g>
<g >
<title>fmtint (1,799,357 samples, 0.01%)</title><rect x="150.2" y="341" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="153.19" y="351.5" ></text>
</g>
<g >
<title>LWLockAcquire (2,365,192 samples, 0.01%)</title><rect x="1179.1" y="421" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1182.06" y="431.5" ></text>
</g>
<g >
<title>AtEOXact_SPI (1,927,782 samples, 0.01%)</title><rect x="108.5" y="389" width="0.1" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="111.50" y="399.5" ></text>
</g>
<g >
<title>pairingheap_remove (25,754,681 samples, 0.12%)</title><rect x="788.2" y="373" width="1.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="791.24" y="383.5" ></text>
</g>
<g >
<title>pairingheap_remove (13,257,919 samples, 0.06%)</title><rect x="91.1" y="437" width="0.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="94.09" y="447.5" ></text>
</g>
<g >
<title>systable_getnext (4,016,286 samples, 0.02%)</title><rect x="24.8" y="325" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="27.85" y="335.5" ></text>
</g>
<g >
<title>hash_search (37,093,010 samples, 0.18%)</title><rect x="84.7" y="469" width="2.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="87.75" y="479.5" ></text>
</g>
<g >
<title>hash_seq_search (20,302,948 samples, 0.10%)</title><rect x="15.1" y="741" width="1.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="18.08" y="751.5" ></text>
</g>
<g >
<title>RelationInvalidateRelation (2,082,456 samples, 0.01%)</title><rect x="868.9" y="309" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="871.90" y="319.5" ></text>
</g>
<g >
<title>table_open (3,776,498 samples, 0.02%)</title><rect x="119.0" y="181" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="122.05" y="191.5" ></text>
</g>
<g >
<title>xact_decode (42,220,254 samples, 0.20%)</title><rect x="24.0" y="581" width="2.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="27.01" y="591.5" ></text>
</g>
<g >
<title>OutputPluginUpdateProgress (3,498,752 samples, 0.02%)</title><rect x="919.4" y="421" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="922.40" y="431.5" ></text>
</g>
<g >
<title>write (183,554,914 samples, 0.89%)</title><rect x="1159.8" y="373" width="10.5" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1162.80" y="383.5" ></text>
</g>
<g >
<title>SlabGetNextFreeChunk (42,791,879 samples, 0.21%)</title><rect x="781.8" y="341" width="2.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="784.80" y="351.5" ></text>
</g>
<g >
<title>btgettuple (2,006,451 samples, 0.01%)</title><rect x="24.1" y="229" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="27.11" y="239.5" ></text>
</g>
<g >
<title>index_getnext_slot (1,981,552 samples, 0.01%)</title><rect x="120.0" y="165" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="123.00" y="175.5" ></text>
</g>
<g >
<title>[libc.so.6] (24,068,635 samples, 0.12%)</title><rect x="920.0" y="389" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="923.00" y="399.5" ></text>
</g>
<g >
<title>[unknown] (5,197,662 samples, 0.03%)</title><rect x="50.5" y="725" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="53.55" y="735.5" ></text>
</g>
<g >
<title>SIGetDataEntries (11,777,181 samples, 0.06%)</title><rect x="123.0" y="341" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="126.01" y="351.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (6,950,448 samples, 0.03%)</title><rect x="24.1" y="405" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="27.11" y="415.5" ></text>
</g>
<g >
<title>ResetLatch (11,562,644 samples, 0.06%)</title><rect x="73.9" y="549" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="76.87" y="559.5" ></text>
</g>
<g >
<title>dlist_has_next (24,691,166 samples, 0.12%)</title><rect x="864.5" y="421" width="1.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="867.55" y="431.5" ></text>
</g>
<g >
<title>SICleanupQueue (13,406,690 samples, 0.06%)</title><rect x="901.1" y="357" width="0.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="904.13" y="367.5" ></text>
</g>
<g >
<title>index_open (2,006,451 samples, 0.01%)</title><rect x="24.1" y="373" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="27.11" y="383.5" ></text>
</g>
<g >
<title>table_beginscan_strat (4,294,000 samples, 0.02%)</title><rect x="124.1" y="197" width="0.3" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="127.14" y="207.5" ></text>
</g>
<g >
<title>systable_beginscan (2,262,191 samples, 0.01%)</title><rect x="24.7" y="325" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="27.72" y="335.5" ></text>
</g>
<g >
<title>systable_endscan (3,345,367 samples, 0.02%)</title><rect x="118.5" y="181" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="121.54" y="191.5" ></text>
</g>
<g >
<title>BackendStartup (42,220,254 samples, 0.20%)</title><rect x="24.0" y="725" width="2.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="27.01" y="735.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (4,968,276 samples, 0.02%)</title><rect x="49.6" y="549" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="52.62" y="559.5" ></text>
</g>
<g >
<title>RelationReloadNailed (1,853,283 samples, 0.01%)</title><rect x="116.6" y="261" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="119.57" y="271.5" ></text>
</g>
<g >
<title>dlist_push_head (1,815,799 samples, 0.01%)</title><rect x="1086.2" y="389" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="1089.24" y="399.5" ></text>
</g>
<g >
<title>SimpleLruReadPage_ReadOnly (3,742,243 samples, 0.02%)</title><rect x="1092.0" y="341" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1095.04" y="351.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (34,412,717 samples, 0.17%)</title><rect x="124.0" y="261" width="2.0" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="127.04" y="271.5" ></text>
</g>
<g >
<title>exec_replication_command (4,968,276 samples, 0.02%)</title><rect x="49.6" y="613" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="52.62" y="623.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (2,738,303 samples, 0.01%)</title><rect x="1180.2" y="437" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1183.21" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferAddInvalidations (88,917,815 samples, 0.43%)</title><rect x="1179.2" y="501" width="5.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1182.22" y="511.5" ></text>
</g>
<g >
<title>index_getnext_slot (2,775,062 samples, 0.01%)</title><rect x="49.7" y="421" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="52.73" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeTXN (1,382,556,029 samples, 6.68%)</title><rect x="1092.3" y="405" width="78.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1095.25" y="415.5" >ReorderBu..</text>
</g>
<g >
<title>ReorderBufferProcessTXN (2,045,827 samples, 0.01%)</title><rect x="49.9" y="453" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="52.91" y="463.5" ></text>
</g>
<g >
<title>CheckProcSignal (2,041,725 samples, 0.01%)</title><rect x="50.4" y="341" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="53.42" y="351.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (108,142,989 samples, 0.52%)</title><rect x="724.7" y="357" width="6.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="727.69" y="367.5" ></text>
</g>
<g >
<title>PostmasterMain (4,733,944 samples, 0.02%)</title><rect x="50.3" y="725" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="53.28" y="735.5" ></text>
</g>
<g >
<title>BackendMain (4,968,276 samples, 0.02%)</title><rect x="49.6" y="645" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="52.62" y="655.5" ></text>
</g>
<g >
<title>ReorderBufferAddNewTupleCids (55,354,432 samples, 0.27%)</title><rect x="94.4" y="485" width="3.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="97.36" y="495.5" ></text>
</g>
<g >
<title>xidComparator (3,263,147 samples, 0.02%)</title><rect x="125.7" y="53" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="128.73" y="63.5" ></text>
</g>
<g >
<title>relation_open (5,741,179 samples, 0.03%)</title><rect x="117.4" y="229" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="120.44" y="239.5" ></text>
</g>
<g >
<title>RelationGetIndexAttOptions (3,738,797 samples, 0.02%)</title><rect x="24.5" y="389" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="27.50" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferSerializedPath (6,417,931 samples, 0.03%)</title><rect x="830.0" y="405" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="832.97" y="415.5" ></text>
</g>
<g >
<title>[unknown] (159,864,853 samples, 0.77%)</title><rect x="711.1" y="325" width="9.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="714.12" y="335.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (3,795,948 samples, 0.02%)</title><rect x="103.3" y="469" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="106.33" y="479.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (489,038,681 samples, 2.36%)</title><rect x="151.9" y="421" width="27.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="154.88" y="431.5" >M..</text>
</g>
<g >
<title>hash_bytes_uint32 (2,017,271 samples, 0.01%)</title><rect x="1177.8" y="389" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="1180.79" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferAllocChange (39,567,134 samples, 0.19%)</title><rect x="94.8" y="469" width="2.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.77" y="479.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,881,459 samples, 0.01%)</title><rect x="829.9" y="341" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="832.86" y="351.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (4,131,351 samples, 0.02%)</title><rect x="91.6" y="421" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="94.61" y="431.5" ></text>
</g>
<g >
<title>AfterTriggerEndXact (1,755,122 samples, 0.01%)</title><rect x="106.8" y="389" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="109.77" y="399.5" ></text>
</g>
<g >
<title>ServerLoop (4,968,276 samples, 0.02%)</title><rect x="49.6" y="693" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="52.62" y="703.5" ></text>
</g>
<g >
<title>PostgresMain (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="613" width="1138.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="53.90" y="623.5" >PostgresMain</text>
</g>
<g >
<title>pg_atomic_read_u32_impl (7,195,863 samples, 0.03%)</title><rect x="909.3" y="293" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="912.32" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (14,799,433 samples, 0.07%)</title><rect x="704.4" y="357" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="707.41" y="367.5" ></text>
</g>
<g >
<title>DecodeCommit (1,863,102 samples, 0.01%)</title><rect x="22.6" y="725" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="25.63" y="735.5" ></text>
</g>
<g >
<title>pgstat_lock_entry (1,870,430 samples, 0.01%)</title><rect x="1170.9" y="341" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1173.89" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferQueueChange (7,075,219 samples, 0.03%)</title><rect x="20.3" y="757" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="23.26" y="767.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref_locked (4,897,692 samples, 0.02%)</title><rect x="1170.7" y="357" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1173.71" y="367.5" ></text>
</g>
<g >
<title>index_getnext_slot (2,920,151 samples, 0.01%)</title><rect x="24.2" y="373" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="27.22" y="383.5" ></text>
</g>
<g >
<title>systable_getnext (3,437,273 samples, 0.02%)</title><rect x="25.5" y="229" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="28.51" y="239.5" ></text>
</g>
<g >
<title>ScanPgRelation (3,208,809 samples, 0.02%)</title><rect x="117.6" y="165" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="120.57" y="175.5" ></text>
</g>
<g >
<title>AllocSetAlloc (80,504,925 samples, 0.39%)</title><rect x="152.0" y="405" width="4.6" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="154.99" y="415.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (8,783,144 samples, 0.04%)</title><rect x="111.4" y="405" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="114.39" y="415.5" ></text>
</g>
<g >
<title>internal_flush (4,378,177 samples, 0.02%)</title><rect x="917.3" y="341" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="920.31" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferTXNSizeCompare (7,014,922 samples, 0.03%)</title><rect x="787.8" y="341" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="790.84" y="351.5" ></text>
</g>
<g >
<title>[[vdso]] (2,778,995 samples, 0.01%)</title><rect x="917.1" y="341" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="920.05" y="351.5" ></text>
</g>
<g >
<title>relation_open (36,918,539 samples, 0.18%)</title><rect x="123.9" y="293" width="2.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="126.90" y="303.5" ></text>
</g>
<g >
<title>RelationBuildDesc (74,163,228 samples, 0.36%)</title><rect x="116.2" y="357" width="4.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="119.17" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeTXN (495,985,249 samples, 2.40%)</title><rect x="830.3" y="421" width="28.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="833.33" y="431.5" >R..</text>
</g>
<g >
<title>[unknown] (2,658,059 samples, 0.01%)</title><rect x="720.1" y="261" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="723.09" y="271.5" ></text>
</g>
<g >
<title>table_open (15,063,408 samples, 0.07%)</title><rect x="25.1" y="325" width="0.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="28.08" y="335.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (653,083,992 samples, 3.16%)</title><rect x="403.2" y="405" width="37.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="406.18" y="415.5" >Rel..</text>
</g>
<g >
<title>read_stream_next_buffer (5,326,944 samples, 0.03%)</title><rect x="124.8" y="133" width="0.3" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="127.82" y="143.5" ></text>
</g>
<g >
<title>RelationInitPhysicalAddr (9,732,479 samples, 0.05%)</title><rect x="119.3" y="197" width="0.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="122.26" y="207.5" ></text>
</g>
<g >
<title>HeapTupleSatisfiesVisibility (11,438,808 samples, 0.06%)</title><rect x="125.3" y="117" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="128.28" y="127.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeReserve (2,170,596 samples, 0.01%)</title><rect x="1068.9" y="357" width="0.1" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="1071.92" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferRestoreChanges (2,190,206,175 samples, 10.58%)</title><rect x="705.4" y="421" width="124.9" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="708.44" y="431.5" >ReorderBufferRe..</text>
</g>
<g >
<title>[unknown] (2,730,906 samples, 0.01%)</title><rect x="73.5" y="405" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="76.49" y="415.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (40,366,254 samples, 0.20%)</title><rect x="111.3" y="437" width="2.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="114.27" y="447.5" ></text>
</g>
<g >
<title>index_getnext_tid (2,023,846 samples, 0.01%)</title><rect x="24.4" y="261" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="27.39" y="271.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,079,415 samples, 0.04%)</title><rect x="1180.4" y="421" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1183.37" y="431.5" ></text>
</g>
<g >
<title>PathNameOpenFilePerm (4,904,189 samples, 0.02%)</title><rect x="720.3" y="389" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="723.32" y="399.5" ></text>
</g>
<g >
<title>RelationClearRelation (5,733,067 samples, 0.03%)</title><rect x="868.3" y="309" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="871.30" y="319.5" ></text>
</g>
<g >
<title>WALRead (3,525,771 samples, 0.02%)</title><rect x="45.1" y="693" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="48.14" y="703.5" ></text>
</g>
<g >
<title>index_getnext_slot (4,967,195 samples, 0.02%)</title><rect x="111.5" y="373" width="0.3" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="114.50" y="383.5" ></text>
</g>
<g >
<title>dlist_push_tail (6,793,467 samples, 0.03%)</title><rect x="1171.4" y="421" width="0.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1174.39" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (8,179,255 samples, 0.04%)</title><rect x="1176.9" y="389" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1179.90" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferProcessTXN (42,220,254 samples, 0.20%)</title><rect x="24.0" y="517" width="2.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="27.01" y="527.5" ></text>
</g>
<g >
<title>AllocSetFree (34,938,875 samples, 0.17%)</title><rect x="142.0" y="373" width="2.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="145.04" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferProcessTXN (14,294,418,952 samples, 69.08%)</title><rect x="104.5" y="453" width="815.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="107.50" y="463.5" >ReorderBufferProcessTXN</text>
</g>
<g >
<title>pairingheap_remove (9,019,707 samples, 0.04%)</title><rect x="1182.2" y="437" width="0.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1185.22" y="447.5" ></text>
</g>
<g >
<title>hash_search (34,305,677 samples, 0.17%)</title><rect x="81.6" y="485" width="1.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="84.59" y="495.5" ></text>
</g>
<g >
<title>merge_children (9,145,292 samples, 0.04%)</title><rect x="1094.5" y="341" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1097.48" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (405,706,762 samples, 1.96%)</title><rect x="156.6" y="389" width="23.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="159.63" y="399.5" >[..</text>
</g>
<g >
<title>[libc.so.6] (21,170,465 samples, 0.10%)</title><rect x="934.8" y="373" width="1.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="937.78" y="383.5" ></text>
</g>
<g >
<title>WalSndLoop (4,095,698 samples, 0.02%)</title><rect x="23.8" y="613" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="26.78" y="623.5" ></text>
</g>
<g >
<title>hash_initial_lookup (150,269,170 samples, 0.73%)</title><rect x="425.9" y="357" width="8.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="428.86" y="367.5" ></text>
</g>
<g >
<title>appendStringInfo (4,744,618 samples, 0.02%)</title><rect x="917.7" y="389" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="920.70" y="399.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref (3,469,451 samples, 0.02%)</title><rect x="1178.9" y="437" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1181.86" y="447.5" ></text>
</g>
<g >
<title>systable_beginscan (2,337,725 samples, 0.01%)</title><rect x="118.4" y="181" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="121.41" y="191.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (2,023,846 samples, 0.01%)</title><rect x="24.4" y="341" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="27.39" y="351.5" ></text>
</g>
<g >
<title>hdefault (1,881,206 samples, 0.01%)</title><rect x="128.2" y="405" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="131.19" y="415.5" ></text>
</g>
<g >
<title>hash_search (2,197,529 samples, 0.01%)</title><rect x="1178.4" y="421" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1181.37" y="431.5" ></text>
</g>
<g >
<title>SearchCatCache2 (8,068,140 samples, 0.04%)</title><rect x="116.9" y="277" width="0.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="119.92" y="287.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (78,316,698 samples, 0.38%)</title><rect x="152.1" y="389" width="4.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="155.11" y="399.5" ></text>
</g>
<g >
<title>tag_hash (5,527,176 samples, 0.03%)</title><rect x="115.5" y="405" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="118.50" y="415.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (4,243,290 samples, 0.02%)</title><rect x="14.8" y="757" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="17.82" y="767.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (3,900,090 samples, 0.02%)</title><rect x="140.9" y="405" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="143.95" y="415.5" ></text>
</g>
<g >
<title>realloc (2,151,771 samples, 0.01%)</title><rect x="829.8" y="357" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="832.84" y="367.5" ></text>
</g>
<g >
<title>pg_vsnprintf (6,269,147 samples, 0.03%)</title><rect x="918.9" y="357" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="921.90" y="367.5" ></text>
</g>
<g >
<title>xact_decode (2,045,827 samples, 0.01%)</title><rect x="49.9" y="517" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="52.91" y="527.5" ></text>
</g>
<g >
<title>XLogReadAhead (19,101,047 samples, 0.09%)</title><rect x="1185.5" y="517" width="1.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1188.49" y="527.5" ></text>
</g>
<g >
<title>XLogRecGetBlockTag (2,751,151 samples, 0.01%)</title><rect x="101.6" y="485" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="104.63" y="495.5" ></text>
</g>
<g >
<title>uint32_hash (2,519,241 samples, 0.01%)</title><rect x="1177.8" y="405" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1180.76" y="415.5" ></text>
</g>
<g >
<title>xact_decode (4,733,944 samples, 0.02%)</title><rect x="50.3" y="549" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="53.28" y="559.5" ></text>
</g>
<g >
<title>CleanupTransaction (9,185,059 samples, 0.04%)</title><rect x="110.4" y="405" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="113.37" y="415.5" ></text>
</g>
<g >
<title>ServerLoop (4,733,944 samples, 0.02%)</title><rect x="50.3" y="709" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="53.28" y="719.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (6,665,843 samples, 0.03%)</title><rect x="103.6" y="485" width="0.4" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="106.59" y="495.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (4,200,485 samples, 0.02%)</title><rect x="137.9" y="421" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="140.86" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (3,981,296 samples, 0.02%)</title><rect x="1068.0" y="405" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1070.95" y="415.5" ></text>
</g>
<g >
<title>btgettuple (12,970,852 samples, 0.06%)</title><rect x="120.8" y="373" width="0.7" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="123.77" y="383.5" ></text>
</g>
<g >
<title>dlist_delete_from (2,106,636 samples, 0.01%)</title><rect x="1086.1" y="389" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1089.08" y="399.5" ></text>
</g>
<g >
<title>index_getnext_tid (3,437,273 samples, 0.02%)</title><rect x="25.5" y="197" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="28.51" y="207.5" ></text>
</g>
<g >
<title>exec_replication_command (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="597" width="1138.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="53.90" y="607.5" >exec_replication_command</text>
</g>
<g >
<title>tag_hash (3,839,456 samples, 0.02%)</title><rect x="900.9" y="309" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="903.91" y="319.5" ></text>
</g>
<g >
<title>[libc.so.6] (1,005,500,702 samples, 4.86%)</title><rect x="1102.1" y="357" width="57.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1105.11" y="367.5" >[libc...</text>
</g>
<g >
<title>hash_search_with_hash_value (26,382,299 samples, 0.13%)</title><rect x="1172.4" y="405" width="1.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1175.42" y="415.5" ></text>
</g>
<g >
<title>index_getnext_tid (5,775,467 samples, 0.03%)</title><rect x="26.0" y="357" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="29.01" y="367.5" ></text>
</g>
<g >
<title>SlabFree (64,939,167 samples, 0.31%)</title><rect x="146.0" y="389" width="3.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="148.96" y="399.5" ></text>
</g>
<g >
<title>hash_search (571,655,237 samples, 2.76%)</title><rect x="407.8" y="389" width="32.6" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="410.83" y="399.5" >ha..</text>
</g>
<g >
<title>memcpy (306,989,447 samples, 1.48%)</title><rect x="834.1" y="389" width="17.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="837.09" y="399.5" ></text>
</g>
<g >
<title>main (2,045,827 samples, 0.01%)</title><rect x="49.9" y="709" width="0.1" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="52.91" y="719.5" ></text>
</g>
<g >
<title>table_scan_getnextslot (2,074,381 samples, 0.01%)</title><rect x="118.0" y="245" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="121.03" y="255.5" ></text>
</g>
<g >
<title>systable_getnext (14,115,906 samples, 0.07%)</title><rect x="120.7" y="421" width="0.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="123.70" y="431.5" ></text>
</g>
<g >
<title>XLogDecodeNextRecord (11,492,672 samples, 0.06%)</title><rect x="1185.9" y="501" width="0.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1188.92" y="511.5" ></text>
</g>
<g >
<title>ReorderBufferAllocChange (82,796,829 samples, 0.40%)</title><rect x="779.9" y="389" width="4.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="782.93" y="399.5" ></text>
</g>
<g >
<title>RelfilenumberMapInvalidateCallback (3,101,611,265 samples, 14.99%)</title><rect x="440.4" y="405" width="176.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="443.42" y="415.5" >RelfilenumberMapInvali..</text>
</g>
<g >
<title>SnapBuildCommitTxn (4,542,869,293 samples, 21.95%)</title><rect x="919.7" y="485" width="259.0" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="922.65" y="495.5" >SnapBuildCommitTxn</text>
</g>
<g >
<title>ServerLoop (2,045,827 samples, 0.01%)</title><rect x="49.9" y="677" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="52.91" y="687.5" ></text>
</g>
<g >
<title>PostgresMain (42,220,254 samples, 0.20%)</title><rect x="24.0" y="677" width="2.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="27.01" y="687.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (22,871,414 samples, 0.11%)</title><rect x="1082.9" y="405" width="1.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1085.93" y="415.5" ></text>
</g>
<g >
<title>ReorderBufferTXNSizeCompare (2,798,174 samples, 0.01%)</title><rect x="1088.0" y="373" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1090.98" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferQueueChange (27,440,414 samples, 0.13%)</title><rect x="1181.9" y="469" width="1.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1184.86" y="479.5" ></text>
</g>
<g >
<title>BackendStartup (2,045,827 samples, 0.01%)</title><rect x="49.9" y="661" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="52.91" y="671.5" ></text>
</g>
<g >
<title>dlist_push_head (2,253,948 samples, 0.01%)</title><rect x="784.4" y="341" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="787.37" y="351.5" ></text>
</g>
<g >
<title>PlanCacheRelCallback (9,435,313 samples, 0.05%)</title><rect x="879.8" y="341" width="0.5" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="882.80" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferTXNSizeCompare (2,265,865 samples, 0.01%)</title><rect x="1067.3" y="357" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1070.33" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (52,794,053 samples, 0.26%)</title><rect x="702.2" y="373" width="3.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="705.24" y="383.5" ></text>
</g>
<g >
<title>BackendStartup (4,095,698 samples, 0.02%)</title><rect x="23.8" y="709" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="26.78" y="719.5" ></text>
</g>
<g >
<title>_bt_search (4,462,282 samples, 0.02%)</title><rect x="121.2" y="341" width="0.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="124.20" y="351.5" ></text>
</g>
<g >
<title>[unknown] (5,910,561 samples, 0.03%)</title><rect x="857.4" y="357" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="860.39" y="367.5" ></text>
</g>
<g >
<title>read_stream_look_ahead (2,980,164 samples, 0.01%)</title><rect x="125.0" y="117" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="127.95" y="127.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (8,068,140 samples, 0.04%)</title><rect x="116.9" y="261" width="0.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="119.92" y="271.5" ></text>
</g>
<g >
<title>AtAbort_Portals (6,065,792 samples, 0.03%)</title><rect x="106.9" y="389" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="109.93" y="399.5" ></text>
</g>
<g >
<title>pairingheap_remove (1,921,246 samples, 0.01%)</title><rect x="831.2" y="389" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="834.17" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferRestoreCleanup (7,467,275 samples, 0.04%)</title><rect x="149.9" y="421" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="152.86" y="431.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,750,203 samples, 0.02%)</title><rect x="934.5" y="341" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="937.45" y="351.5" ></text>
</g>
<g >
<title>BufferAlloc (2,085,085 samples, 0.01%)</title><rect x="124.8" y="69" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="127.84" y="79.5" ></text>
</g>
<g >
<title>LWLockRelease (5,222,015 samples, 0.03%)</title><rect x="901.6" y="341" width="0.3" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="904.57" y="351.5" ></text>
</g>
<g >
<title>SnapBuildDistributeSnapshotAndInval (2,277,638 samples, 0.01%)</title><rect x="50.4" y="501" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="53.42" y="511.5" ></text>
</g>
<g >
<title>InvalidateSystemCaches (56,531,690 samples, 0.27%)</title><rect x="868.1" y="357" width="3.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="871.05" y="367.5" ></text>
</g>
<g >
<title>merge_children (34,713,850 samples, 0.17%)</title><rect x="1088.5" y="389" width="2.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1091.52" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferQueueChange (171,146,757 samples, 0.83%)</title><rect x="1065.3" y="421" width="9.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1068.26" y="431.5" ></text>
</g>
<g >
<title>SearchSysCache1 (21,341,885 samples, 0.10%)</title><rect x="24.7" y="389" width="1.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="27.72" y="399.5" ></text>
</g>
<g >
<title>smgrnblocks (1,824,296 samples, 0.01%)</title><rect x="124.2" y="101" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="127.24" y="111.5" ></text>
</g>
<g >
<title>[unknown] (3,736,187 samples, 0.02%)</title><rect x="73.4" y="421" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="76.43" y="431.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (1,981,552 samples, 0.01%)</title><rect x="120.0" y="133" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="123.00" y="143.5" ></text>
</g>
<g >
<title>dlist_delete_from (9,306,757 samples, 0.04%)</title><rect x="149.1" y="373" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="152.11" y="383.5" ></text>
</g>
<g >
<title>repalloc (2,559,444 samples, 0.01%)</title><rect x="829.8" y="389" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="832.82" y="399.5" ></text>
</g>
<g >
<title>AtStart_ResourceOwner (4,952,738 samples, 0.02%)</title><rect x="915.5" y="405" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="918.53" y="415.5" ></text>
</g>
<g >
<title>dopr (6,977,940 samples, 0.03%)</title><rect x="149.9" y="357" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="152.89" y="367.5" ></text>
</g>
<g >
<title>CallSyscacheCallbacks (7,293,005 samples, 0.04%)</title><rect x="10.2" y="741" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="13.22" y="751.5" ></text>
</g>
<g >
<title>LockRelationOid (2,910,863 samples, 0.01%)</title><rect x="119.4" y="117" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="122.43" y="127.5" ></text>
</g>
<g >
<title>table_block_relation_size (2,748,572 samples, 0.01%)</title><rect x="124.2" y="117" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="127.18" y="127.5" ></text>
</g>
<g >
<title>[unknown] (1,869,911 samples, 0.01%)</title><rect x="720.1" y="245" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="723.13" y="255.5" ></text>
</g>
<g >
<title>systable_beginscan (33,316,986 samples, 0.16%)</title><rect x="24.1" y="485" width="1.9" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="27.11" y="495.5" ></text>
</g>
<g >
<title>[unknown] (4,642,978 samples, 0.02%)</title><rect x="1170.0" y="341" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1173.00" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferAllocChange (25,444,407 samples, 0.12%)</title><rect x="88.0" y="469" width="1.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.95" y="479.5" ></text>
</g>
<g >
<title>_bt_first (3,738,797 samples, 0.02%)</title><rect x="24.5" y="229" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="27.50" y="239.5" ></text>
</g>
<g >
<title>dlist_is_empty (2,112,720 samples, 0.01%)</title><rect x="109.4" y="325" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="112.39" y="335.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (4,128,908 samples, 0.02%)</title><rect x="122.7" y="325" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="125.72" y="335.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (10,457,134 samples, 0.05%)</title><rect x="100.6" y="469" width="0.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="103.55" y="479.5" ></text>
</g>
<g >
<title>CheckXLogRemoved (2,098,998 samples, 0.01%)</title><rect x="44.9" y="693" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="47.89" y="703.5" ></text>
</g>
<g >
<title>table_index_fetch_tuple (4,074,273 samples, 0.02%)</title><rect x="118.7" y="133" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="121.74" y="143.5" ></text>
</g>
<g >
<title>hash_seq_search (1,794,075 samples, 0.01%)</title><rect x="869.2" y="309" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="872.22" y="319.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,571,781 samples, 0.01%)</title><rect x="116.3" y="277" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="119.29" y="287.5" ></text>
</g>
<g >
<title>ScanPgRelation (40,362,329 samples, 0.20%)</title><rect x="123.9" y="341" width="2.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="126.86" y="351.5" ></text>
</g>
<g >
<title>relation_open (3,776,498 samples, 0.02%)</title><rect x="119.0" y="165" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="122.05" y="175.5" ></text>
</g>
<g >
<title>_bt_search (2,669,898 samples, 0.01%)</title><rect x="24.6" y="213" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="27.57" y="223.5" ></text>
</g>
<g >
<title>systable_getnext (3,242,712 samples, 0.02%)</title><rect x="118.0" y="261" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="120.96" y="271.5" ></text>
</g>
<g >
<title>CallSyscacheCallbacks (816,960,255 samples, 3.95%)</title><rect x="342.1" y="405" width="46.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="345.15" y="415.5" >Call..</text>
</g>
<g >
<title>_bt_first (2,006,451 samples, 0.01%)</title><rect x="24.1" y="213" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="27.11" y="223.5" ></text>
</g>
<g >
<title>LockRelationOid (2,505,822 samples, 0.01%)</title><rect x="123.9" y="277" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="126.90" y="287.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_avx512 (55,035,806 samples, 0.27%)</title><rect x="46.1" y="709" width="3.1" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="49.08" y="719.5" ></text>
</g>
<g >
<title>memcpy (1,015,075,496 samples, 4.91%)</title><rect x="1101.6" y="373" width="57.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1104.64" y="383.5" >memcpy</text>
</g>
<g >
<title>UpdateDecodingStats (7,126,386 samples, 0.03%)</title><rect x="1170.6" y="389" width="0.4" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="1173.62" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (44,721,379 samples, 0.22%)</title><rect x="84.3" y="485" width="2.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="87.31" y="495.5" ></text>
</g>
<g >
<title>pg_atomic_fetch_sub_u32_impl (7,087,847 samples, 0.03%)</title><rect x="910.1" y="277" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="913.06" y="287.5" ></text>
</g>
<g >
<title>[libc.so.6] (18,676,462 samples, 0.09%)</title><rect x="921.4" y="421" width="1.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="924.38" y="431.5" ></text>
</g>
<g >
<title>index_getnext_slot (2,006,451 samples, 0.01%)</title><rect x="24.1" y="261" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="27.11" y="271.5" ></text>
</g>
<g >
<title>filter_by_origin_cb_wrapper (6,390,397 samples, 0.03%)</title><rect x="98.5" y="469" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="101.47" y="479.5" ></text>
</g>
<g >
<title>ResourceOwnerCreate (4,952,738 samples, 0.02%)</title><rect x="915.5" y="389" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="918.53" y="399.5" ></text>
</g>
<g >
<title>RelationDestroyRelation (3,582,037 samples, 0.02%)</title><rect x="868.3" y="293" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="871.32" y="303.5" ></text>
</g>
<g >
<title>calc_bucket (3,319,415 samples, 0.02%)</title><rect x="882.8" y="277" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="885.76" y="287.5" ></text>
</g>
<g >
<title>hash_search (16,626,500 samples, 0.08%)</title><rect x="112.6" y="421" width="1.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="115.62" y="431.5" ></text>
</g>
<g >
<title>VirtualXactLockTableInsert (5,554,300 samples, 0.03%)</title><rect x="915.9" y="405" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="918.87" y="415.5" ></text>
</g>
<g >
<title>hash_seq_init (119,477,986 samples, 0.58%)</title><rect x="453.4" y="389" width="6.8" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="456.38" y="399.5" ></text>
</g>
<g >
<title>LockRelationOid (2,905,025 samples, 0.01%)</title><rect x="118.2" y="229" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="121.20" y="239.5" ></text>
</g>
<g >
<title>FileClose (3,084,070 samples, 0.01%)</title><rect x="706.7" y="405" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="709.73" y="415.5" ></text>
</g>
<g >
<title>pg_decode_commit_txn (23,095,712 samples, 0.11%)</title><rect x="918.0" y="421" width="1.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="921.04" y="431.5" ></text>
</g>
<g >
<title>LWLockWakeup (4,432,801 samples, 0.02%)</title><rect x="901.6" y="309" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="904.59" y="319.5" ></text>
</g>
<g >
<title>hash_search (5,011,348 samples, 0.02%)</title><rect x="103.7" y="469" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="106.68" y="479.5" ></text>
</g>
<g >
<title>hash_seq_term (97,690,275 samples, 0.47%)</title><rect x="611.7" y="373" width="5.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="614.72" y="383.5" ></text>
</g>
<g >
<title>SlabAlloc (14,980,448 samples, 0.07%)</title><rect x="1181.0" y="437" width="0.9" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1184.00" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferCommit (2,456,306 samples, 0.01%)</title><rect x="50.3" y="517" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="53.28" y="527.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (2,081,654 samples, 0.01%)</title><rect x="88.6" y="421" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="91.64" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferCheckMemoryLimit (2,277,638 samples, 0.01%)</title><rect x="50.4" y="453" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="53.42" y="463.5" ></text>
</g>
<g >
<title>StartReadBuffersImpl (2,334,159 samples, 0.01%)</title><rect x="125.0" y="69" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="127.99" y="79.5" ></text>
</g>
<g >
<title>table_open (35,313,764 samples, 0.17%)</title><rect x="118.2" y="261" width="2.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="121.20" y="271.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (4,327,055 samples, 0.02%)</title><rect x="122.1" y="325" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="125.11" y="335.5" ></text>
</g>
<g >
<title>BackendMain (4,095,698 samples, 0.02%)</title><rect x="23.8" y="677" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="26.78" y="687.5" ></text>
</g>
<g >
<title>index_getnext_slot (1,826,307 samples, 0.01%)</title><rect x="112.2" y="373" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="115.23" y="383.5" ></text>
</g>
<g >
<title>postmaster_child_launch (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="645" width="1138.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="53.90" y="655.5" >postmaster_child_launch</text>
</g>
<g >
<title>index_getnext_tid (12,970,852 samples, 0.06%)</title><rect x="120.8" y="389" width="0.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="123.77" y="399.5" ></text>
</g>
<g >
<title>AllocSetAllocLarge (4,542,475 samples, 0.02%)</title><rect x="934.4" y="373" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="937.41" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferTXNSizeCompare (5,049,805 samples, 0.02%)</title><rect x="1090.2" y="357" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1093.21" y="367.5" ></text>
</g>
<g >
<title>OpenTransientFile (2,160,371 samples, 0.01%)</title><rect x="831.0" y="405" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="834.04" y="415.5" ></text>
</g>
<g >
<title>ReorderBufferCleanupTXN (278,071,155 samples, 1.34%)</title><rect x="134.6" y="437" width="15.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="137.57" y="447.5" ></text>
</g>
<g >
<title>hash_bytes (3,839,456 samples, 0.02%)</title><rect x="900.9" y="293" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="903.91" y="303.5" ></text>
</g>
<g >
<title>merge_children (1,932,361 samples, 0.01%)</title><rect x="1182.6" y="405" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1185.63" y="415.5" ></text>
</g>
<g >
<title>pfree (98,640,329 samples, 0.48%)</title><rect x="144.0" y="405" width="5.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="147.04" y="415.5" ></text>
</g>
<g >
<title>_bt_first (4,059,971 samples, 0.02%)</title><rect x="25.7" y="181" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="28.70" y="191.5" ></text>
</g>
<g >
<title>WalSndPrepareWrite (5,109,806 samples, 0.02%)</title><rect x="916.6" y="373" width="0.3" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="919.57" y="383.5" ></text>
</g>
<g >
<title>xact_decode (18,947,085,056 samples, 91.56%)</title><rect x="104.0" y="517" width="1080.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="106.97" y="527.5" >xact_decode</text>
</g>
<g >
<title>ReorderBufferSerializeChange (2,277,638 samples, 0.01%)</title><rect x="50.4" y="421" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="53.42" y="431.5" ></text>
</g>
<g >
<title>dopr (4,960,330 samples, 0.02%)</title><rect x="1170.3" y="341" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1173.34" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferProcessPartialChange (3,666,284 samples, 0.02%)</title><rect x="93.5" y="453" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="96.51" y="463.5" ></text>
</g>
<g >
<title>HeapKeyTest (4,819,579 samples, 0.02%)</title><rect x="124.5" y="149" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="127.53" y="159.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (6,566,893 samples, 0.03%)</title><rect x="148.6" y="373" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="151.61" y="383.5" ></text>
</g>
<g >
<title>RelationInitIndexAccessInfo (62,986,868 samples, 0.30%)</title><rect x="116.7" y="341" width="3.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="119.69" y="351.5" ></text>
</g>
<g >
<title>xact_decode (1,863,102 samples, 0.01%)</title><rect x="22.6" y="741" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="25.63" y="751.5" ></text>
</g>
<g >
<title>index_getnext_tid (2,775,062 samples, 0.01%)</title><rect x="49.7" y="405" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="52.73" y="415.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref_cached (1,911,026 samples, 0.01%)</title><rect x="1170.7" y="325" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1173.73" y="335.5" ></text>
</g>
<g >
<title>load_relmap_file (3,261,712 samples, 0.02%)</title><rect x="869.0" y="293" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="872.03" y="303.5" ></text>
</g>
<g >
<title>DecodeCommit (18,854,265,166 samples, 91.11%)</title><rect x="104.1" y="501" width="1075.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="107.07" y="511.5" >DecodeCommit</text>
</g>
<g >
<title>hash_search (26,415,505 samples, 0.13%)</title><rect x="1082.8" y="421" width="1.5" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1085.81" y="431.5" ></text>
</g>
<g >
<title>bsearch (7,148,968 samples, 0.03%)</title><rect x="125.5" y="69" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="128.51" y="79.5" ></text>
</g>
<g >
<title>seg_alloc (1,842,763 samples, 0.01%)</title><rect x="128.5" y="389" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="131.45" y="399.5" ></text>
</g>
<g >
<title>PinBufferForBlock (2,085,085 samples, 0.01%)</title><rect x="124.8" y="85" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="127.84" y="95.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,023,846 samples, 0.01%)</title><rect x="24.4" y="357" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="27.39" y="367.5" ></text>
</g>
<g >
<title>[libc.so.6] (67,520,506 samples, 0.33%)</title><rect x="1069.1" y="341" width="3.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1072.09" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (3,355,321 samples, 0.02%)</title><rect x="1179.6" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1182.61" y="463.5" ></text>
</g>
<g >
<title>MemoryChunkGetValue (2,873,188 samples, 0.01%)</title><rect x="145.8" y="373" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="148.79" y="383.5" ></text>
</g>
<g >
<title>secure_read (191,921,412 samples, 0.93%)</title><rect x="62.9" y="517" width="10.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="65.85" y="527.5" ></text>
</g>
<g >
<title>SlabFree (37,037,027 samples, 0.18%)</title><rect x="1096.5" y="357" width="2.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1099.52" y="367.5" ></text>
</g>
<g >
<title>XLogReadRecordAlloc (3,713,421 samples, 0.02%)</title><rect x="49.3" y="725" width="0.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="52.27" y="735.5" ></text>
</g>
<g >
<title>AtEOXact_GUC (1,833,606 samples, 0.01%)</title><rect x="107.6" y="389" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="110.59" y="399.5" ></text>
</g>
<g >
<title>DecodeTXNNeedSkip (2,806,920 samples, 0.01%)</title><rect x="104.2" y="485" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="107.15" y="495.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (2,045,827 samples, 0.01%)</title><rect x="49.9" y="533" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="52.91" y="543.5" ></text>
</g>
<g >
<title>heap_getnextslot (25,283,874 samples, 0.12%)</title><rect x="124.5" y="181" width="1.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="127.49" y="191.5" ></text>
</g>
<g >
<title>ReorderBufferIterTXNInit (2,690,738,004 samples, 13.00%)</title><rect x="705.4" y="437" width="153.4" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="708.37" y="447.5" >ReorderBufferIterTX..</text>
</g>
<g >
<title>write (12,546,060 samples, 0.06%)</title><rect x="1072.9" y="357" width="0.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1075.94" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferExecuteInvalidations (61,609,154 samples, 0.30%)</title><rect x="16.5" y="757" width="3.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="19.51" y="767.5" ></text>
</g>
<g >
<title>init_htab (4,529,329 samples, 0.02%)</title><rect x="128.3" y="405" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="131.30" y="415.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (41,584,331 samples, 0.20%)</title><rect x="123.9" y="389" width="2.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="126.86" y="399.5" ></text>
</g>
<g >
<title>cfree (26,873,664 samples, 0.13%)</title><rect x="142.5" y="357" width="1.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="145.50" y="367.5" ></text>
</g>
<g >
<title>heapgettup_pagemode (2,074,381 samples, 0.01%)</title><rect x="118.0" y="213" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="121.03" y="223.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (2,006,451 samples, 0.01%)</title><rect x="24.1" y="309" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="27.11" y="319.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (84,412,937 samples, 0.41%)</title><rect x="895.4" y="341" width="4.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="898.37" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (10,103,335 samples, 0.05%)</title><rect x="114.8" y="389" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="117.75" y="399.5" ></text>
</g>
<g >
<title>AllocSetFree (9,742,163 samples, 0.05%)</title><rect x="145.4" y="389" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="148.40" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (67,450,703 samples, 0.33%)</title><rect x="1087.0" y="421" width="3.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1089.97" y="431.5" ></text>
</g>
<g >
<title>memset (860,550,538 samples, 4.16%)</title><rect x="730.9" y="373" width="49.0" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="733.86" y="383.5" >memset</text>
</g>
<g >
<title>CatCacheInvalidate (3,552,263 samples, 0.02%)</title><rect x="122.8" y="309" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="125.75" y="319.5" ></text>
</g>
<g >
<title>systable_getnext (4,059,971 samples, 0.02%)</title><rect x="25.7" y="245" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="28.70" y="255.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (7,056,043 samples, 0.03%)</title><rect x="1097.9" y="341" width="0.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1100.91" y="351.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (42,994,889 samples, 0.21%)</title><rect x="907.3" y="325" width="2.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="910.28" y="335.5" ></text>
</g>
<g >
<title>_bt_compare (3,134,386 samples, 0.02%)</title><rect x="121.2" y="309" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="124.22" y="319.5" ></text>
</g>
<g >
<title>ReorderBufferCheckAndTruncateAbortedTXN (8,659,146 samples, 0.04%)</title><rect x="1091.8" y="405" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1094.76" y="415.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (5,775,467 samples, 0.03%)</title><rect x="26.0" y="453" width="0.3" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="29.01" y="463.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (4,841,038 samples, 0.02%)</title><rect x="117.5" y="181" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="120.48" y="191.5" ></text>
</g>
<g >
<title>memcpy (21,170,465 samples, 0.10%)</title><rect x="934.8" y="389" width="1.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="937.78" y="399.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (2,111,268 samples, 0.01%)</title><rect x="123.4" y="277" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="126.38" y="287.5" ></text>
</g>
<g >
<title>systable_getnext (4,967,195 samples, 0.02%)</title><rect x="111.5" y="389" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="114.50" y="399.5" ></text>
</g>
<g >
<title>btgettuple (2,023,846 samples, 0.01%)</title><rect x="24.4" y="245" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="27.39" y="255.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (865,467,590 samples, 4.18%)</title><rect x="866.2" y="389" width="49.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="869.15" y="399.5" >Acce..</text>
</g>
<g >
<title>hash_search_with_hash_value (29,840,615 samples, 0.14%)</title><rect x="84.9" y="453" width="1.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="87.93" y="463.5" ></text>
</g>
<g >
<title>WALRead (2,273,371 samples, 0.01%)</title><rect x="42.5" y="677" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="45.55" y="687.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (21,038,895 samples, 0.10%)</title><rect x="121.8" y="341" width="1.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="124.77" y="351.5" ></text>
</g>
<g >
<title>ScanPgRelation (2,023,846 samples, 0.01%)</title><rect x="24.4" y="309" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="27.39" y="319.5" ></text>
</g>
<g >
<title>SlabAlloc (22,637,544 samples, 0.11%)</title><rect x="88.1" y="437" width="1.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="91.11" y="447.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="725" width="1138.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="53.90" y="735.5" >[libc.so.6]</text>
</g>
<g >
<title>hash_bytes_uint32 (1,782,179 samples, 0.01%)</title><rect x="102.9" y="437" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="105.87" y="447.5" ></text>
</g>
<g >
<title>RelationClose (6,276,570 samples, 0.03%)</title><rect x="110.9" y="437" width="0.4" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
<text x="113.91" y="447.5" ></text>
</g>
<g >
<title>CatCacheInvalidate (1,152,823,231 samples, 5.57%)</title><rect x="635.4" y="389" width="65.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="638.37" y="399.5" >CatCach..</text>
</g>
<g >
<title>XLogSendLogical (2,045,827 samples, 0.01%)</title><rect x="49.9" y="549" width="0.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="52.91" y="559.5" ></text>
</g>
<g >
<title>LockReleaseAll (7,260,005 samples, 0.04%)</title><rect x="109.2" y="341" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="112.21" y="351.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (4,097,111 samples, 0.02%)</title><rect x="95.5" y="421" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="98.50" y="431.5" ></text>
</g>
<g >
<title>WalSndKeepaliveIfNecessary (9,120,121 samples, 0.04%)</title><rect x="74.9" y="549" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="77.86" y="559.5" ></text>
</g>
<g >
<title>index_getnext_slot (7,566,164 samples, 0.04%)</title><rect x="25.1" y="229" width="0.4" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="28.08" y="239.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (3,522,814 samples, 0.02%)</title><rect x="1085.1" y="389" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1088.12" y="399.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (21,341,885 samples, 0.10%)</title><rect x="24.7" y="357" width="1.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="27.72" y="367.5" ></text>
</g>
<g >
<title>dlist_push_tail (3,755,931 samples, 0.02%)</title><rect x="1074.8" y="405" width="0.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="1077.80" y="415.5" ></text>
</g>
<g >
<title>ReorderBufferProcessXid (42,362,082 samples, 0.20%)</title><rect x="81.1" y="517" width="2.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="84.13" y="527.5" ></text>
</g>
<g >
<title>pg_comp_crc32c_sse42 (33,993,860 samples, 0.16%)</title><rect x="47.3" y="693" width="1.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="50.28" y="703.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (88,678,594 samples, 0.43%)</title><rect x="784.6" y="389" width="5.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="787.65" y="399.5" ></text>
</g>
<g >
<title>pfree (1,804,039 samples, 0.01%)</title><rect x="919.3" y="405" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="922.25" y="415.5" ></text>
</g>
<g >
<title>pfree (68,885,635 samples, 0.33%)</title><rect x="701.3" y="421" width="3.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="704.32" y="431.5" ></text>
</g>
<g >
<title>page_collect_tuples (12,364,074 samples, 0.06%)</title><rect x="125.2" y="133" width="0.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="128.22" y="143.5" ></text>
</g>
<g >
<title>[unknown] (6,465,030 samples, 0.03%)</title><rect x="719.9" y="293" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="722.87" y="303.5" ></text>
</g>
<g >
<title>ReorderBufferFreeChange (27,879,220 samples, 0.13%)</title><rect x="831.3" y="405" width="1.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="834.28" y="415.5" ></text>
</g>
<g >
<title>UnlockRelationId (2,028,421 samples, 0.01%)</title><rect x="118.6" y="149" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="121.60" y="159.5" ></text>
</g>
<g >
<title>ReorderBufferQueueChange (86,925,823 samples, 0.42%)</title><rect x="89.4" y="469" width="5.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="92.40" y="479.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,762,756 samples, 0.10%)</title><rect x="155.4" y="341" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="158.41" y="351.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (2,230,635 samples, 0.01%)</title><rect x="100.4" y="437" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="103.43" y="447.5" ></text>
</g>
<g >
<title>relation_open (2,359,111 samples, 0.01%)</title><rect x="117.2" y="213" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="120.25" y="223.5" ></text>
</g>
<g >
<title>XLogReleasePreviousRecord (4,410,042 samples, 0.02%)</title><rect x="1185.2" y="501" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1188.23" y="511.5" ></text>
</g>
<g >
<title>index_getnext_tid (3,738,797 samples, 0.02%)</title><rect x="24.5" y="261" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="27.50" y="271.5" ></text>
</g>
<g >
<title>DecodeDelete (62,820,633 samples, 0.30%)</title><rect x="98.2" y="501" width="3.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="101.21" y="511.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (30,174,314 samples, 0.15%)</title><rect x="113.8" y="405" width="1.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="116.78" y="415.5" ></text>
</g>
<g >
<title>hash_initial_lookup (6,821,304 samples, 0.03%)</title><rect x="1177.4" y="389" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="1180.37" y="399.5" ></text>
</g>
<g >
<title>uint32_hash (2,652,118 samples, 0.01%)</title><rect x="1189.4" y="741" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1192.37" y="751.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (24,154,543 samples, 0.12%)</title><rect x="88.0" y="453" width="1.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="91.02" y="463.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,262,191 samples, 0.01%)</title><rect x="24.7" y="277" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="27.72" y="287.5" ></text>
</g>
<g >
<title>hash_search (12,184,924 samples, 0.06%)</title><rect x="102.3" y="469" width="0.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="105.28" y="479.5" ></text>
</g>
<g >
<title>ReorderBufferAllocChange (47,079,444 samples, 0.23%)</title><rect x="1062.6" y="421" width="2.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1065.57" y="431.5" ></text>
</g>
<g >
<title>memcpy (1,988,336 samples, 0.01%)</title><rect x="49.5" y="725" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="52.48" y="735.5" ></text>
</g>
<g >
<title>RelfilenumberMapInvalidateCallback (20,302,948 samples, 0.10%)</title><rect x="15.1" y="757" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="18.08" y="767.5" ></text>
</g>
<g >
<title>[libc.so.6] (25,882,413 samples, 0.13%)</title><rect x="922.4" y="437" width="1.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="925.44" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferSerializedPath (6,809,082 samples, 0.03%)</title><rect x="857.8" y="405" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="860.79" y="415.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,277,638 samples, 0.01%)</title><rect x="50.4" y="389" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="53.42" y="399.5" ></text>
</g>
<g >
<title>deregister_seq_scan (46,822,735 samples, 0.23%)</title><rect x="614.6" y="357" width="2.7" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="617.62" y="367.5" ></text>
</g>
<g >
<title>recv (5,197,662 samples, 0.03%)</title><rect x="50.5" y="741" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="53.55" y="751.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (3,265,432 samples, 0.02%)</title><rect x="915.9" y="373" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="918.92" y="383.5" ></text>
</g>
<g >
<title>merge (17,085,601 samples, 0.08%)</title><rect x="1089.5" y="373" width="1.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1092.53" y="383.5" ></text>
</g>
<g >
<title>MemoryContextDeleteOnly (1,755,974 samples, 0.01%)</title><rect x="149.7" y="373" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="152.71" y="383.5" ></text>
</g>
<g >
<title>SnapBuildSnapDecRefcount (2,727,991 samples, 0.01%)</title><rect x="1095.4" y="357" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="1098.42" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (34,461,947 samples, 0.17%)</title><rect x="722.6" y="373" width="2.0" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="725.64" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferQueueInvalidations (52,297,886 samples, 0.25%)</title><rect x="1180.8" y="485" width="3.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1183.83" y="495.5" ></text>
</g>
<g >
<title>systable_getnext (25,283,874 samples, 0.12%)</title><rect x="124.5" y="213" width="1.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="127.49" y="223.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (5,293,602 samples, 0.03%)</title><rect x="111.0" y="389" width="0.3" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text x="113.97" y="399.5" ></text>
</g>
<g >
<title>AtEOXact_Files (2,510,967 samples, 0.01%)</title><rect x="107.4" y="389" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="110.45" y="399.5" ></text>
</g>
<g >
<title>s_lock (2,829,742 samples, 0.01%)</title><rect x="123.5" y="325" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="126.52" y="335.5" ></text>
</g>
<g >
<title>UpdateDecodingStats (1,863,102 samples, 0.01%)</title><rect x="22.6" y="709" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="25.63" y="719.5" ></text>
</g>
<g >
<title>RelationMapInvalidateAll (3,456,755 samples, 0.02%)</title><rect x="869.0" y="309" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="872.02" y="319.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (3,738,797 samples, 0.02%)</title><rect x="24.5" y="325" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="27.50" y="335.5" ></text>
</g>
<g >
<title>ResourceOwnerRelease (10,883,387 samples, 0.05%)</title><rect x="109.1" y="389" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="112.12" y="399.5" ></text>
</g>
<g >
<title>RelidByRelfilenumber (2,045,827 samples, 0.01%)</title><rect x="49.9" y="437" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="52.91" y="447.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (21,341,885 samples, 0.10%)</title><rect x="24.7" y="341" width="1.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="27.72" y="351.5" ></text>
</g>
<g >
<title>__libc_pread (2,273,371 samples, 0.01%)</title><rect x="42.5" y="661" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="45.55" y="671.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (44,677,855 samples, 0.22%)</title><rect x="1062.6" y="405" width="2.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1065.65" y="415.5" ></text>
</g>
<g >
<title>[libc.so.6] (658,143,195 samples, 3.18%)</title><rect x="792.0" y="373" width="37.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="794.96" y="383.5" >[li..</text>
</g>
<g >
<title>systable_getnext (2,775,062 samples, 0.01%)</title><rect x="49.7" y="437" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="52.73" y="447.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (2,459,030 samples, 0.01%)</title><rect x="916.4" y="405" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="919.38" y="415.5" ></text>
</g>
<g >
<title>procsignal_sigusr1_handler (2,277,638 samples, 0.01%)</title><rect x="50.4" y="357" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="53.42" y="367.5" ></text>
</g>
<g >
<title>palloc (23,612,381 samples, 0.11%)</title><rect x="1081.4" y="421" width="1.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1084.41" y="431.5" ></text>
</g>
<g >
<title>systable_getnext (1,981,552 samples, 0.01%)</title><rect x="120.0" y="181" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="123.00" y="191.5" ></text>
</g>
<g >
<title>StartLogicalReplication (42,220,254 samples, 0.20%)</title><rect x="24.0" y="645" width="2.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="27.01" y="655.5" ></text>
</g>
<g >
<title>[libc.so.6] (132,459,929 samples, 0.64%)</title><rect x="925.7" y="405" width="7.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="928.67" y="415.5" ></text>
</g>
<g >
<title>index_getnext_slot (2,023,846 samples, 0.01%)</title><rect x="24.4" y="277" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="27.39" y="287.5" ></text>
</g>
<g >
<title>pfree (23,821,591 samples, 0.12%)</title><rect x="831.5" y="389" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="834.51" y="399.5" ></text>
</g>
<g >
<title>hash_initial_lookup (5,647,830 samples, 0.03%)</title><rect x="83.1" y="453" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="86.14" y="463.5" ></text>
</g>
<g >
<title>ReorderBufferCommit (42,220,254 samples, 0.20%)</title><rect x="24.0" y="549" width="2.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="27.01" y="559.5" ></text>
</g>
<g >
<title>table_beginscan_strat (2,845,642 samples, 0.01%)</title><rect x="117.8" y="245" width="0.1" height="15.0" fill="rgb(213,36,8)" rx="2" ry="2" />
<text x="120.77" y="255.5" ></text>
</g>
<g >
<title>heap_getattr (2,788,770 samples, 0.01%)</title><rect x="124.6" y="133" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="127.64" y="143.5" ></text>
</g>
<g >
<title>CatCacheInvalidate (13,160,277 samples, 0.06%)</title><rect x="21.0" y="741" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="23.99" y="751.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (5,017,979 samples, 0.02%)</title><rect x="1171.1" y="421" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1174.11" y="431.5" ></text>
</g>
<g >
<title>heap_fetch_next_buffer (5,326,944 samples, 0.03%)</title><rect x="124.8" y="149" width="0.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="127.82" y="159.5" ></text>
</g>
<g >
<title>ResourceOwnerReleaseInternal (10,883,387 samples, 0.05%)</title><rect x="109.1" y="373" width="0.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="112.12" y="383.5" ></text>
</g>
<g >
<title>[unknown] (3,721,175 samples, 0.02%)</title><rect x="50.0" y="725" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="53.03" y="735.5" ></text>
</g>
<g >
<title>pq_sendint64 (1,949,335 samples, 0.01%)</title><rect x="916.7" y="357" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="919.72" y="367.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (2,006,451 samples, 0.01%)</title><rect x="24.1" y="341" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="27.11" y="351.5" ></text>
</g>
<g >
<title>memset (18,676,462 samples, 0.09%)</title><rect x="921.4" y="437" width="1.0" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="924.38" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (33,809,790 samples, 0.16%)</title><rect x="1066.0" y="405" width="2.0" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1069.03" y="415.5" ></text>
</g>
<g >
<title>pairingheap_remove (8,746,736 samples, 0.04%)</title><rect x="1067.5" y="389" width="0.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1070.46" y="399.5" ></text>
</g>
<g >
<title>BackendStartup (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="661" width="1138.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="53.90" y="671.5" >BackendStartup</text>
</g>
<g >
<title>pairingheap_add (33,137,059 samples, 0.16%)</title><rect x="786.3" y="373" width="1.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="789.35" y="383.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (523,465,081 samples, 2.53%)</title><rect x="871.3" y="357" width="29.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="874.28" y="367.5" >Lo..</text>
</g>
<g >
<title>LockRelationOid (2,372,172 samples, 0.01%)</title><rect x="119.0" y="149" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="122.05" y="159.5" ></text>
</g>
<g >
<title>[unknown] (4,592,370 samples, 0.02%)</title><rect x="720.0" y="277" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="722.98" y="287.5" ></text>
</g>
<g >
<title>_bt_first (2,783,663 samples, 0.01%)</title><rect x="111.6" y="325" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="114.63" y="335.5" ></text>
</g>
<g >
<title>ReorderBufferAddNewCommandId (119,592,435 samples, 0.58%)</title><rect x="87.5" y="485" width="6.9" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="90.54" y="495.5" ></text>
</g>
<g >
<title>index_getnext_tid (7,566,164 samples, 0.04%)</title><rect x="25.1" y="213" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="28.08" y="223.5" ></text>
</g>
<g >
<title>malloc (70,166,911 samples, 0.34%)</title><rect x="152.5" y="373" width="4.0" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="155.54" y="383.5" ></text>
</g>
<g >
<title>appendStringInfoVA (6,648,225 samples, 0.03%)</title><rect x="918.9" y="389" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="921.88" y="399.5" ></text>
</g>
<g >
<title>__errno_location@plt (2,381,143 samples, 0.01%)</title><rect x="1101.5" y="373" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1104.50" y="383.5" ></text>
</g>
<g >
<title>pairingheap_add (12,688,926 samples, 0.06%)</title><rect x="1087.4" y="405" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1090.41" y="415.5" ></text>
</g>
<g >
<title>dlist_head_element_off (1,973,500 samples, 0.01%)</title><rect x="96.8" y="421" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="99.77" y="431.5" ></text>
</g>
<g >
<title>systable_beginscan (37,885,276 samples, 0.18%)</title><rect x="123.9" y="325" width="2.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="126.87" y="335.5" ></text>
</g>
<g >
<title>ScanPgRelation (3,437,273 samples, 0.02%)</title><rect x="25.5" y="245" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="28.51" y="255.5" ></text>
</g>
<g >
<title>hash_seq_init (11,593,629 samples, 0.06%)</title><rect x="884.3" y="325" width="0.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="887.31" y="335.5" ></text>
</g>
<g >
<title>RelationReloadIndexInfo (34,412,717 samples, 0.17%)</title><rect x="124.0" y="245" width="2.0" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="127.04" y="255.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (5,607,204 samples, 0.03%)</title><rect x="1090.5" y="389" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1093.50" y="399.5" ></text>
</g>
<g >
<title>index_getnext_tid (3,260,983 samples, 0.02%)</title><rect x="111.6" y="357" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="114.60" y="367.5" ></text>
</g>
<g >
<title>_bt_first (2,920,151 samples, 0.01%)</title><rect x="24.2" y="325" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="27.22" y="335.5" ></text>
</g>
<g >
<title>pfree (2,478,721 samples, 0.01%)</title><rect x="1068.6" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1071.56" y="367.5" ></text>
</g>
<g >
<title>hash_search (55,757,642 samples, 0.27%)</title><rect x="1174.7" y="421" width="3.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1177.72" y="431.5" ></text>
</g>
<g >
<title>xact_decode (4,095,698 samples, 0.02%)</title><rect x="23.8" y="565" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="26.78" y="575.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (2,006,451 samples, 0.01%)</title><rect x="24.1" y="325" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="27.11" y="335.5" ></text>
</g>
<g >
<title>logical_read_xlog_page (12,196,026 samples, 0.06%)</title><rect x="44.8" y="709" width="0.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="47.78" y="719.5" ></text>
</g>
<g >
<title>postmaster_child_launch (2,045,827 samples, 0.01%)</title><rect x="49.9" y="645" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="52.91" y="655.5" ></text>
</g>
<g >
<title>systable_beginscan (9,090,417 samples, 0.04%)</title><rect x="117.4" y="261" width="0.5" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="120.43" y="271.5" ></text>
</g>
<g >
<title>WalSndCheckTimeOut (5,739,228 samples, 0.03%)</title><rect x="74.5" y="549" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="77.53" y="559.5" ></text>
</g>
<g >
<title>_bt_search (2,559,693 samples, 0.01%)</title><rect x="25.6" y="149" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="28.56" y="159.5" ></text>
</g>
<g >
<title>commit_cb_wrapper (24,378,702 samples, 0.12%)</title><rect x="918.0" y="437" width="1.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="920.97" y="447.5" ></text>
</g>
<g >
<title>CallSyscacheCallbacks (36,083,309 samples, 0.17%)</title><rect x="877.6" y="341" width="2.0" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="880.59" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferCheckMemoryLimit (3,339,737 samples, 0.02%)</title><rect x="93.3" y="453" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="96.31" y="463.5" ></text>
</g>
<g >
<title>AllocSetRealloc (2,250,736,123 samples, 10.88%)</title><rect x="933.5" y="405" width="128.4" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="936.51" y="415.5" >AllocSetRealloc</text>
</g>
<g >
<title>ReorderBufferSerializeTXN (2,277,638 samples, 0.01%)</title><rect x="50.4" y="437" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="53.42" y="447.5" ></text>
</g>
<g >
<title>SlabAlloc (35,822,733 samples, 0.17%)</title><rect x="94.9" y="437" width="2.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="97.87" y="447.5" ></text>
</g>
<g >
<title>pgstat_report_replslot (6,140,493 samples, 0.03%)</title><rect x="1170.7" y="373" width="0.3" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1173.67" y="383.5" ></text>
</g>
<g >
<title>recv@plt (2,604,547 samples, 0.01%)</title><rect x="73.6" y="469" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="76.65" y="479.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (15,786,318 samples, 0.08%)</title><rect x="118.4" y="197" width="0.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="121.36" y="207.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32 (33,735,515 samples, 0.16%)</title><rect x="907.4" y="309" width="1.9" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="910.40" y="319.5" ></text>
</g>
<g >
<title>[libc.so.6] (19,749,366 samples, 0.10%)</title><rect x="1060.6" y="341" width="1.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1063.61" y="351.5" ></text>
</g>
<g >
<title>[libc.so.6] (14,259,511 samples, 0.07%)</title><rect x="730.0" y="309" width="0.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="733.04" y="319.5" ></text>
</g>
<g >
<title>InvalidateSystemCachesExtended (56,531,690 samples, 0.27%)</title><rect x="868.1" y="341" width="3.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="871.05" y="351.5" ></text>
</g>
<g >
<title>merge (2,327,780 samples, 0.01%)</title><rect x="1094.9" y="325" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1097.87" y="335.5" ></text>
</g>
<g >
<title>hash_bytes (4,662,773 samples, 0.02%)</title><rect x="115.6" y="389" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="118.55" y="399.5" ></text>
</g>
<g >
<title>_bt_first (7,566,164 samples, 0.04%)</title><rect x="25.1" y="181" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="28.08" y="191.5" ></text>
</g>
<g >
<title>ConditionVariableCancelSleep (1,841,870 samples, 0.01%)</title><rect x="108.7" y="389" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="111.73" y="399.5" ></text>
</g>
<g >
<title>errstart (4,718,623 samples, 0.02%)</title><rect x="1178.0" y="453" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1181.01" y="463.5" ></text>
</g>
<g >
<title>PathNameOpenFile (5,240,221 samples, 0.03%)</title><rect x="720.3" y="405" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="723.30" y="415.5" ></text>
</g>
<g >
<title>LockAcquireExtended (2,463,153 samples, 0.01%)</title><rect x="116.0" y="357" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="119.03" y="367.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (4,733,944 samples, 0.02%)</title><rect x="50.3" y="565" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="53.28" y="575.5" ></text>
</g>
<g >
<title>index_beginscan (2,303,478 samples, 0.01%)</title><rect x="115.8" y="405" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="118.82" y="415.5" ></text>
</g>
<g >
<title>TransactionIdInArray (8,421,224 samples, 0.04%)</title><rect x="125.4" y="85" width="0.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="128.44" y="95.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (9,145,292 samples, 0.04%)</title><rect x="1094.5" y="357" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1097.48" y="367.5" ></text>
</g>
<g >
<title>AllocSetAlloc (5,528,043 samples, 0.03%)</title><rect x="1183.5" y="453" width="0.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1186.50" y="463.5" ></text>
</g>
<g >
<title>pgstat_report_replslot (6,792,195 samples, 0.03%)</title><rect x="1178.8" y="469" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="1181.81" y="479.5" ></text>
</g>
<g >
<title>get_attoptions (3,738,797 samples, 0.02%)</title><rect x="24.5" y="373" width="0.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="27.50" y="383.5" ></text>
</g>
<g >
<title>FileRead (234,658,986 samples, 1.13%)</title><rect x="706.9" y="405" width="13.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="709.90" y="415.5" ></text>
</g>
<g >
<title>LWLockWakeup (1,897,104 samples, 0.01%)</title><rect x="910.0" y="309" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="912.95" y="319.5" ></text>
</g>
<g >
<title>ReorderBufferSerializedPath (4,960,330 samples, 0.02%)</title><rect x="1170.3" y="389" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1173.34" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferCommit (4,639,500 samples, 0.02%)</title><rect x="49.6" y="501" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="52.62" y="511.5" ></text>
</g>
<g >
<title>systable_beginscan (1,793,897 samples, 0.01%)</title><rect x="117.6" y="149" width="0.1" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="120.59" y="159.5" ></text>
</g>
<g >
<title>systable_beginscan (81,970,314 samples, 0.40%)</title><rect x="115.8" y="421" width="4.7" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="118.82" y="431.5" ></text>
</g>
<g >
<title>PlanCacheObjectCallback (42,942,444 samples, 0.21%)</title><rect x="386.3" y="389" width="2.4" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="389.28" y="399.5" ></text>
</g>
<g >
<title>AllocSetReset (2,349,461 samples, 0.01%)</title><rect x="110.6" y="341" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="113.58" y="351.5" ></text>
</g>
<g >
<title>btgettuple (3,260,983 samples, 0.02%)</title><rect x="111.6" y="341" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="114.60" y="351.5" ></text>
</g>
<g >
<title>NeedToWaitForWal (2,321,773 samples, 0.01%)</title><rect x="45.3" y="677" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="48.35" y="687.5" ></text>
</g>
<g >
<title>relation_open (5,775,467 samples, 0.03%)</title><rect x="26.0" y="469" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="29.01" y="479.5" ></text>
</g>
<g >
<title>ScanPgRelation (5,310,834 samples, 0.03%)</title><rect x="119.8" y="197" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="122.84" y="207.5" ></text>
</g>
<g >
<title>ServerLoop (4,095,698 samples, 0.02%)</title><rect x="23.8" y="725" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="26.78" y="735.5" ></text>
</g>
<g >
<title>heapgettup_pagemode (25,283,874 samples, 0.12%)</title><rect x="124.5" y="165" width="1.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="127.49" y="175.5" ></text>
</g>
<g >
<title>StartReadBuffer (2,346,780 samples, 0.01%)</title><rect x="124.8" y="117" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="127.82" y="127.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,045,827 samples, 0.01%)</title><rect x="49.9" y="725" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="52.91" y="735.5" ></text>
</g>
<g >
<title>AcceptInvalidationMessages (2,031,898 samples, 0.01%)</title><rect x="117.2" y="181" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="120.25" y="191.5" ></text>
</g>
<g >
<title>StartReadBuffers (2,334,159 samples, 0.01%)</title><rect x="125.0" y="85" width="0.1" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="127.99" y="95.5" ></text>
</g>
<g >
<title>[unknown] (1,920,204 samples, 0.01%)</title><rect x="1061.7" y="341" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1064.73" y="351.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (8,068,140 samples, 0.04%)</title><rect x="116.9" y="245" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="119.92" y="255.5" ></text>
</g>
<g >
<title>table_open (5,775,467 samples, 0.03%)</title><rect x="26.0" y="485" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="29.01" y="495.5" ></text>
</g>
<g >
<title>systable_endscan (1,755,334 samples, 0.01%)</title><rect x="119.9" y="181" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="122.90" y="191.5" ></text>
</g>
<g >
<title>SearchCatCacheInternal (49,582,419 samples, 0.24%)</title><rect x="117.4" y="293" width="2.8" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="120.38" y="303.5" ></text>
</g>
<g >
<title>RelationGetNumberOfBlocksInFork (2,748,572 samples, 0.01%)</title><rect x="124.2" y="149" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="127.18" y="159.5" ></text>
</g>
<g >
<title>_bt_readfirstpage (3,334,637 samples, 0.02%)</title><rect x="25.2" y="165" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="28.17" y="175.5" ></text>
</g>
<g >
<title>pairingheap_add (7,159,644 samples, 0.03%)</title><rect x="90.7" y="437" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="93.68" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferAddDistributedInvalidations (2,795,000,819 samples, 13.51%)</title><rect x="924.9" y="453" width="159.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="927.94" y="463.5" >ReorderBufferAddDist..</text>
</g>
<g >
<title>MemoryChunkGetBlock (1,786,918 samples, 0.01%)</title><rect x="148.5" y="373" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="151.51" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (13,004,431 samples, 0.06%)</title><rect x="1182.0" y="453" width="0.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1184.99" y="463.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (865,467,590 samples, 4.18%)</title><rect x="866.2" y="373" width="49.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="869.15" y="383.5" >Rece..</text>
</g>
<g >
<title>memset (1,989,212 samples, 0.01%)</title><rect x="96.9" y="453" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="99.91" y="463.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (2,111,268 samples, 0.01%)</title><rect x="123.4" y="309" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="126.38" y="319.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (2,855,764 samples, 0.01%)</title><rect x="122.1" y="293" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="125.14" y="303.5" ></text>
</g>
<g >
<title>[libc.so.6] (2,065,086 samples, 0.01%)</title><rect x="128.1" y="405" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="131.07" y="415.5" ></text>
</g>
<g >
<title>BackendMain (2,045,827 samples, 0.01%)</title><rect x="49.9" y="629" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="52.91" y="639.5" ></text>
</g>
<g >
<title>[unknown] (2,125,436 samples, 0.01%)</title><rect x="1170.1" y="325" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1173.15" y="335.5" ></text>
</g>
<g >
<title>table_open (2,023,846 samples, 0.01%)</title><rect x="24.4" y="389" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="27.39" y="399.5" ></text>
</g>
<g >
<title>XLogSendLogical (4,968,276 samples, 0.02%)</title><rect x="49.6" y="565" width="0.3" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="52.62" y="575.5" ></text>
</g>
<g >
<title>RelationCacheInvalidateEntry (10,024,523 samples, 0.05%)</title><rect x="10.8" y="741" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.77" y="751.5" ></text>
</g>
<g >
<title>table_open (2,359,111 samples, 0.01%)</title><rect x="117.2" y="229" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="120.25" y="239.5" ></text>
</g>
<g >
<title>DecodeXLogRecord (92,345,880 samples, 0.45%)</title><rect x="37.5" y="725" width="5.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="40.51" y="735.5" ></text>
</g>
<g >
<title>ReorderBufferChangeMemoryUpdate (1,921,246 samples, 0.01%)</title><rect x="831.2" y="405" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="834.17" y="415.5" ></text>
</g>
<g >
<title>__errno_location (4,199,485 samples, 0.02%)</title><rect x="1101.3" y="373" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1104.26" y="383.5" ></text>
</g>
<g >
<title>GetCurrentTransactionNestLevel (16,537,636 samples, 0.08%)</title><rect x="459.2" y="357" width="1.0" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="462.25" y="367.5" ></text>
</g>
<g >
<title>LockRelationOid (2,359,111 samples, 0.01%)</title><rect x="117.2" y="197" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="120.25" y="207.5" ></text>
</g>
<g >
<title>relation_open (2,023,846 samples, 0.01%)</title><rect x="24.4" y="373" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="27.39" y="383.5" ></text>
</g>
<g >
<title>hash_search (37,841,138 samples, 0.18%)</title><rect x="1172.2" y="421" width="2.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="1175.17" y="431.5" ></text>
</g>
<g >
<title>hash_seq_search (3,048,107 samples, 0.01%)</title><rect x="107.1" y="373" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="110.10" y="383.5" ></text>
</g>
<g >
<title>memcpy (132,459,929 samples, 0.64%)</title><rect x="925.7" y="421" width="7.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="928.67" y="431.5" ></text>
</g>
<g >
<title>ReorderBufferCleanupTXN (1,863,102 samples, 0.01%)</title><rect x="22.6" y="677" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="25.63" y="687.5" ></text>
</g>
<g >
<title>hash_bytes (93,533,669 samples, 0.45%)</title><rect x="129.2" y="389" width="5.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="132.23" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferProcessPartialChange (8,726,157 samples, 0.04%)</title><rect x="1073.7" y="405" width="0.5" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="1076.68" y="415.5" ></text>
</g>
<g >
<title>socket_putmessage (2,376,515 samples, 0.01%)</title><rect x="918.7" y="357" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="921.67" y="367.5" ></text>
</g>
<g >
<title>RelationMapOidToFilenumber (3,210,462 samples, 0.02%)</title><rect x="868.7" y="293" width="0.2" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="871.72" y="303.5" ></text>
</g>
<g >
<title>XLogSendLogical (4,733,944 samples, 0.02%)</title><rect x="50.3" y="581" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="53.28" y="591.5" ></text>
</g>
<g >
<title>XLogSendLogical (19,518,539,008 samples, 94.32%)</title><rect x="75.4" y="549" width="1113.0" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="78.38" y="559.5" >XLogSendLogical</text>
</g>
<g >
<title>ReorderBufferTXNByXid (27,320,783 samples, 0.13%)</title><rect x="1082.8" y="437" width="1.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1085.76" y="447.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref_locked (4,816,229 samples, 0.02%)</title><rect x="858.3" y="373" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="861.27" y="383.5" ></text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (2,031,898 samples, 0.01%)</title><rect x="117.2" y="165" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="120.25" y="175.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (34,412,717 samples, 0.17%)</title><rect x="124.0" y="277" width="2.0" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="127.04" y="287.5" ></text>
</g>
<g >
<title>socket_is_send_pending (10,566,196 samples, 0.05%)</title><rect x="1188.7" y="549" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1191.65" y="559.5" ></text>
</g>
<g >
<title>exec_replication_command (2,045,827 samples, 0.01%)</title><rect x="49.9" y="597" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="52.91" y="607.5" ></text>
</g>
<g >
<title>LockErrorCleanup (1,950,372 samples, 0.01%)</title><rect x="108.8" y="389" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="111.83" y="399.5" ></text>
</g>
<g >
<title>postmaster_child_launch (4,968,276 samples, 0.02%)</title><rect x="49.6" y="661" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="52.62" y="671.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (40,362,329 samples, 0.20%)</title><rect x="123.9" y="373" width="2.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="126.86" y="383.5" ></text>
</g>
<g >
<title>hash_initial_lookup (5,953,934 samples, 0.03%)</title><rect x="86.3" y="437" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="89.29" y="447.5" ></text>
</g>
<g >
<title>ProcessRepliesIfAny (286,527,931 samples, 1.38%)</title><rect x="57.5" y="549" width="16.4" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text x="60.53" y="559.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (7,924,317,722 samples, 38.29%)</title><rect x="249.3" y="421" width="451.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="252.27" y="431.5" >LocalExecuteInvalidationMessage</text>
</g>
<g >
<title>ReorderBufferFreeChange (175,826,746 samples, 0.85%)</title><rect x="139.6" y="421" width="10.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="142.64" y="431.5" ></text>
</g>
<g >
<title>uint32_hash (4,026,462 samples, 0.02%)</title><rect x="86.6" y="453" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="89.63" y="463.5" ></text>
</g>
<g >
<title>XLogSendLogical (3,098,730 samples, 0.01%)</title><rect x="21.8" y="741" width="0.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="24.83" y="751.5" ></text>
</g>
<g >
<title>ScanPgRelation (4,059,971 samples, 0.02%)</title><rect x="25.7" y="261" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="28.70" y="271.5" ></text>
</g>
<g >
<title>SearchSysCache2 (3,738,797 samples, 0.02%)</title><rect x="24.5" y="357" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="27.50" y="367.5" ></text>
</g>
<g >
<title>smgrreleaserellocator (16,564,801 samples, 0.08%)</title><rect x="900.2" y="341" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="903.18" y="351.5" ></text>
</g>
<g >
<title>MemoryContextAlloc (16,372,068 samples, 0.08%)</title><rect x="1180.9" y="453" width="1.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1183.92" y="463.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeReserve (7,382,962 samples, 0.04%)</title><rect x="829.5" y="405" width="0.5" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="832.54" y="415.5" ></text>
</g>
<g >
<title>SearchCatCache1 (49,582,419 samples, 0.24%)</title><rect x="117.4" y="309" width="2.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="120.38" y="319.5" ></text>
</g>
<g >
<title>ReorderBufferSerializedPath (6,977,940 samples, 0.03%)</title><rect x="149.9" y="405" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="152.89" y="415.5" ></text>
</g>
<g >
<title>s_lock (88,347,533 samples, 0.43%)</title><rect x="910.5" y="341" width="5.0" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="913.47" y="351.5" ></text>
</g>
<g >
<title>btgettuple (3,738,797 samples, 0.02%)</title><rect x="24.5" y="245" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="27.50" y="255.5" ></text>
</g>
<g >
<title>OutputPluginPrepareWrite (4,597,780 samples, 0.02%)</title><rect x="918.1" y="405" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="921.10" y="415.5" ></text>
</g>
<g >
<title>index_open (33,316,986 samples, 0.16%)</title><rect x="24.1" y="469" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="27.11" y="479.5" ></text>
</g>
<g >
<title>[libc.so.6] (92,132,238 samples, 0.45%)</title><rect x="725.6" y="325" width="5.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="728.60" y="335.5" ></text>
</g>
<g >
<title>read_stream_start_pending_read (2,334,159 samples, 0.01%)</title><rect x="125.0" y="101" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="127.99" y="111.5" ></text>
</g>
<g >
<title>socket_putmessage_noblock (2,713,436 samples, 0.01%)</title><rect x="918.7" y="373" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="921.66" y="383.5" ></text>
</g>
<g >
<title>hash_search (16,098,747 samples, 0.08%)</title><rect x="900.2" y="325" width="0.9" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="903.21" y="335.5" ></text>
</g>
<g >
<title>dopr (6,151,235 samples, 0.03%)</title><rect x="830.0" y="357" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="832.98" y="367.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (13,160,277 samples, 0.06%)</title><rect x="21.0" y="757" width="0.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="23.99" y="767.5" ></text>
</g>
<g >
<title>main (4,968,276 samples, 0.02%)</title><rect x="49.6" y="725" width="0.3" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="52.62" y="735.5" ></text>
</g>
<g >
<title>systable_getnext (1,826,307 samples, 0.01%)</title><rect x="112.2" y="389" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="115.23" y="399.5" ></text>
</g>
<g >
<title>CatCacheInvalidate (66,402,300 samples, 0.32%)</title><rect x="896.4" y="325" width="3.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="899.39" y="335.5" ></text>
</g>
<g >
<title>ReorderBufferReplay (4,639,500 samples, 0.02%)</title><rect x="49.6" y="485" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="52.62" y="495.5" ></text>
</g>
<g >
<title>StartTransactionCommand (878,389,808 samples, 4.24%)</title><rect x="866.1" y="437" width="50.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="869.10" y="447.5" >Start..</text>
</g>
<g >
<title>hash_search_with_hash_value (11,017,392 samples, 0.05%)</title><rect x="900.3" y="309" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="903.28" y="319.5" ></text>
</g>
<g >
<title>exec_replication_command (42,220,254 samples, 0.20%)</title><rect x="24.0" y="661" width="2.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="27.01" y="671.5" ></text>
</g>
<g >
<title>SlabAlloc (29,413,775 samples, 0.14%)</title><rect x="1084.7" y="405" width="1.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1087.67" y="415.5" ></text>
</g>
<g >
<title>PostgresMain (2,045,827 samples, 0.01%)</title><rect x="49.9" y="613" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="52.91" y="623.5" ></text>
</g>
<g >
<title>AllocSetAlloc (24,572,514 samples, 0.12%)</title><rect x="920.0" y="437" width="1.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="922.98" y="447.5" ></text>
</g>
<g >
<title>_bt_first (1,826,307 samples, 0.01%)</title><rect x="112.2" y="325" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="115.23" y="335.5" ></text>
</g>
<g >
<title>PostmasterMain (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="693" width="1138.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="53.90" y="703.5" >PostmasterMain</text>
</g>
<g >
<title>MemoryContextAllocZero (4,755,863 samples, 0.02%)</title><rect x="915.5" y="373" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="918.54" y="383.5" ></text>
</g>
<g >
<title>PostmasterMain (2,045,827 samples, 0.01%)</title><rect x="49.9" y="693" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="52.91" y="703.5" ></text>
</g>
<g >
<title>pvsnprintf (6,648,225 samples, 0.03%)</title><rect x="918.9" y="373" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="921.88" y="383.5" ></text>
</g>
<g >
<title>pgstat_entry_ref_hash_insert (1,911,026 samples, 0.01%)</title><rect x="1170.7" y="309" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1173.73" y="319.5" ></text>
</g>
<g >
<title>RelationBuildDesc (32,408,739 samples, 0.16%)</title><rect x="118.4" y="213" width="1.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="121.36" y="223.5" ></text>
</g>
<g >
<title>StartLogicalReplication (2,045,827 samples, 0.01%)</title><rect x="49.9" y="581" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="52.91" y="591.5" ></text>
</g>
<g >
<title>AtStart_Cache (865,467,590 samples, 4.18%)</title><rect x="866.2" y="405" width="49.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="869.15" y="415.5" >AtSt..</text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (2,518,585 samples, 0.01%)</title><rect x="14.7" y="741" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="17.68" y="751.5" ></text>
</g>
<g >
<title>PostgresMain (4,968,276 samples, 0.02%)</title><rect x="49.6" y="629" width="0.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="52.62" y="639.5" ></text>
</g>
<g >
<title>SlabAlloc (40,840,489 samples, 0.20%)</title><rect x="1062.9" y="389" width="2.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1065.87" y="399.5" ></text>
</g>
<g >
<title>XLogSendLogical (42,220,254 samples, 0.20%)</title><rect x="24.0" y="613" width="2.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="27.01" y="623.5" ></text>
</g>
<g >
<title>ReorderBufferFreeSnap (6,358,006 samples, 0.03%)</title><rect x="1095.2" y="373" width="0.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="1098.22" y="383.5" ></text>
</g>
<g >
<title>ScanPgRelation (4,195,178 samples, 0.02%)</title><rect x="112.2" y="405" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="115.16" y="415.5" ></text>
</g>
<g >
<title>_bt_first (3,437,273 samples, 0.02%)</title><rect x="25.5" y="165" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="28.51" y="175.5" ></text>
</g>
<g >
<title>[libc.so.6] (24,667,343 samples, 0.12%)</title><rect x="142.6" y="341" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="145.63" y="351.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (49,270,605 samples, 0.24%)</title><rect x="117.4" y="277" width="2.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="120.40" y="287.5" ></text>
</g>
<g >
<title>btgettuple (1,826,307 samples, 0.01%)</title><rect x="112.2" y="341" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="115.23" y="351.5" ></text>
</g>
<g >
<title>StartTransaction (877,816,589 samples, 4.24%)</title><rect x="866.1" y="421" width="50.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="869.14" y="431.5" >Start..</text>
</g>
<g >
<title>repalloc (2,255,649,256 samples, 10.90%)</title><rect x="933.2" y="421" width="128.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="936.23" y="431.5" >repalloc</text>
</g>
<g >
<title>pg_preadv (206,219,618 samples, 1.00%)</title><rect x="708.5" y="373" width="11.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="711.49" y="383.5" ></text>
</g>
<g >
<title>_bt_checkkeys (2,483,528 samples, 0.01%)</title><rect x="25.2" y="133" width="0.1" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="28.19" y="143.5" ></text>
</g>
<g >
<title>hash_search (4,327,055 samples, 0.02%)</title><rect x="122.1" y="309" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="125.11" y="319.5" ></text>
</g>
<g >
<title>ReorderBufferReplay (14,295,489,386 samples, 69.08%)</title><rect x="104.4" y="469" width="815.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="107.44" y="479.5" >ReorderBufferReplay</text>
</g>
<g >
<title>ReorderBufferQueueChange (33,872,750 samples, 0.16%)</title><rect x="99.7" y="485" width="1.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="102.70" y="495.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (1,469,951,970 samples, 7.10%)</title><rect x="617.3" y="405" width="83.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="620.29" y="415.5" >SysCacheI..</text>
</g>
<g >
<title>XLogReaderHasQueuedRecordOrError (8,657,113 samples, 0.04%)</title><rect x="1186.6" y="517" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="1189.57" y="527.5" ></text>
</g>
<g >
<title>pgstat_report_wait_start (4,947,350 samples, 0.02%)</title><rect x="1159.5" y="373" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1162.52" y="383.5" ></text>
</g>
<g >
<title>SnapBuildDistributeSnapshotAndInval (4,460,715,089 samples, 21.56%)</title><rect x="923.9" y="469" width="254.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="926.92" y="479.5" >SnapBuildDistributeSnapshotAndInval</text>
</g>
<g >
<title>pg_vsnprintf (6,417,931 samples, 0.03%)</title><rect x="830.0" y="373" width="0.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="832.97" y="383.5" ></text>
</g>
<g >
<title>pairingheap_remove (5,283,761 samples, 0.03%)</title><rect x="100.3" y="453" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="103.25" y="463.5" ></text>
</g>
<g >
<title>dlist_push_tail (5,594,511 samples, 0.03%)</title><rect x="97.2" y="469" width="0.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="100.20" y="479.5" ></text>
</g>
<g >
<title>[libc.so.6] (6,926,203 samples, 0.03%)</title><rect x="1173.3" y="389" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1176.30" y="399.5" ></text>
</g>
<g >
<title>lcons (1,943,025 samples, 0.01%)</title><rect x="869.3" y="309" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="872.32" y="319.5" ></text>
</g>
<g >
<title>CloseTransientFile (3,540,104 samples, 0.02%)</title><rect x="1094.2" y="389" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1097.21" y="399.5" ></text>
</g>
<g >
<title>pg_qsort (7,441,641 samples, 0.04%)</title><rect x="239.5" y="421" width="0.4" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="242.50" y="431.5" ></text>
</g>
<g >
<title>systable_beginscan (3,752,736 samples, 0.02%)</title><rect x="116.2" y="325" width="0.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="119.24" y="335.5" ></text>
</g>
<g >
<title>WalSndLoop (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="565" width="1138.4" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="53.90" y="575.5" >WalSndLoop</text>
</g>
<g >
<title>_bt_first (2,023,846 samples, 0.01%)</title><rect x="24.4" y="229" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="27.39" y="239.5" ></text>
</g>
<g >
<title>_bt_check_compare (1,956,265 samples, 0.01%)</title><rect x="25.2" y="117" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="28.22" y="127.5" ></text>
</g>
<g >
<title>ReorderBufferFreeSnap (71,439,026 samples, 0.35%)</title><rect x="701.2" y="437" width="4.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="704.18" y="447.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (9,574,984 samples, 0.05%)</title><rect x="102.3" y="453" width="0.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="105.32" y="463.5" ></text>
</g>
<g >
<title>SlabAlloc (11,500,373 samples, 0.06%)</title><rect x="99.0" y="453" width="0.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="101.97" y="463.5" ></text>
</g>
<g >
<title>WalSndWriteData (13,689,145 samples, 0.07%)</title><rect x="916.9" y="373" width="0.8" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="919.92" y="383.5" ></text>
</g>
<g >
<title>btgettuple (5,775,467 samples, 0.03%)</title><rect x="26.0" y="341" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="29.01" y="351.5" ></text>
</g>
<g >
<title>SnapBuildAddCommittedTxns (2,271,682 samples, 0.01%)</title><rect x="919.8" y="469" width="0.1" height="15.0" fill="rgb(245,188,44)" rx="2" ry="2" />
<text x="922.82" y="479.5" ></text>
</g>
<g >
<title>ReorderBufferCheckMemoryLimit (96,412,072 samples, 0.47%)</title><rect x="1068.2" y="405" width="5.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1071.18" y="415.5" ></text>
</g>
<g >
<title>StartLogicalReplication (4,733,944 samples, 0.02%)</title><rect x="50.3" y="613" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="53.28" y="623.5" ></text>
</g>
<g >
<title>AllocSetRealloc (12,826,961 samples, 0.06%)</title><rect x="1180.1" y="453" width="0.7" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1183.10" y="463.5" ></text>
</g>
<g >
<title>pgstat_get_entry_ref_cached (2,735,009 samples, 0.01%)</title><rect x="858.3" y="341" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="861.28" y="351.5" ></text>
</g>
<g >
<title>relation_open (78,428,438 samples, 0.38%)</title><rect x="116.0" y="389" width="4.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="118.95" y="399.5" ></text>
</g>
<g >
<title>systable_endscan (2,734,711 samples, 0.01%)</title><rect x="117.1" y="229" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="120.08" y="239.5" ></text>
</g>
<g >
<title>relation_open (15,063,408 samples, 0.07%)</title><rect x="25.1" y="309" width="0.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="28.08" y="319.5" ></text>
</g>
<g >
<title>pg_atomic_compare_exchange_u32_impl (33,735,515 samples, 0.16%)</title><rect x="907.4" y="293" width="1.9" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="910.40" y="303.5" ></text>
</g>
<g >
<title>pg_output_begin (25,377,054 samples, 0.12%)</title><rect x="916.5" y="405" width="1.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="919.52" y="415.5" ></text>
</g>
<g >
<title>StartLogicalReplication (4,095,698 samples, 0.02%)</title><rect x="23.8" y="629" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="26.78" y="639.5" ></text>
</g>
<g >
<title>pg_snprintf (6,417,931 samples, 0.03%)</title><rect x="830.0" y="389" width="0.3" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="832.97" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferProcessXid (46,114,856 samples, 0.22%)</title><rect x="84.2" y="501" width="2.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="87.23" y="511.5" ></text>
</g>
<g >
<title>_bt_first (12,564,862 samples, 0.06%)</title><rect x="120.8" y="357" width="0.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="123.77" y="367.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (8,221,073 samples, 0.04%)</title><rect x="116.2" y="341" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="119.22" y="351.5" ></text>
</g>
<g >
<title>index_getnext_tid (4,016,286 samples, 0.02%)</title><rect x="24.8" y="293" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="27.85" y="303.5" ></text>
</g>
<g >
<title>internal_flush_buffer (4,378,177 samples, 0.02%)</title><rect x="917.3" y="325" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="920.31" y="335.5" ></text>
</g>
<g >
<title>SlabGetNextFreeChunk (6,206,991 samples, 0.03%)</title><rect x="99.2" y="437" width="0.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="102.21" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferFreeChange (2,280,358 samples, 0.01%)</title><rect x="20.0" y="757" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="23.02" y="767.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (26,882,533 samples, 0.13%)</title><rect x="138.1" y="421" width="1.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="141.10" y="431.5" ></text>
</g>
<g >
<title>[unknown] (475,113,660 samples, 2.30%)</title><rect x="23.7" y="757" width="27.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="26.75" y="767.5" >[..</text>
</g>
<g >
<title>ReorderBufferCopySnap (1,569,626,033 samples, 7.59%)</title><rect x="150.4" y="437" width="89.5" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="153.42" y="447.5" >ReorderBuf..</text>
</g>
<g >
<title>__libc_start_main (2,045,827 samples, 0.01%)</title><rect x="49.9" y="741" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="52.91" y="751.5" ></text>
</g>
<g >
<title>systable_getnext (7,566,164 samples, 0.04%)</title><rect x="25.1" y="245" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="28.08" y="255.5" ></text>
</g>
<g >
<title>LogicalDecodingProcessRecord (42,220,254 samples, 0.20%)</title><rect x="24.0" y="597" width="2.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="27.01" y="607.5" ></text>
</g>
<g >
<title>DecodeCommit (42,220,254 samples, 0.20%)</title><rect x="24.0" y="565" width="2.4" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="27.01" y="575.5" ></text>
</g>
<g >
<title>RelfilenumberMapInvalidateCallback (6,276,166 samples, 0.03%)</title><rect x="122.4" y="325" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="125.36" y="335.5" ></text>
</g>
<g >
<title>XLogRecGetBlockTagExtended (1,843,910 samples, 0.01%)</title><rect x="101.7" y="469" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="104.68" y="479.5" ></text>
</g>
<g >
<title>pgstat_report_xact_timestamp (1,948,571 samples, 0.01%)</title><rect x="110.0" y="389" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="112.98" y="399.5" ></text>
</g>
<g >
<title>LWLockReleaseInternal (4,943,354 samples, 0.02%)</title><rect x="901.6" y="325" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="904.59" y="335.5" ></text>
</g>
<g >
<title>BufferAlloc (2,334,159 samples, 0.01%)</title><rect x="125.0" y="37" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="127.99" y="47.5" ></text>
</g>
<g >
<title>relation_open (2,262,191 samples, 0.01%)</title><rect x="24.7" y="293" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="27.72" y="303.5" ></text>
</g>
<g >
<title>index_getnext_slot (4,059,971 samples, 0.02%)</title><rect x="25.7" y="229" width="0.2" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="28.70" y="239.5" ></text>
</g>
<g >
<title>memcpy (112,222,860 samples, 0.54%)</title><rect x="1075.0" y="421" width="6.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1078.01" y="431.5" ></text>
</g>
<g >
<title>update_progress_txn_cb_wrapper (4,303,031 samples, 0.02%)</title><rect x="919.4" y="437" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="922.36" y="447.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (2,222,598 samples, 0.01%)</title><rect x="116.3" y="261" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="119.29" y="271.5" ></text>
</g>
<g >
<title>PostmasterMain (4,095,698 samples, 0.02%)</title><rect x="23.8" y="741" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="26.78" y="751.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (5,775,467 samples, 0.03%)</title><rect x="26.0" y="437" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="29.01" y="447.5" ></text>
</g>
<g >
<title>RelationBuildDesc (33,316,986 samples, 0.16%)</title><rect x="24.1" y="421" width="1.9" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="27.11" y="431.5" ></text>
</g>
<g >
<title>dopr (4,157,764 samples, 0.02%)</title><rect x="917.7" y="325" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="920.73" y="335.5" ></text>
</g>
<g >
<title>WalSndLoop (4,968,276 samples, 0.02%)</title><rect x="49.6" y="581" width="0.3" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="52.62" y="591.5" ></text>
</g>
<g >
<title>malloc (100,510,088 samples, 0.49%)</title><rect x="725.1" y="341" width="5.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="728.12" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferCheckMemoryLimit (1,392,586,348 samples, 6.73%)</title><rect x="1091.7" y="421" width="79.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1094.68" y="431.5" >ReorderBu..</text>
</g>
<g >
<title>[libc.so.6] (8,925,207 samples, 0.04%)</title><rect x="85.8" y="437" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="88.79" y="447.5" ></text>
</g>
<g >
<title>uint32_hash (1,782,179 samples, 0.01%)</title><rect x="102.9" y="453" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="105.87" y="463.5" ></text>
</g>
<g >
<title>merge_children (2,230,635 samples, 0.01%)</title><rect x="100.4" y="421" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="103.43" y="431.5" ></text>
</g>
<g >
<title>ScanPgRelation (4,615,213 samples, 0.02%)</title><rect x="111.9" y="389" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="114.90" y="399.5" ></text>
</g>
<g >
<title>SnapBuildCommitTxn (2,277,638 samples, 0.01%)</title><rect x="50.4" y="517" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="53.42" y="527.5" ></text>
</g>
<g >
<title>postmaster_child_launch (42,220,254 samples, 0.20%)</title><rect x="24.0" y="709" width="2.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="27.01" y="719.5" ></text>
</g>
<g >
<title>pg_vsnprintf (6,809,082 samples, 0.03%)</title><rect x="857.8" y="373" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="860.79" y="383.5" ></text>
</g>
<g >
<title>postmaster_child_launch (4,095,698 samples, 0.02%)</title><rect x="23.8" y="693" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="26.78" y="703.5" ></text>
</g>
<g >
<title>pairingheap_remove_first (3,398,855 samples, 0.02%)</title><rect x="1182.5" y="421" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1185.54" y="431.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (32,408,739 samples, 0.16%)</title><rect x="118.4" y="229" width="1.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="121.36" y="239.5" ></text>
</g>
<g >
<title>pg_vsnprintf (6,977,940 samples, 0.03%)</title><rect x="149.9" y="373" width="0.4" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="152.89" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferReplay (4,095,698 samples, 0.02%)</title><rect x="23.8" y="517" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="26.78" y="527.5" ></text>
</g>
<g >
<title>ReorderBufferQueueChange (2,277,638 samples, 0.01%)</title><rect x="50.4" y="469" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="53.42" y="479.5" ></text>
</g>
<g >
<title>pfree (53,472,492 samples, 0.26%)</title><rect x="1095.6" y="373" width="3.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1098.58" y="383.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32 (7,087,847 samples, 0.03%)</title><rect x="910.1" y="309" width="0.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="913.06" y="319.5" ></text>
</g>
<g >
<title>pq_sendint64 (2,750,598 samples, 0.01%)</title><rect x="918.2" y="373" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="921.18" y="383.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeReserve (4,983,454 samples, 0.02%)</title><rect x="1101.0" y="373" width="0.3" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="1103.98" y="383.5" ></text>
</g>
<g >
<title>memcpy (32,751,652 samples, 0.16%)</title><rect x="40.9" y="709" width="1.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="43.91" y="719.5" ></text>
</g>
<g >
<title>SnapBuildBuildSnapshot (69,623,231 samples, 0.34%)</title><rect x="919.9" y="469" width="4.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="922.95" y="479.5" ></text>
</g>
<g >
<title>systable_getnext (2,920,151 samples, 0.01%)</title><rect x="24.2" y="389" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="27.22" y="399.5" ></text>
</g>
<g >
<title>SlabAlloc (69,026,803 samples, 0.33%)</title><rect x="780.6" y="357" width="3.9" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="783.56" y="367.5" ></text>
</g>
<g >
<title>__close (2,087,422 samples, 0.01%)</title><rect x="1094.2" y="357" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="1097.22" y="367.5" ></text>
</g>
<g >
<title>read_relmap_file (3,261,712 samples, 0.02%)</title><rect x="869.0" y="277" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="872.03" y="287.5" ></text>
</g>
<g >
<title>SnapBuildSnapIncRefcount (1,930,520 samples, 0.01%)</title><rect x="1177.9" y="453" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1180.90" y="463.5" ></text>
</g>
<g >
<title>pairingheap_add (2,677,069 samples, 0.01%)</title><rect x="100.1" y="453" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="103.10" y="463.5" ></text>
</g>
<g >
<title>ScanPgRelation (5,775,467 samples, 0.03%)</title><rect x="26.0" y="405" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="29.01" y="415.5" ></text>
</g>
<g >
<title>wrapper_handler (2,277,638 samples, 0.01%)</title><rect x="50.4" y="373" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="53.42" y="383.5" ></text>
</g>
<g >
<title>mdnblocks (1,824,296 samples, 0.01%)</title><rect x="124.2" y="85" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="127.24" y="95.5" ></text>
</g>
<g >
<title>BackendStartup (4,733,944 samples, 0.02%)</title><rect x="50.3" y="693" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="53.28" y="703.5" ></text>
</g>
<g >
<title>XLogReleasePreviousRecord (22,919,660 samples, 0.11%)</title><rect x="1187.1" y="517" width="1.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1190.07" y="527.5" ></text>
</g>
<g >
<title>appendStringInfoVA (4,436,819 samples, 0.02%)</title><rect x="917.7" y="373" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="920.71" y="383.5" ></text>
</g>
<g >
<title>dlist_push_tail (11,204,025 samples, 0.05%)</title><rect x="791.0" y="389" width="0.7" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="794.03" y="399.5" ></text>
</g>
<g >
<title>pairingheap_add (14,124,787 samples, 0.07%)</title><rect x="1066.7" y="389" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1069.65" y="399.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (10,935,924 samples, 0.05%)</title><rect x="1074.2" y="405" width="0.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1077.18" y="415.5" ></text>
</g>
<g >
<title>StartLogicalReplication (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="581" width="1138.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="53.90" y="591.5" >StartLogicalReplication</text>
</g>
<g >
<title>RelationCacheInvalidateEntry (51,896,791 samples, 0.25%)</title><rect x="880.3" y="341" width="3.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="883.33" y="351.5" ></text>
</g>
<g >
<title>ReorderBufferXidHasCatalogChanges (2,770,095 samples, 0.01%)</title><rect x="1178.3" y="453" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1181.34" y="463.5" ></text>
</g>
<g >
<title>dlist_delete (3,060,190 samples, 0.01%)</title><rect x="832.7" y="341" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="835.65" y="351.5" ></text>
</g>
<g >
<title>SnapBuildXidHasCatalogChanges (3,759,779 samples, 0.02%)</title><rect x="1178.3" y="469" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1181.28" y="479.5" ></text>
</g>
<g >
<title>dopr (6,809,082 samples, 0.03%)</title><rect x="857.8" y="357" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="860.79" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferSerializeChange (87,000,560 samples, 0.42%)</title><rect x="1068.7" y="373" width="5.0" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1071.70" y="383.5" ></text>
</g>
<g >
<title>RelidByRelfilenumber (222,070,184 samples, 1.07%)</title><rect x="113.6" y="437" width="12.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="116.57" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferCommit (2,045,827 samples, 0.01%)</title><rect x="49.9" y="485" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="52.91" y="495.5" ></text>
</g>
<g >
<title>malloc (4,131,328 samples, 0.02%)</title><rect x="934.4" y="357" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="937.43" y="367.5" ></text>
</g>
<g >
<title>memcpy (1,047,629,151 samples, 5.06%)</title><rect x="179.8" y="421" width="59.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="182.76" y="431.5" >memcpy</text>
</g>
<g >
<title>dlist_delete (9,306,757 samples, 0.04%)</title><rect x="149.1" y="357" width="0.5" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="152.11" y="367.5" ></text>
</g>
<g >
<title>XLogReleasePreviousRecord (3,937,602 samples, 0.02%)</title><rect x="22.1" y="741" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="25.06" y="751.5" ></text>
</g>
<g >
<title>ResourceOwnerDelete (2,184,933 samples, 0.01%)</title><rect x="110.8" y="389" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="113.77" y="399.5" ></text>
</g>
<g >
<title>logical_read_xlog_page (2,273,371 samples, 0.01%)</title><rect x="42.5" y="693" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="45.55" y="703.5" ></text>
</g>
<g >
<title>get_attoptions (8,455,399 samples, 0.04%)</title><rect x="116.9" y="309" width="0.5" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="119.90" y="319.5" ></text>
</g>
<g >
<title>FileReadV (233,106,910 samples, 1.13%)</title><rect x="707.0" y="389" width="13.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="709.99" y="399.5" ></text>
</g>
<g >
<title>btgettuple (4,059,971 samples, 0.02%)</title><rect x="25.7" y="197" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="28.70" y="207.5" ></text>
</g>
<g >
<title>[libc.so.6] (303,283,304 samples, 1.47%)</title><rect x="834.3" y="373" width="17.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="837.30" y="383.5" ></text>
</g>
<g >
<title>WalSndLoop (3,632,733 samples, 0.02%)</title><rect x="21.8" y="757" width="0.2" height="15.0" fill="rgb(235,142,34)" rx="2" ry="2" />
<text x="24.80" y="767.5" ></text>
</g>
<g >
<title>RelationRebuildRelation (1,853,283 samples, 0.01%)</title><rect x="116.6" y="277" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="119.57" y="287.5" ></text>
</g>
<g >
<title>FunctionCall2Coll (2,030,809 samples, 0.01%)</title><rect x="124.5" y="133" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="127.53" y="143.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (43,740,818 samples, 0.21%)</title><rect x="919.9" y="453" width="2.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="922.95" y="463.5" ></text>
</g>
<g >
<title>SysCacheInvalidate (57,062,631 samples, 0.28%)</title><rect x="11.4" y="741" width="3.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="14.41" y="751.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (13,213,673 samples, 0.06%)</title><rect x="112.7" y="405" width="0.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="115.70" y="415.5" ></text>
</g>
<g >
<title>AllocSetAlloc (22,338,392 samples, 0.11%)</title><rect x="1081.5" y="405" width="1.3" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text x="1084.49" y="415.5" ></text>
</g>
<g >
<title>dopr (6,269,147 samples, 0.03%)</title><rect x="918.9" y="341" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="921.90" y="351.5" ></text>
</g>
<g >
<title>SlabBlocklistIndex (2,662,717 samples, 0.01%)</title><rect x="832.5" y="357" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="835.48" y="367.5" ></text>
</g>
<g >
<title>uint32_hash (105,230,405 samples, 0.51%)</title><rect x="434.4" y="373" width="6.0" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="437.42" y="383.5" ></text>
</g>
<g >
<title>hash_search (104,319,562 samples, 0.50%)</title><rect x="128.6" y="421" width="6.0" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="131.62" y="431.5" ></text>
</g>
<g >
<title>pg_atomic_sub_fetch_u32_impl (7,087,847 samples, 0.03%)</title><rect x="910.1" y="293" width="0.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="913.06" y="303.5" ></text>
</g>
<g >
<title>ReorderBufferQueueInvalidations (366,692,190 samples, 1.77%)</title><rect x="1061.9" y="437" width="20.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1064.85" y="447.5" ></text>
</g>
<g >
<title>ReorderBufferProcessTXN (1,863,102 samples, 0.01%)</title><rect x="22.6" y="693" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="25.63" y="703.5" ></text>
</g>
<g >
<title>ReorderBufferAccumulateInvalidations (2,393,977,050 samples, 11.57%)</title><rect x="925.3" y="437" width="136.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="928.34" y="447.5" >ReorderBufferAccu..</text>
</g>
<g >
<title>ReceiveSharedInvalidMessages (38,056,483 samples, 0.18%)</title><rect x="121.5" y="357" width="2.2" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="124.51" y="367.5" ></text>
</g>
<g >
<title>hash_bytes_uint32 (74,019,047 samples, 0.36%)</title><rect x="436.2" y="357" width="4.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="439.20" y="367.5" ></text>
</g>
<g >
<title>AllocSetFree (4,908,908 samples, 0.02%)</title><rect x="831.7" y="373" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="834.65" y="383.5" ></text>
</g>
<g >
<title>repalloc (17,764,758 samples, 0.09%)</title><rect x="1179.8" y="469" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1182.82" y="479.5" ></text>
</g>
<g >
<title>RelidByRelfilenumber (3,248,577 samples, 0.02%)</title><rect x="23.8" y="485" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="26.83" y="495.5" ></text>
</g>
<g >
<title>ScanPgRelation (33,370,523 samples, 0.16%)</title><rect x="124.1" y="229" width="1.9" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="127.08" y="239.5" ></text>
</g>
<g >
<title>ResourceOwnerForgetRelationRef (5,293,602 samples, 0.03%)</title><rect x="111.0" y="405" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="113.97" y="415.5" ></text>
</g>
<g >
<title>index_fetch_heap (1,981,552 samples, 0.01%)</title><rect x="120.0" y="149" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="123.00" y="159.5" ></text>
</g>
<g >
<title>ReorderBufferTXNByXid (2,770,095 samples, 0.01%)</title><rect x="1178.3" y="437" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="1181.34" y="447.5" ></text>
</g>
<g >
<title>LocalExecuteInvalidationMessage (61,609,154 samples, 0.30%)</title><rect x="16.5" y="741" width="3.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="19.51" y="751.5" ></text>
</g>
<g >
<title>hash_initial_lookup (12,083,472 samples, 0.06%)</title><rect x="882.3" y="293" width="0.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="885.26" y="303.5" ></text>
</g>
<g >
<title>hash_search (47,342,971 samples, 0.23%)</title><rect x="880.6" y="325" width="2.7" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="883.59" y="335.5" ></text>
</g>
<g >
<title>exec_replication_command (4,733,944 samples, 0.02%)</title><rect x="50.3" y="629" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="53.28" y="639.5" ></text>
</g>
<g >
<title>SnapBuildProcessChange (1,835,120 samples, 0.01%)</title><rect x="86.9" y="501" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="89.86" y="511.5" ></text>
</g>
<g >
<title>RelationIncrementReferenceCount (2,317,488 samples, 0.01%)</title><rect x="112.4" y="421" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="115.40" y="431.5" ></text>
</g>
<g >
<title>uint32_hash (1,960,200 samples, 0.01%)</title><rect x="113.5" y="405" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="116.46" y="415.5" ></text>
</g>
<g >
<title>PostmasterMain (4,968,276 samples, 0.02%)</title><rect x="49.6" y="709" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="52.62" y="719.5" ></text>
</g>
<g >
<title>AbortCurrentTransaction (76,572,884 samples, 0.37%)</title><rect x="106.5" y="437" width="4.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="109.53" y="447.5" ></text>
</g>
<g >
<title>BackendMain (42,220,254 samples, 0.20%)</title><rect x="24.0" y="693" width="2.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="27.01" y="703.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (15,083,669 samples, 0.07%)</title><rect x="1090.8" y="421" width="0.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1093.82" y="431.5" ></text>
</g>
<g >
<title>_mm512_clmulepi64_epi128 (5,497,254 samples, 0.03%)</title><rect x="46.8" y="693" width="0.3" height="15.0" fill="rgb(243,174,41)" rx="2" ry="2" />
<text x="49.77" y="703.5" ></text>
</g>
<g >
<title>pread (203,424,457 samples, 0.98%)</title><rect x="708.7" y="357" width="11.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="711.65" y="367.5" ></text>
</g>
<g >
<title>systable_getnext (4,569,610 samples, 0.02%)</title><rect x="118.7" y="181" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="121.74" y="191.5" ></text>
</g>
<g >
<title>MemoryContextAllocZero (2,076,173 samples, 0.01%)</title><rect x="116.7" y="325" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="119.74" y="335.5" ></text>
</g>
<g >
<title>binaryheap_allocate (1,993,639 samples, 0.01%)</title><rect x="858.6" y="421" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="861.64" y="431.5" ></text>
</g>
<g >
<title>RelationBuildDesc (15,063,408 samples, 0.07%)</title><rect x="25.1" y="277" width="0.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="28.08" y="287.5" ></text>
</g>
<g >
<title>realloc (2,207,229,537 samples, 10.67%)</title><rect x="936.0" y="389" width="125.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="938.99" y="399.5" >realloc</text>
</g>
<g >
<title>[libc.so.6] (2,185,816,159 samples, 10.56%)</title><rect x="937.2" y="373" width="124.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="940.21" y="383.5" >[libc.so.6]</text>
</g>
<g >
<title>_bt_binsrch (3,134,386 samples, 0.02%)</title><rect x="121.2" y="325" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="124.22" y="335.5" ></text>
</g>
<g >
<title>RelationBuildTupleDesc (7,566,164 samples, 0.04%)</title><rect x="25.1" y="261" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="28.08" y="271.5" ></text>
</g>
<g >
<title>XLogNextRecord (11,902,880 samples, 0.06%)</title><rect x="1184.8" y="517" width="0.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1187.81" y="527.5" ></text>
</g>
<g >
<title>RelationIdGetRelation (33,316,986 samples, 0.16%)</title><rect x="24.1" y="437" width="1.9" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="27.11" y="447.5" ></text>
</g>
<g >
<title>AllocSetFree (66,820,870 samples, 0.32%)</title><rect x="701.4" y="405" width="3.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="704.44" y="415.5" ></text>
</g>
<g >
<title>relation_open (82,841,627 samples, 0.40%)</title><rect x="121.5" y="405" width="4.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="124.51" y="415.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (394,679,208 samples, 1.91%)</title><rect x="411.9" y="373" width="22.5" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="414.92" y="383.5" >h..</text>
</g>
<g >
<title>[libc.so.6] (2,261,368 samples, 0.01%)</title><rect x="22.8" y="757" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="25.84" y="767.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (2,501,619 samples, 0.01%)</title><rect x="1182.7" y="453" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="1185.74" y="463.5" ></text>
</g>
<g >
<title>ReorderBufferAllocChange (15,284,518 samples, 0.07%)</title><rect x="98.8" y="485" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="101.83" y="495.5" ></text>
</g>
<g >
<title>index_getnext_slot (14,115,906 samples, 0.07%)</title><rect x="120.7" y="405" width="0.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="123.70" y="415.5" ></text>
</g>
<g >
<title>[[heap]] (6,483,051 samples, 0.03%)</title><rect x="22.4" y="757" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="25.36" y="767.5" ></text>
</g>
<g >
<title>ReorderBufferAddSnapshot (2,277,638 samples, 0.01%)</title><rect x="50.4" y="485" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="53.42" y="495.5" ></text>
</g>
<g >
<title>relation_open (2,006,451 samples, 0.01%)</title><rect x="24.1" y="357" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="27.11" y="367.5" ></text>
</g>
<g >
<title>ReorderBufferProcessXid (6,665,843 samples, 0.03%)</title><rect x="103.6" y="501" width="0.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="106.59" y="511.5" ></text>
</g>
<g >
<title>write (2,277,638 samples, 0.01%)</title><rect x="50.4" y="405" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="53.42" y="415.5" ></text>
</g>
<g >
<title>memcpy (25,882,413 samples, 0.13%)</title><rect x="922.4" y="453" width="1.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="925.44" y="463.5" ></text>
</g>
<g >
<title>pg_snprintf (6,809,082 samples, 0.03%)</title><rect x="857.8" y="389" width="0.4" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="860.79" y="399.5" ></text>
</g>
<g >
<title>[unknown] (1,863,102 samples, 0.01%)</title><rect x="22.6" y="629" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="25.63" y="639.5" ></text>
</g>
<g >
<title>index_open (3,282,905 samples, 0.02%)</title><rect x="119.4" y="149" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="122.43" y="159.5" ></text>
</g>
<g >
<title>main (19,963,289,439 samples, 96.47%)</title><rect x="50.9" y="709" width="1138.4" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text x="53.90" y="719.5" >main</text>
</g>
<g >
<title>_mm_set_epi32 (1,850,550 samples, 0.01%)</title><rect x="47.2" y="677" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="50.17" y="687.5" ></text>
</g>
<g >
<title>SearchCatCacheMiss (3,738,797 samples, 0.02%)</title><rect x="24.5" y="309" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="27.50" y="319.5" ></text>
</g>
<g >
<title>index_close (1,759,331 samples, 0.01%)</title><rect x="117.1" y="213" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="120.08" y="223.5" ></text>
</g>
<g >
<title>ReorderBufferChangeSize (25,712,259 samples, 0.12%)</title><rect x="91.8" y="453" width="1.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="94.85" y="463.5" ></text>
</g>
<g >
<title>SnapBuildSnapDecRefcount (2,050,059 samples, 0.01%)</title><rect x="141.9" y="389" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="144.90" y="399.5" ></text>
</g>
<g >
<title>RelationDecrementReferenceCount (5,768,786 samples, 0.03%)</title><rect x="110.9" y="421" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="113.94" y="431.5" ></text>
</g>
<g >
<title>postgres (20,693,568,156 samples, 100.00%)</title><rect x="10.0" y="773" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="13.00" y="783.5" >postgres</text>
</g>
</g>
</svg>