The segment group is useless in current codebase, remove all the related code inside Doris. As for the related protobuf code, use reserved flag to prevent any future user from using that field.
3576 lines
291 KiB
XML
3576 lines
291 KiB
XML
<?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="418" onload="init(evt)" viewBox="0 0 1200 418" 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. -->
|
|
<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">
|
|
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
|
</style>
|
|
<script type="text/ecmascript">
|
|
<![CDATA[
|
|
var details, searchbtn, matchedtxt, svg;
|
|
function init(evt) {
|
|
details = document.getElementById("details").firstChild;
|
|
searchbtn = document.getElementById("search");
|
|
matchedtxt = document.getElementById("matched");
|
|
svg = document.getElementsByTagName("svg")[0];
|
|
searching = 0;
|
|
}
|
|
|
|
// mouse-over for info
|
|
function s(node) { // show
|
|
info = g_to_text(node);
|
|
details.nodeValue = "Function: " + info;
|
|
}
|
|
function c() { // clear
|
|
details.nodeValue = ' ';
|
|
}
|
|
|
|
// ctrl-F for search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
|
e.preventDefault();
|
|
search_prompt();
|
|
}
|
|
})
|
|
|
|
// functions
|
|
function find_child(parent, name, attr) {
|
|
var children = parent.childNodes;
|
|
for (var i=0; i<children.length;i++) {
|
|
if (children[i].tagName == name)
|
|
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
|
|
}
|
|
return;
|
|
}
|
|
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 (func != null)
|
|
func = func.replace(/ .*/, "");
|
|
return (func);
|
|
}
|
|
function update_text(e) {
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes["width"].value) -3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2*12*0.59) {
|
|
t.textContent = "";
|
|
return;
|
|
}
|
|
|
|
t.textContent = txt;
|
|
// Fit in full text width
|
|
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
|
|
return;
|
|
|
|
for (var x=txt.length-2; x>0; x--) {
|
|
if (t.getSubStringLength(0, x+2) <= w) {
|
|
t.textContent = txt.substring(0,x) + "..";
|
|
return;
|
|
}
|
|
}
|
|
t.textContent = "";
|
|
}
|
|
|
|
// zoom
|
|
function zoom_reset(e) {
|
|
if (e.attributes != undefined) {
|
|
orig_load(e, "x");
|
|
orig_load(e, "width");
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i=0, c=e.childNodes; i<c.length; i++) {
|
|
zoom_reset(c[i]);
|
|
}
|
|
}
|
|
function zoom_child(e, x, ratio) {
|
|
if (e.attributes != undefined) {
|
|
if (e.attributes["x"] != undefined) {
|
|
orig_save(e, "x");
|
|
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
|
|
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 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;
|
|
|
|
var unzoombtn = document.getElementById("unzoom");
|
|
unzoombtn.style["opacity"] = "1.0";
|
|
|
|
var el = document.getElementsByTagName("g");
|
|
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);
|
|
// Is it an ancestor
|
|
if (0 == 0) {
|
|
var upstack = parseFloat(a["y"].value) > ymin;
|
|
} else {
|
|
var upstack = parseFloat(a["y"].value) < ymin;
|
|
}
|
|
if (upstack) {
|
|
// Direct ancestor
|
|
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
|
|
e.style["opacity"] = "0.5";
|
|
zoom_parent(e);
|
|
e.onclick = function(e){unzoom(); zoom(this);};
|
|
update_text(e);
|
|
}
|
|
// not in current path
|
|
else
|
|
e.style["display"] = "none";
|
|
}
|
|
// Children maybe
|
|
else {
|
|
// no common path
|
|
if (ex < xmin || ex + fudge >= xmax) {
|
|
e.style["display"] = "none";
|
|
}
|
|
else {
|
|
zoom_child(e, xmin, ratio);
|
|
e.onclick = function(e){zoom(this);};
|
|
update_text(e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function unzoom() {
|
|
var unzoombtn = document.getElementById("unzoom");
|
|
unzoombtn.style["opacity"] = "0.0";
|
|
|
|
var el = document.getElementsByTagName("g");
|
|
for(i=0;i<el.length;i++) {
|
|
el[i].style["display"] = "block";
|
|
el[i].style["opacity"] = "1";
|
|
zoom_reset(el[i]);
|
|
update_text(el[i]);
|
|
}
|
|
}
|
|
|
|
// search
|
|
function reset_search() {
|
|
var el = document.getElementsByTagName("rect");
|
|
for (var i=0; i < el.length; i++) {
|
|
orig_load(el[i], "fill")
|
|
}
|
|
}
|
|
function search_prompt() {
|
|
if (!searching) {
|
|
var term = prompt("Enter a search term (regexp " +
|
|
"allowed, eg: ^ext4_)", "");
|
|
if (term != null) {
|
|
search(term)
|
|
}
|
|
} else {
|
|
reset_search();
|
|
searching = 0;
|
|
searchbtn.style["opacity"] = "0.1";
|
|
searchbtn.firstChild.nodeValue = "Search"
|
|
matchedtxt.style["opacity"] = "0.0";
|
|
matchedtxt.firstChild.nodeValue = ""
|
|
}
|
|
}
|
|
function search(term) {
|
|
var re = new RegExp(term);
|
|
var el = document.getElementsByTagName("g");
|
|
var matches = new Object();
|
|
var maxwidth = 0;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
if (e.attributes["class"].value != "func_g")
|
|
continue;
|
|
var func = g_to_func(e);
|
|
var rect = find_child(e, "rect");
|
|
if (rect == null) {
|
|
// the rect might be wrapped in an anchor
|
|
// if nameattr href is being used
|
|
if (rect = find_child(e, "a")) {
|
|
rect = find_child(r, "rect");
|
|
}
|
|
}
|
|
if (func == null || rect == null)
|
|
continue;
|
|
|
|
// Save max width. Only works as we have a root frame
|
|
var w = parseFloat(rect.attributes["width"].value);
|
|
if (w > maxwidth)
|
|
maxwidth = w;
|
|
|
|
if (func.match(re)) {
|
|
// highlight
|
|
var x = parseFloat(rect.attributes["x"].value);
|
|
orig_save(rect, "fill");
|
|
rect.attributes["fill"].value =
|
|
"rgb(230,0,230)";
|
|
|
|
// remember matches
|
|
if (matches[x] == undefined) {
|
|
matches[x] = w;
|
|
} else {
|
|
if (w > matches[x]) {
|
|
// overwrite with parent
|
|
matches[x] = w;
|
|
}
|
|
}
|
|
searching = 1;
|
|
}
|
|
}
|
|
if (!searching)
|
|
return;
|
|
|
|
searchbtn.style["opacity"] = "1.0";
|
|
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;
|
|
if (a < b || a > b)
|
|
return a - b;
|
|
return matches[b] - matches[a];
|
|
});
|
|
// 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.
|
|
for (var k in keys) {
|
|
var x = parseFloat(keys[k]);
|
|
var w = matches[keys[k]];
|
|
if (x >= lastx + lastw) {
|
|
count += w;
|
|
lastx = x;
|
|
lastw = w;
|
|
}
|
|
}
|
|
// display matched percent
|
|
matchedtxt.style["opacity"] = "1.0";
|
|
pct = 100 * count / maxwidth;
|
|
if (pct == 100)
|
|
pct = "100"
|
|
else
|
|
pct = pct.toFixed(1)
|
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
|
}
|
|
function searchover(e) {
|
|
searchbtn.style["opacity"] = "1.0";
|
|
}
|
|
function searchout(e) {
|
|
if (searching) {
|
|
searchbtn.style["opacity"] = "1.0";
|
|
} else {
|
|
searchbtn.style["opacity"] = "0.1";
|
|
}
|
|
}
|
|
]]>
|
|
</script>
|
|
<rect x="0.0" y="0" width="1200.0" height="418.0" fill="url(#background)" />
|
|
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
|
|
<text text-anchor="" x="10.00" y="401" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
|
|
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
|
|
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
|
|
<text text-anchor="" x="1090.00" y="401" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PInternalServiceImpl<doris::PBackendService>::exec_plan_fragment (128 samples, 0.08%)</title><rect x="841.7" y="225" width="1.0" height="15.0" fill="rgb(251,123,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.70" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (212 samples, 0.14%)</title><rect x="237.7" y="209" width="1.6" height="15.0" fill="rgb(224,218,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="240.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::~SegmentWriter (35 samples, 0.02%)</title><rect x="573.6" y="193" width="0.3" height="15.0" fill="rgb(210,220,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.61" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowBlock::~RowBlock (33 samples, 0.02%)</title><rect x="854.8" y="209" width="0.2" height="15.0" fill="rgb(240,26,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.78" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sys_pread64 (29 samples, 0.02%)</title><rect x="53.1" y="321" width="0.2" height="15.0" fill="rgb(246,152,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.07" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_seek_to_block (15 samples, 0.01%)</title><rect x="1180.7" y="177" width="0.1" height="15.0" fill="rgb(224,145,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::get_block (1,650 samples, 1.06%)</title><rect x="266.2" y="177" width="12.6" height="15.0" fill="rgb(226,164,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="269.23" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>void std::__adjust_heap<__gnu_cxx::__normal_iterator<doris::CollectIterator::ChildCtx**, std::vector<doris::CollectIterator::ChildCtx*, std::allocator<doris::CollectIterator::ChildCtx*> > >, long, doris::CollectIterator::ChildCtx*, __gnu_cxx::__ops::_Iter_comp_iter<doris::CollectIterator::ChildCtxComparator> > (990 samples, 0.64%)</title><rect x="303.3" y="209" width="7.5" height="15.0" fill="rgb(212,135,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="306.31" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (2,047 samples, 1.32%)</title><rect x="187.5" y="177" width="15.5" height="15.0" fill="rgb(223,98,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="190.46" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::_create_new_input_buffer (33 samples, 0.02%)</title><rect x="562.3" y="113" width="0.2" height="15.0" fill="rgb(242,45,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.26" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (55 samples, 0.04%)</title><rect x="137.9" y="321" width="0.4" height="15.0" fill="rgb(253,83,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="140.90" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnReader<doris::StringColumnDirectReader>::next_vector (321 samples, 0.21%)</title><rect x="276.2" y="145" width="2.5" height="15.0" fill="rgb(246,83,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="279.24" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>intel_pmu_enable_all (60 samples, 0.04%)</title><rect x="53.4" y="305" width="0.4" height="15.0" fill="rgb(248,45,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (37 samples, 0.02%)</title><rect x="667.5" y="97" width="0.3" height="15.0" fill="rgb(248,46,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="670.48" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (1,026 samples, 0.66%)</title><rect x="743.6" y="209" width="7.8" height="15.0" fill="rgb(245,3,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="746.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>find_next_bit (18 samples, 0.01%)</title><rect x="128.9" y="321" width="0.1" height="15.0" fill="rgb(219,164,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.88" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_patched_base_values (786 samples, 0.51%)</title><rect x="1057.0" y="129" width="6.0" height="15.0" fill="rgb(244,60,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1059.99" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TPlanNode::read (16 samples, 0.01%)</title><rect x="842.4" y="129" width="0.2" height="15.0" fill="rgb(230,149,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="845.44" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (78 samples, 0.05%)</title><rect x="146.6" y="337" width="0.6" height="15.0" fill="rgb(234,178,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="149.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (36 samples, 0.02%)</title><rect x="1053.2" y="97" width="0.3" height="15.0" fill="rgb(228,145,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1056.24" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (20 samples, 0.01%)</title><rect x="278.3" y="113" width="0.1" height="15.0" fill="rgb(229,149,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="281.27" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>brpc::ProcessInputMessage (148 samples, 0.10%)</title><rect x="841.7" y="273" width="1.1" height="15.0" fill="rgb(206,8,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.66" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::LatencyRecorder::latency_percentile (19 samples, 0.01%)</title><rect x="848.4" y="273" width="0.2" height="15.0" fill="rgb(214,13,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.41" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (388 samples, 0.25%)</title><rect x="667.8" y="113" width="2.9" height="15.0" fill="rgb(237,187,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="670.77" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (15 samples, 0.01%)</title><rect x="1036.7" y="97" width="0.2" height="15.0" fill="rgb(209,116,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1039.74" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (14 samples, 0.01%)</title><rect x="127.8" y="321" width="0.1" height="15.0" fill="rgb(224,100,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::NewPartitionedAggregationNode::open (34 samples, 0.02%)</title><rect x="1189.3" y="225" width="0.2" height="15.0" fill="rgb(218,206,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.28" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<int, true>::next_vector (149 samples, 0.10%)</title><rect x="865.8" y="161" width="1.1" height="15.0" fill="rgb(219,115,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="868.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>memset (17 samples, 0.01%)</title><rect x="1189.0" y="289" width="0.1" height="15.0" fill="rgb(205,25,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.01" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (34 samples, 0.02%)</title><rect x="1094.1" y="161" width="0.3" height="15.0" fill="rgb(209,101,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1097.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (27 samples, 0.02%)</title><rect x="1166.8" y="129" width="0.2" height="15.0" fill="rgb(217,127,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.77" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MasterServerClient::report (34 samples, 0.02%)</title><rect x="850.8" y="305" width="0.3" height="15.0" fill="rgb(237,162,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.84" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnStatistics::attach (29 samples, 0.02%)</title><rect x="1183.9" y="161" width="0.2" height="15.0" fill="rgb(215,165,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.89" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>audit_syscall_entry (47 samples, 0.03%)</title><rect x="34.0" y="321" width="0.4" height="15.0" fill="rgb(252,191,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (17 samples, 0.01%)</title><rect x="135.5" y="321" width="0.2" height="15.0" fill="rgb(228,104,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="138.53" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::get_block (14 samples, 0.01%)</title><rect x="1180.5" y="161" width="0.1" height="15.0" fill="rgb(208,161,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.54" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnWriter::write_batch (91 samples, 0.06%)</title><rect x="136.8" y="337" width="0.7" height="15.0" fill="rgb(248,78,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="139.82" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (25 samples, 0.02%)</title><rect x="145.1" y="337" width="0.2" height="15.0" fill="rgb(211,25,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="148.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VectorizedRowBatch::dump_to_row_block (51 samples, 0.03%)</title><rect x="872.2" y="193" width="0.4" height="15.0" fill="rgb(217,166,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.17" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_set_column_map (22 samples, 0.01%)</title><rect x="1182.3" y="161" width="0.2" height="15.0" fill="rgb(207,143,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.29" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (135 samples, 0.09%)</title><rect x="1052.5" y="113" width="1.0" height="15.0" fill="rgb(232,66,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1055.49" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (49 samples, 0.03%)</title><rect x="137.1" y="321" width="0.4" height="15.0" fill="rgb(221,198,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="140.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (41 samples, 0.03%)</title><rect x="1092.0" y="129" width="0.3" height="15.0" fill="rgb(217,118,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.03" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (18 samples, 0.01%)</title><rect x="1173.0" y="145" width="0.2" height="15.0" fill="rgb(214,174,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.02" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::olap_crc32 (74 samples, 0.05%)</title><rect x="571.9" y="161" width="0.6" height="15.0" fill="rgb(222,63,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.89" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>copy_user_generic_string (1,027 samples, 0.66%)</title><rect x="34.8" y="321" width="7.8" height="15.0" fill="rgb(224,121,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="37.76" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FragmentMgr::exec_plan_fragment (84 samples, 0.05%)</title><rect x="841.7" y="177" width="0.7" height="15.0" fill="rgb(246,89,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.74" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::olap_decompress (45 samples, 0.03%)</title><rect x="850.0" y="209" width="0.4" height="15.0" fill="rgb(253,72,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.05" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (86 samples, 0.06%)</title><rect x="870.7" y="129" width="0.7" height="15.0" fill="rgb(250,26,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="873.72" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_proxy (44,046 samples, 28.41%)</title><rect x="854.5" y="337" width="335.2" height="15.0" fill="rgb(226,162,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.48" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >thread_proxy</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::prepare_block_read (32 samples, 0.02%)</title><rect x="829.5" y="193" width="0.3" height="15.0" fill="rgb(222,192,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="832.54" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<short, true>::next_vector (192 samples, 0.12%)</title><rect x="867.4" y="161" width="1.5" height="15.0" fill="rgb(210,224,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="870.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::set_read_params (89 samples, 0.06%)</title><rect x="872.8" y="241" width="0.7" height="15.0" fill="rgb(208,228,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (78 samples, 0.05%)</title><rect x="144.4" y="321" width="0.5" height="15.0" fill="rgb(251,44,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="147.35" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>default_send_IPI_mask_sequence_phys (35 samples, 0.02%)</title><rect x="128.6" y="321" width="0.3" height="15.0" fill="rgb(234,217,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::InsertRange (17 samples, 0.01%)</title><rect x="855.4" y="145" width="0.1" height="15.0" fill="rgb(250,46,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.42" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPTable::acquire_data_sources (54 samples, 0.03%)</title><rect x="873.5" y="241" width="0.4" height="15.0" fill="rgb(211,199,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.49" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_var_unsigned (19 samples, 0.01%)</title><rect x="393.0" y="129" width="0.2" height="15.0" fill="rgb(239,138,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="396.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::find_closet_num_bits (27 samples, 0.02%)</title><rect x="565.7" y="129" width="0.2" height="15.0" fill="rgb(217,90,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="568.67" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (174 samples, 0.11%)</title><rect x="1163.9" y="113" width="1.4" height="15.0" fill="rgb(219,34,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1166.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (63 samples, 0.04%)</title><rect x="565.0" y="129" width="0.5" height="15.0" fill="rgb(205,189,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="567.97" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (1,569 samples, 1.01%)</title><rect x="239.4" y="225" width="11.9" height="15.0" fill="rgb(246,68,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="242.40" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (14 samples, 0.01%)</title><rect x="674.2" y="81" width="0.1" height="15.0" fill="rgb(217,206,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="677.22" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnStatistics::merge (35 samples, 0.02%)</title><rect x="165.9" y="177" width="0.3" height="15.0" fill="rgb(246,163,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="168.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>sysret_check (15 samples, 0.01%)</title><rect x="53.9" y="321" width="0.1" height="15.0" fill="rgb(223,52,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (680 samples, 0.44%)</title><rect x="1173.2" y="177" width="5.1" height="15.0" fill="rgb(250,15,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (53 samples, 0.03%)</title><rect x="868.4" y="129" width="0.4" height="15.0" fill="rgb(230,182,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="871.40" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__alloc_pages_nodemask (17 samples, 0.01%)</title><rect x="30.7" y="305" width="0.1" height="15.0" fill="rgb(242,179,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="33.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<long, true>::write_batch (2,372 samples, 1.53%)</title><rect x="397.4" y="193" width="18.0" height="15.0" fill="rgb(226,96,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="400.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<int, true>::next_vector (52 samples, 0.03%)</title><rect x="268.6" y="145" width="0.4" height="15.0" fill="rgb(246,59,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="271.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>radix_tree_lookup_slot (133 samples, 0.09%)</title><rect x="51.4" y="321" width="1.1" height="15.0" fill="rgb(251,157,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.44" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (74 samples, 0.05%)</title><rect x="139.4" y="321" width="0.6" height="15.0" fill="rgb(252,36,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="142.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::~ColumnData (183 samples, 0.12%)</title><rect x="854.7" y="225" width="1.4" height="15.0" fill="rgb(238,136,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.69" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::init (36 samples, 0.02%)</title><rect x="829.5" y="225" width="0.3" height="15.0" fill="rgb(230,4,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="832.52" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::free_all (14 samples, 0.01%)</title><rect x="732.0" y="161" width="0.1" height="15.0" fill="rgb(224,220,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="735.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (57 samples, 0.04%)</title><rect x="147.3" y="337" width="0.5" height="15.0" fill="rgb(209,75,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="150.32" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_attach_data_to_merge_set (41,285 samples, 26.63%)</title><rect x="873.9" y="257" width="314.3" height="15.0" fill="rgb(207,143,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.92" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::Reader::_attach_data_to_merge_set</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (15 samples, 0.01%)</title><rect x="216.5" y="193" width="0.1" height="15.0" fill="rgb(244,99,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="219.52" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_delta_values (107 samples, 0.07%)</title><rect x="413.6" y="145" width="0.8" height="15.0" fill="rgb(217,80,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="416.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>void std::__adjust_heap<__gnu_cxx::__normal_iterator<doris::CollectIterator::ChildCtx**, std::vector<doris::CollectIterator::ChildCtx*, std::allocator<doris::CollectIterator::ChildCtx*> > >, long, doris::CollectIterator::ChildCtx*, __gnu_cxx::__ops::_Iter_comp_iter<doris::CollectIterator::ChildCtxComparator> > (6,633 samples, 4.28%)</title><rect x="779.0" y="209" width="50.5" height="15.0" fill="rgb(244,137,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="782.03" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >void ..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_write (93 samples, 0.06%)</title><rect x="572.6" y="161" width="0.7" height="15.0" fill="rgb(213,224,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="575.55" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (18 samples, 0.01%)</title><rect x="554.7" y="49" width="0.1" height="15.0" fill="rgb(223,129,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="557.70" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_nanosleep (82 samples, 0.05%)</title><rect x="120.1" y="337" width="0.6" height="15.0" fill="rgb(221,226,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.06" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (19 samples, 0.01%)</title><rect x="697.7" y="81" width="0.2" height="15.0" fill="rgb(235,26,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="700.72" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__might_sleep (22 samples, 0.01%)</title><rect x="33.3" y="321" width="0.2" height="15.0" fill="rgb(221,181,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_prepare_patched_blob (164 samples, 0.11%)</title><rect x="543.4" y="161" width="1.2" height="15.0" fill="rgb(206,68,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="546.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (15 samples, 0.01%)</title><rect x="1166.4" y="113" width="0.1" height="15.0" fill="rgb(226,160,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.35" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::allocate_memory_for_string_type (19 samples, 0.01%)</title><rect x="140.0" y="337" width="0.2" height="15.0" fill="rgb(227,223,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="143.04" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (46 samples, 0.03%)</title><rect x="1088.4" y="97" width="0.3" height="15.0" fill="rgb(223,44,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1091.37" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::lz4_decompress (32 samples, 0.02%)</title><rect x="1138.1" y="113" width="0.3" height="15.0" fill="rgb(219,60,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1141.14" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (53 samples, 0.03%)</title><rect x="138.5" y="337" width="0.4" height="15.0" fill="rgb(234,149,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="141.50" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_seek_to_block_directly (877 samples, 0.57%)</title><rect x="1160.3" y="177" width="6.7" height="15.0" fill="rgb(254,15,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1163.31" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<short, true>::next_vector (235 samples, 0.15%)</title><rect x="274.3" y="145" width="1.8" height="15.0" fill="rgb(236,111,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="277.31" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_load_to_vectorized_row_batch (1,645 samples, 1.06%)</title><rect x="266.3" y="161" width="12.5" height="15.0" fill="rgb(206,101,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="269.26" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::attached_by (9,791 samples, 6.32%)</title><rect x="148.8" y="225" width="74.6" height="15.0" fill="rgb(223,93,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::C..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::~MemPool (36 samples, 0.02%)</title><rect x="855.3" y="193" width="0.2" height="15.0" fill="rgb(217,149,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.28" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (20 samples, 0.01%)</title><rect x="673.9" y="97" width="0.1" height="15.0" fill="rgb(232,46,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="676.87" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>find_busiest_group (32 samples, 0.02%)</title><rect x="164.5" y="177" width="0.2" height="15.0" fill="rgb(214,25,18)" rx="2" ry="2" />
|
|
<text text-anchor="" x="167.46" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::init (21 samples, 0.01%)</title><rect x="873.7" y="193" width="0.2" height="15.0" fill="rgb(241,128,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (22 samples, 0.01%)</title><rect x="136.2" y="321" width="0.1" height="15.0" fill="rgb(241,10,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="139.16" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_attach_data_to_merge_set (33 samples, 0.02%)</title><rect x="829.5" y="209" width="0.3" height="15.0" fill="rgb(232,205,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="832.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (21 samples, 0.01%)</title><rect x="547.1" y="97" width="0.2" height="15.0" fill="rgb(242,200,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="550.14" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>brpc::policy::ProcessRpcRequest (144 samples, 0.09%)</title><rect x="841.7" y="257" width="1.1" height="15.0" fill="rgb(235,94,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.67" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<long, true>::next_vector (2,963 samples, 1.91%)</title><rect x="1041.1" y="161" width="22.5" height="15.0" fill="rgb(218,1,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1044.06" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::find_closet_num_bits (23 samples, 0.01%)</title><rect x="566.1" y="161" width="0.2" height="15.0" fill="rgb(222,75,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="569.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::_spill (15 samples, 0.01%)</title><rect x="171.0" y="161" width="0.2" height="15.0" fill="rgb(222,117,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="174.04" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (85 samples, 0.05%)</title><rect x="216.7" y="193" width="0.6" height="15.0" fill="rgb(227,83,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="219.66" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_seek_to_block_directly (50 samples, 0.03%)</title><rect x="871.8" y="177" width="0.4" height="15.0" fill="rgb(206,0,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="874.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (134 samples, 0.09%)</title><rect x="186.3" y="177" width="1.1" height="15.0" fill="rgb(222,200,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="189.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (37 samples, 0.02%)</title><rect x="692.4" y="81" width="0.2" height="15.0" fill="rgb(254,105,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="695.37" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<short, true>::seek (301 samples, 0.19%)</title><rect x="1163.0" y="161" width="2.3" height="15.0" fill="rgb(242,182,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.98" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_direct_values (190 samples, 0.12%)</title><rect x="200.8" y="145" width="1.4" height="15.0" fill="rgb(235,45,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="203.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>fget_light (18 samples, 0.01%)</title><rect x="1135.6" y="97" width="0.2" height="15.0" fill="rgb(250,54,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.62" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (17 samples, 0.01%)</title><rect x="1166.1" y="129" width="0.1" height="15.0" fill="rgb(215,61,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.09" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (52 samples, 0.03%)</title><rect x="219.9" y="81" width="0.4" height="15.0" fill="rgb(225,4,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="222.88" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>memset (76 samples, 0.05%)</title><rect x="48.3" y="321" width="0.5" height="15.0" fill="rgb(234,67,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.26" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>base::internal::SpinLockWake (20 samples, 0.01%)</title><rect x="131.2" y="337" width="0.2" height="15.0" fill="rgb(216,88,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="134.23" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (34 samples, 0.02%)</title><rect x="691.5" y="97" width="0.2" height="15.0" fill="rgb(238,137,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="694.49" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::InListPredicate<doris::StringValue>::evaluate (967 samples, 0.62%)</title><rect x="857.2" y="193" width="7.3" height="15.0" fill="rgb(209,37,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="860.19" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (14 samples, 0.01%)</title><rect x="396.3" y="65" width="0.1" height="15.0" fill="rgb(209,114,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="399.26" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (50 samples, 0.03%)</title><rect x="1050.0" y="129" width="0.3" height="15.0" fill="rgb(224,171,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1052.96" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::NewPartitionedAggregationNode::init (16 samples, 0.01%)</title><rect x="841.9" y="97" width="0.2" height="15.0" fill="rgb(220,209,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.94" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_values (25 samples, 0.02%)</title><rect x="216.3" y="161" width="0.2" height="15.0" fill="rgb(246,82,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="219.32" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>intel_pmu_enable_all (288 samples, 0.19%)</title><rect x="845.9" y="321" width="2.2" height="15.0" fill="rgb(240,150,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="848.88" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (31 samples, 0.02%)</title><rect x="171.8" y="177" width="0.2" height="15.0" fill="rgb(224,76,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="174.81" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ext4_mark_iloc_dirty (29 samples, 0.02%)</title><rect x="124.6" y="321" width="0.2" height="15.0" fill="rgb(209,160,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="127.58" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__madvise (291 samples, 0.19%)</title><rect x="128.3" y="337" width="2.2" height="15.0" fill="rgb(242,67,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::FindChunk (55 samples, 0.04%)</title><rect x="1128.6" y="113" width="0.4" height="15.0" fill="rgb(236,168,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1131.61" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (17 samples, 0.01%)</title><rect x="1183.1" y="81" width="0.1" height="15.0" fill="rgb(217,74,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.10" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (14 samples, 0.01%)</title><rect x="685.5" y="129" width="0.1" height="15.0" fill="rgb(246,102,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="688.53" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::create (68 samples, 0.04%)</title><rect x="219.8" y="129" width="0.5" height="15.0" fill="rgb(215,166,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="222.76" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_create_reader (94 samples, 0.06%)</title><rect x="1182.6" y="177" width="0.8" height="15.0" fill="rgb(233,58,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.65" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (18 samples, 0.01%)</title><rect x="216.4" y="129" width="0.1" height="15.0" fill="rgb(244,164,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="219.36" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>void std::__adjust_heap<__gnu_cxx::__normal_iterator<doris::CollectIterator::ChildCtx**, std::vector<doris::CollectIterator::ChildCtx*, std::allocator<doris::CollectIterator::ChildCtx*> > >, long, doris::CollectIterator::ChildCtx*, __gnu_cxx::__ops::_Iter_comp_iter<doris::CollectIterator::ChildCtxComparator> > (34 samples, 0.02%)</title><rect x="1189.7" y="337" width="0.3" height="15.0" fill="rgb(242,141,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>syscall (14 samples, 0.01%)</title><rect x="854.2" y="337" width="0.1" height="15.0" fill="rgb(235,131,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PushHandler::_convert (215 samples, 0.14%)</title><rect x="848.8" y="257" width="1.6" height="15.0" fill="rgb(235,66,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.81" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (488 samples, 0.31%)</title><rect x="688.9" y="113" width="3.7" height="15.0" fill="rgb(210,156,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="691.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___strncmp_ssse3 (70 samples, 0.05%)</title><rect x="857.5" y="177" width="0.5" height="15.0" fill="rgb(212,41,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="860.48" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ExecNode::create_tree (32 samples, 0.02%)</title><rect x="841.8" y="129" width="0.3" height="15.0" fill="rgb(248,175,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.82" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::detail::combine (16 samples, 0.01%)</title><rect x="848.4" y="257" width="0.1" height="15.0" fill="rgb(219,225,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (45 samples, 0.03%)</title><rect x="1162.6" y="113" width="0.4" height="15.0" fill="rgb(236,226,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.64" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (68 samples, 0.04%)</title><rect x="667.0" y="97" width="0.5" height="15.0" fill="rgb(210,175,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="669.97" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::prepare_block_read (41,267 samples, 26.62%)</title><rect x="874.1" y="241" width="314.1" height="15.0" fill="rgb(231,109,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="877.05" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::ColumnData::prepare_block_read</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_pick_row_groups (194 samples, 0.13%)</title><rect x="1183.4" y="177" width="1.4" height="15.0" fill="rgb(249,10,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.36" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>start_thread (498 samples, 0.32%)</title><rect x="848.2" y="337" width="3.8" height="15.0" fill="rgb(245,221,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.25" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (18 samples, 0.01%)</title><rect x="200.9" y="129" width="0.2" height="15.0" fill="rgb(207,63,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="203.94" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::init (23 samples, 0.01%)</title><rect x="873.7" y="209" width="0.2" height="15.0" fill="rgb(225,166,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.73" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::DoubleColumnWriterBase<double>::write_batch (742 samples, 0.48%)</title><rect x="166.4" y="193" width="5.6" height="15.0" fill="rgb(227,170,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="169.39" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (20 samples, 0.01%)</title><rect x="141.8" y="321" width="0.1" height="15.0" fill="rgb(227,183,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="144.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::get_total_buffer_size (19 samples, 0.01%)</title><rect x="149.7" y="209" width="0.1" height="15.0" fill="rgb(226,86,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="152.69" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (22 samples, 0.01%)</title><rect x="872.9" y="209" width="0.2" height="15.0" fill="rgb(222,10,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.93" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::ReleaseToSpans (16 samples, 0.01%)</title><rect x="855.4" y="113" width="0.1" height="15.0" fill="rgb(221,35,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.42" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::get_total_buffer_size (1,785 samples, 1.15%)</title><rect x="150.6" y="193" width="13.6" height="15.0" fill="rgb(250,66,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="153.65" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (3,076 samples, 1.98%)</title><rect x="601.9" y="225" width="23.4" height="15.0" fill="rgb(206,76,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="604.92" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::finalize (206 samples, 0.13%)</title><rect x="164.2" y="209" width="1.6" height="15.0" fill="rgb(252,2,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="167.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<int, true>::seek (70 samples, 0.05%)</title><rect x="1161.6" y="161" width="0.5" height="15.0" fill="rgb(215,0,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.57" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_agg_key_next_row (7,814 samples, 5.04%)</title><rect x="251.4" y="225" width="59.4" height="15.0" fill="rgb(243,147,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="254.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris:..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (60 samples, 0.04%)</title><rect x="275.6" y="129" width="0.5" height="15.0" fill="rgb(213,60,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="278.64" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (61 samples, 0.04%)</title><rect x="171.2" y="161" width="0.4" height="15.0" fill="rgb(234,195,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="174.15" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::index_cmp (54 samples, 0.03%)</title><rect x="1181.1" y="161" width="0.4" height="15.0" fill="rgb(247,26,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.08" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FragmentExecState::execute (61 samples, 0.04%)</title><rect x="1189.2" y="273" width="0.5" height="15.0" fill="rgb(226,154,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.22" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (59 samples, 0.04%)</title><rect x="219.8" y="97" width="0.5" height="15.0" fill="rgb(214,133,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="222.83" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StreamIndexWriter::add_index_entry (55 samples, 0.04%)</title><rect x="569.6" y="193" width="0.4" height="15.0" fill="rgb(226,210,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="572.61" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (18 samples, 0.01%)</title><rect x="1024.4" y="145" width="0.2" height="15.0" fill="rgb(245,31,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1027.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>rw_verify_area (26 samples, 0.02%)</title><rect x="52.5" y="321" width="0.2" height="15.0" fill="rgb(210,144,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="55.51" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>base::internal::SpinLockDelay (32 samples, 0.02%)</title><rect x="131.0" y="337" width="0.2" height="15.0" fill="rgb(210,48,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="133.99" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (22 samples, 0.01%)</title><rect x="872.9" y="193" width="0.2" height="15.0" fill="rgb(230,174,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.93" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (641 samples, 0.41%)</title><rect x="1058.1" y="113" width="4.9" height="15.0" fill="rgb(246,7,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1061.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (501 samples, 0.32%)</title><rect x="598.1" y="209" width="3.8" height="15.0" fill="rgb(238,37,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="601.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::vector<doris::TTabletInfo, std::allocator<doris::TTabletInfo> >::operator= (16 samples, 0.01%)</title><rect x="851.7" y="257" width="0.2" height="15.0" fill="rgb(227,15,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="854.74" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PositionEntryReader::positions (18 samples, 0.01%)</title><rect x="1165.8" y="145" width="0.2" height="15.0" fill="rgb(239,172,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.83" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::ReleaseListToSpans (26 samples, 0.02%)</title><rect x="855.8" y="145" width="0.2" height="15.0" fill="rgb(241,45,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.81" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::detail::Percentile::reset (15 samples, 0.01%)</title><rect x="848.7" y="273" width="0.1" height="15.0" fill="rgb(205,123,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.65" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::_make_file_header (40 samples, 0.03%)</title><rect x="573.3" y="177" width="0.3" height="15.0" fill="rgb(245,73,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.28" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (72 samples, 0.05%)</title><rect x="1145.4" y="97" width="0.6" height="15.0" fill="rgb(223,56,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1148.43" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (133 samples, 0.09%)</title><rect x="201.2" y="129" width="1.0" height="15.0" fill="rgb(245,223,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="204.19" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::write_batch (28,202 samples, 18.19%)</title><rect x="355.4" y="209" width="214.6" height="15.0" fill="rgb(238,189,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="358.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::SegmentWriter::write_..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_direct_values (49 samples, 0.03%)</title><rect x="414.4" y="145" width="0.4" height="15.0" fill="rgb(242,153,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="417.40" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_write (38 samples, 0.02%)</title><rect x="165.4" y="177" width="0.3" height="15.0" fill="rgb(217,165,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="168.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::CumulativeCompaction::_do_cumulative_compaction (67,697 samples, 43.67%)</title><rect x="326.1" y="257" width="515.3" height="15.0" fill="rgb(228,192,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="329.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::CumulativeCompaction::_do_cumulative_compaction</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (25 samples, 0.02%)</title><rect x="147.9" y="321" width="0.2" height="15.0" fill="rgb(241,79,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="150.94" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<unsigned long, false>::next_vector (193 samples, 0.12%)</title><rect x="1090.9" y="161" width="1.4" height="15.0" fill="rgb(214,122,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1093.88" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::create (24 samples, 0.02%)</title><rect x="554.7" y="97" width="0.1" height="15.0" fill="rgb(237,128,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="557.65" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (71 samples, 0.05%)</title><rect x="1090.2" y="129" width="0.5" height="15.0" fill="rgb(232,116,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1093.19" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::InsertRange (28 samples, 0.02%)</title><rect x="855.8" y="161" width="0.2" height="15.0" fill="rgb(227,53,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::mem_pool (21 samples, 0.01%)</title><rect x="573.9" y="225" width="0.1" height="15.0" fill="rgb(234,168,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.88" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FloatintPointColumnReader<double>::seek (59 samples, 0.04%)</title><rect x="1161.1" y="161" width="0.5" height="15.0" fill="rgb(253,35,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.12" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStreamFactory::~OutStreamFactory (35 samples, 0.02%)</title><rect x="573.6" y="177" width="0.3" height="15.0" fill="rgb(254,179,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.61" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::get_block (40 samples, 0.03%)</title><rect x="856.7" y="225" width="0.3" height="15.0" fill="rgb(251,159,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.68" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (17 samples, 0.01%)</title><rect x="1183.1" y="97" width="0.1" height="15.0" fill="rgb(210,220,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.10" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (103 samples, 0.07%)</title><rect x="688.1" y="113" width="0.8" height="15.0" fill="rgb(222,163,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="691.15" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (51 samples, 0.03%)</title><rect x="546.9" y="113" width="0.4" height="15.0" fill="rgb(240,62,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="549.91" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_raw_spin_lock (17 samples, 0.01%)</title><rect x="132.7" y="321" width="0.2" height="15.0" fill="rgb(211,123,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="135.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (14 samples, 0.01%)</title><rect x="268.9" y="129" width="0.1" height="15.0" fill="rgb(225,216,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="271.88" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (198 samples, 0.13%)</title><rect x="1163.8" y="129" width="1.5" height="15.0" fill="rgb(244,171,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1166.76" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::full_key_cmp (184 samples, 0.12%)</title><rect x="140.2" y="337" width="1.4" height="15.0" fill="rgb(217,26,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="143.19" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::full_key_cmp (1,303 samples, 0.84%)</title><rect x="830.5" y="225" width="10.0" height="15.0" fill="rgb(231,113,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="833.54" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write_to_file (47 samples, 0.03%)</title><rect x="165.4" y="193" width="0.3" height="15.0" fill="rgb(214,163,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="168.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_raw_spin_lock (49 samples, 0.03%)</title><rect x="122.1" y="321" width="0.4" height="15.0" fill="rgb(224,140,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="125.08" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<long, true>::write_batch (47 samples, 0.03%)</title><rect x="136.0" y="337" width="0.3" height="15.0" fill="rgb(241,70,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="138.99" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (49 samples, 0.03%)</title><rect x="1185.8" y="209" width="0.3" height="15.0" fill="rgb(209,147,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.77" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::_cumulative_compaction_thread_callback (67,740 samples, 43.70%)</title><rect x="326.0" y="305" width="515.6" height="15.0" fill="rgb(247,204,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="328.95" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::OLAPEngine::_cumulative_compaction_thread_callback</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>clear_page_c_e (50 samples, 0.03%)</title><rect x="31.0" y="305" width="0.4" height="15.0" fill="rgb(230,144,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="34.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::Scavenge (26 samples, 0.02%)</title><rect x="854.8" y="193" width="0.2" height="15.0" fill="rgb(250,229,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>system_call (32 samples, 0.02%)</title><rect x="54.1" y="321" width="0.2" height="15.0" fill="rgb(239,70,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (21 samples, 0.01%)</title><rect x="674.4" y="97" width="0.1" height="15.0" fill="rgb(207,124,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="677.36" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::ReleaseToSpans (17 samples, 0.01%)</title><rect x="854.9" y="129" width="0.1" height="15.0" fill="rgb(245,45,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.90" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>inotify_inode_queue_event (14 samples, 0.01%)</title><rect x="47.7" y="321" width="0.1" height="15.0" fill="rgb(247,46,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="50.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (62 samples, 0.04%)</title><rect x="222.2" y="145" width="0.5" height="15.0" fill="rgb(252,165,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="225.22" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (105 samples, 0.07%)</title><rect x="272.1" y="113" width="0.8" height="15.0" fill="rgb(233,14,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="275.10" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::full_key_cmp (886 samples, 0.57%)</title><rect x="296.5" y="209" width="6.7" height="15.0" fill="rgb(236,36,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="299.49" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Conditions::append_condition (51 samples, 0.03%)</title><rect x="1188.2" y="225" width="0.4" height="15.0" fill="rgb(240,185,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.18" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::finalize (469 samples, 0.30%)</title><rect x="570.3" y="225" width="3.6" height="15.0" fill="rgb(237,111,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="573.32" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TaskWorkerPool::_report_olap_table_worker_thread_callback (153 samples, 0.10%)</title><rect x="850.8" y="321" width="1.2" height="15.0" fill="rgb(244,203,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.84" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_get_block (19 samples, 0.01%)</title><rect x="1180.5" y="177" width="0.2" height="15.0" fill="rgb(212,194,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.52" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnWriter::write (27 samples, 0.02%)</title><rect x="849.2" y="193" width="0.2" height="15.0" fill="rgb(208,177,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="852.22" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (40 samples, 0.03%)</title><rect x="393.2" y="129" width="0.4" height="15.0" fill="rgb(229,84,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="396.25" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (115 samples, 0.07%)</title><rect x="704.1" y="113" width="0.9" height="15.0" fill="rgb(209,212,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="707.13" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>intel_pmu_enable_all (49 samples, 0.03%)</title><rect x="120.3" y="321" width="0.3" height="15.0" fill="rgb(246,76,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnReader<doris::StringColumnDirectReader>::seek (159 samples, 0.10%)</title><rect x="1165.8" y="161" width="1.2" height="15.0" fill="rgb(242,19,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.77" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (527 samples, 0.34%)</title><rect x="693.9" y="97" width="4.0" height="15.0" fill="rgb(234,194,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="696.86" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (22 samples, 0.01%)</title><rect x="1095.9" y="145" width="0.2" height="15.0" fill="rgb(220,139,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1098.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::BaseCompaction::_do_base_compaction (23,342 samples, 15.06%)</title><rect x="148.3" y="257" width="177.6" height="15.0" fill="rgb(232,176,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.26" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::BaseCompaction::..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::Scavenge (28 samples, 0.02%)</title><rect x="855.3" y="177" width="0.2" height="15.0" fill="rgb(241,3,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (39 samples, 0.03%)</title><rect x="275.8" y="113" width="0.3" height="15.0" fill="rgb(229,178,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="278.80" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (1,470 samples, 0.95%)</title><rect x="790.2" y="193" width="11.2" height="15.0" fill="rgb(232,30,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="793.20" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>radix_tree_lookup_slot (15 samples, 0.01%)</title><rect x="1136.0" y="97" width="0.1" height="15.0" fill="rgb(218,169,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PInternalServiceImpl<doris::PBackendService>::_exec_plan_fragment (125 samples, 0.08%)</title><rect x="841.7" y="209" width="1.0" height="15.0" fill="rgb(242,95,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.72" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::_spill (75 samples, 0.05%)</title><rect x="219.7" y="145" width="0.6" height="15.0" fill="rgb(254,114,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="222.74" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>intel_pmu_enable_all (225 samples, 0.15%)</title><rect x="49.2" y="305" width="1.8" height="15.0" fill="rgb(235,68,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="52.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_read_all_data_streams (52 samples, 0.03%)</title><rect x="1184.8" y="177" width="0.4" height="15.0" fill="rgb(230,92,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.84" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (1,132 samples, 0.73%)</title><rect x="191.1" y="161" width="8.6" height="15.0" fill="rgb(205,93,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="194.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (37 samples, 0.02%)</title><rect x="272.6" y="97" width="0.3" height="15.0" fill="rgb(241,158,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="275.61" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (87 samples, 0.06%)</title><rect x="273.3" y="97" width="0.6" height="15.0" fill="rgb(247,55,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="276.27" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::_finalize_segment (468 samples, 0.30%)</title><rect x="570.3" y="209" width="3.6" height="15.0" fill="rgb(216,8,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="573.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::init (16 samples, 0.01%)</title><rect x="829.6" y="161" width="0.2" height="15.0" fill="rgb(215,124,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="832.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (18 samples, 0.01%)</title><rect x="202.1" y="113" width="0.1" height="15.0" fill="rgb(230,144,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="205.07" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnStatistics::merge (69 samples, 0.04%)</title><rect x="355.8" y="177" width="0.6" height="15.0" fill="rgb(230,199,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="358.83" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PositionEntryReader::positions (35 samples, 0.02%)</title><rect x="1163.2" y="129" width="0.3" height="15.0" fill="rgb(238,50,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1166.20" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (24 samples, 0.02%)</title><rect x="1063.3" y="113" width="0.2" height="15.0" fill="rgb(230,65,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1066.34" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<short, true>::next_vector (40 samples, 0.03%)</title><rect x="135.4" y="337" width="0.3" height="15.0" fill="rgb(213,149,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="138.37" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__memcpy_sse2_unaligned (45 samples, 0.03%)</title><rect x="130.6" y="337" width="0.3" height="15.0" fill="rgb(226,144,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="133.55" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::free_all (37 samples, 0.02%)</title><rect x="1172.9" y="177" width="0.3" height="15.0" fill="rgb(228,175,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.87" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (797 samples, 0.51%)</title><rect x="1082.7" y="129" width="6.0" height="15.0" fill="rgb(211,132,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1085.65" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (364 samples, 0.23%)</title><rect x="1054.2" y="113" width="2.8" height="15.0" fill="rgb(228,70,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1057.22" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (26 samples, 0.02%)</title><rect x="392.8" y="113" width="0.2" height="15.0" fill="rgb(212,202,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="395.82" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::prepare_block_read (2,052 samples, 1.32%)</title><rect x="857.1" y="241" width="15.7" height="15.0" fill="rgb(252,155,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="860.15" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (40 samples, 0.03%)</title><rect x="670.4" y="81" width="0.3" height="15.0" fill="rgb(244,21,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="673.41" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::olap_crc32 (48 samples, 0.03%)</title><rect x="165.0" y="177" width="0.4" height="15.0" fill="rgb(227,170,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="168.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::full_key_cmp (3,695 samples, 2.38%)</title><rect x="801.4" y="193" width="28.1" height="15.0" fill="rgb(240,218,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="804.39" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_load_to_vectorized_row_batch (21,293 samples, 13.73%)</title><rect x="998.2" y="177" width="162.1" height="15.0" fill="rgb(210,55,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1001.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::SegmentReader..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__memcpy_sse2_unaligned (19 samples, 0.01%)</title><rect x="355.7" y="177" width="0.1" height="15.0" fill="rgb(226,182,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="358.69" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (1,229 samples, 0.79%)</title><rect x="451.1" y="177" width="9.4" height="15.0" fill="rgb(254,21,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="454.14" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>clear_page_c_e (14 samples, 0.01%)</title><rect x="1157.7" y="113" width="0.1" height="15.0" fill="rgb(217,40,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1160.70" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (27 samples, 0.02%)</title><rect x="413.7" y="129" width="0.2" height="15.0" fill="rgb(252,50,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="416.65" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::full_key_cmp (272 samples, 0.18%)</title><rect x="317.3" y="225" width="2.1" height="15.0" fill="rgb(208,157,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="320.29" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (69 samples, 0.04%)</title><rect x="209.1" y="177" width="0.5" height="15.0" fill="rgb(234,20,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="212.12" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>syscall (80 samples, 0.05%)</title><rect x="53.3" y="321" width="0.6" height="15.0" fill="rgb(218,18,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="56.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_values (261 samples, 0.17%)</title><rect x="413.4" y="161" width="2.0" height="15.0" fill="rgb(235,75,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="416.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<long, true>::seek (115 samples, 0.07%)</title><rect x="1162.1" y="161" width="0.9" height="15.0" fill="rgb(211,225,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.10" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (270 samples, 0.17%)</title><rect x="132.6" y="337" width="2.0" height="15.0" fill="rgb(250,185,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="135.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_fill_compressed (21 samples, 0.01%)</title><rect x="1017.6" y="129" width="0.1" height="15.0" fill="rgb(225,47,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1020.56" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_short_repeat_values (221 samples, 0.14%)</title><rect x="564.2" y="145" width="1.7" height="15.0" fill="rgb(211,159,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="567.20" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StringColumnDirectReader::next_vector (58 samples, 0.04%)</title><rect x="145.3" y="337" width="0.4" height="15.0" fill="rgb(242,127,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="148.28" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::_Rb_tree<doris::StringValue, doris::StringValue, std::_Identity<doris::StringValue>, std::less<doris::StringValue>, std::allocator<doris::StringValue> >::find (85 samples, 0.05%)</title><rect x="1179.8" y="193" width="0.7" height="15.0" fill="rgb(210,186,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1182.81" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_short_repeat_values (72 samples, 0.05%)</title><rect x="414.8" y="145" width="0.5" height="15.0" fill="rgb(230,19,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="417.77" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FragmentExecState::prepare (83 samples, 0.05%)</title><rect x="841.7" y="161" width="0.7" height="15.0" fill="rgb(222,119,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.75" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (136 samples, 0.09%)</title><rect x="272.9" y="113" width="1.0" height="15.0" fill="rgb(217,106,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="275.89" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OlapScanner::get_batch (2,175 samples, 1.40%)</title><rect x="856.2" y="289" width="16.6" height="15.0" fill="rgb(248,17,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.22" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (30 samples, 0.02%)</title><rect x="391.8" y="129" width="0.2" height="15.0" fill="rgb(235,177,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="394.79" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__memcmp_sse4_1 (103 samples, 0.07%)</title><rect x="236.9" y="209" width="0.8" height="15.0" fill="rgb(231,101,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="239.91" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (36 samples, 0.02%)</title><rect x="268.3" y="129" width="0.3" height="15.0" fill="rgb(229,210,18)" rx="2" ry="2" />
|
|
<text text-anchor="" x="271.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (91 samples, 0.06%)</title><rect x="556.6" y="129" width="0.7" height="15.0" fill="rgb(251,83,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="559.58" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (15 samples, 0.01%)</title><rect x="548.9" y="113" width="0.1" height="15.0" fill="rgb(210,165,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.88" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_ZN5doris10ColumnData10_get_blockEbi.constprop.168 (40,153 samples, 25.90%)</title><rect x="874.8" y="209" width="305.7" height="15.0" fill="rgb(246,152,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="877.83" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN5doris10ColumnData10_get_blockEbi.cons..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (67 samples, 0.04%)</title><rect x="1093.6" y="161" width="0.5" height="15.0" fill="rgb(227,36,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1096.63" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (46 samples, 0.03%)</title><rect x="1150.2" y="97" width="0.4" height="15.0" fill="rgb(247,11,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.21" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (14 samples, 0.01%)</title><rect x="396.3" y="33" width="0.1" height="15.0" fill="rgb(217,203,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="399.26" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (20 samples, 0.01%)</title><rect x="142.2" y="321" width="0.2" height="15.0" fill="rgb(235,14,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="145.22" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_values (744 samples, 0.48%)</title><rect x="391.6" y="161" width="5.7" height="15.0" fill="rgb(210,25,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="394.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___strncmp_ssse3 (26 samples, 0.02%)</title><rect x="127.7" y="337" width="0.2" height="15.0" fill="rgb(212,179,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (46 samples, 0.03%)</title><rect x="1092.0" y="145" width="0.3" height="15.0" fill="rgb(243,136,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1094.99" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (18 samples, 0.01%)</title><rect x="1183.1" y="113" width="0.1" height="15.0" fill="rgb(227,194,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (109 samples, 0.07%)</title><rect x="853.1" y="321" width="0.8" height="15.0" fill="rgb(246,167,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="856.11" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>brpc::Socket::ProcessEvent (156 samples, 0.10%)</title><rect x="841.6" y="305" width="1.2" height="15.0" fill="rgb(210,12,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.64" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_patched_base_values (822 samples, 0.53%)</title><rect x="697.9" y="113" width="6.2" height="15.0" fill="rgb(211,61,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="700.87" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (188 samples, 0.12%)</title><rect x="142.4" y="337" width="1.4" height="15.0" fill="rgb(229,229,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="145.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_seek_to_row (41,249 samples, 26.61%)</title><rect x="874.1" y="225" width="314.0" height="15.0" fill="rgb(254,128,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="877.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::ColumnData::_seek_to_row</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (178 samples, 0.11%)</title><rect x="1094.6" y="145" width="1.3" height="15.0" fill="rgb(226,175,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1097.57" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (130 samples, 0.08%)</title><rect x="1159.3" y="161" width="1.0" height="15.0" fill="rgb(253,35,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1162.32" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (1,583 samples, 1.02%)</title><rect x="1138.6" y="129" width="12.1" height="15.0" fill="rgb(241,32,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1141.61" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (432 samples, 0.28%)</title><rect x="566.3" y="193" width="3.3" height="15.0" fill="rgb(243,111,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="569.33" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (90 samples, 0.06%)</title><rect x="1092.9" y="145" width="0.7" height="15.0" fill="rgb(222,146,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.88" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (59 samples, 0.04%)</title><rect x="1032.4" y="97" width="0.4" height="15.0" fill="rgb(245,15,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1035.38" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_seek_to_row (2,052 samples, 1.32%)</title><rect x="857.1" y="225" width="15.7" height="15.0" fill="rgb(209,220,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="860.15" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::allocate_memory_for_string_type (41 samples, 0.03%)</title><rect x="841.1" y="241" width="0.3" height="15.0" fill="rgb(221,127,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.09" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__libc_send (36 samples, 0.02%)</title><rect x="32.9" y="321" width="0.3" height="15.0" fill="rgb(212,45,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.90" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (26 samples, 0.02%)</title><rect x="562.3" y="49" width="0.2" height="15.0" fill="rgb(250,220,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.29" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (498 samples, 0.32%)</title><rect x="172.0" y="193" width="3.8" height="15.0" fill="rgb(211,165,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="175.04" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (25 samples, 0.02%)</title><rect x="171.6" y="161" width="0.2" height="15.0" fill="rgb(232,10,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="174.62" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (181 samples, 0.12%)</title><rect x="305.0" y="193" width="1.4" height="15.0" fill="rgb(206,39,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="308.01" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<int, true>::next_vector (891 samples, 0.57%)</title><rect x="664.0" y="145" width="6.8" height="15.0" fill="rgb(248,41,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="667.04" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (37 samples, 0.02%)</title><rect x="855.7" y="177" width="0.3" height="15.0" fill="rgb(251,153,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.72" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (38 samples, 0.02%)</title><rect x="871.4" y="129" width="0.3" height="15.0" fill="rgb(231,138,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="874.38" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (1,240 samples, 0.80%)</title><rect x="406.0" y="177" width="9.4" height="15.0" fill="rgb(224,48,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="408.97" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (58 samples, 0.04%)</title><rect x="277.8" y="113" width="0.5" height="15.0" fill="rgb(218,59,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="280.83" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>find_busiest_group (56 samples, 0.04%)</title><rect x="570.8" y="161" width="0.4" height="15.0" fill="rgb(212,191,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="573.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (529 samples, 0.34%)</title><rect x="1032.8" y="129" width="4.1" height="15.0" fill="rgb(243,30,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1035.83" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__audit_syscall_exit (61 samples, 0.04%)</title><rect x="32.1" y="321" width="0.5" height="15.0" fill="rgb(224,11,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::create (15 samples, 0.01%)</title><rect x="396.3" y="97" width="0.1" height="15.0" fill="rgb(250,127,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="399.25" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Merger::merge (67,584 samples, 43.59%)</title><rect x="326.4" y="241" width="514.5" height="15.0" fill="rgb(252,100,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="329.43" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::Merger::merge</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (40 samples, 0.03%)</title><rect x="674.0" y="97" width="0.3" height="15.0" fill="rgb(244,46,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="677.02" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (34 samples, 0.02%)</title><rect x="704.7" y="97" width="0.3" height="15.0" fill="rgb(224,9,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="707.75" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TaskWorkerPool::_report_disk_state_worker_thread_callback (47 samples, 0.03%)</title><rect x="850.5" y="321" width="0.3" height="15.0" fill="rgb(224,120,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.48" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PBackendService::CallMethod (135 samples, 0.09%)</title><rect x="841.7" y="241" width="1.0" height="15.0" fill="rgb(208,10,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.70" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::close (197 samples, 0.13%)</title><rect x="854.6" y="257" width="1.5" height="15.0" fill="rgb(233,220,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::_spill (17 samples, 0.01%)</title><rect x="562.5" y="113" width="0.1" height="15.0" fill="rgb(222,7,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.51" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::crc32 (82 samples, 0.05%)</title><rect x="571.8" y="177" width="0.7" height="15.0" fill="rgb(254,200,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="574.83" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (169 samples, 0.11%)</title><rect x="554.9" y="113" width="1.2" height="15.0" fill="rgb(230,134,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="557.86" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<int, true>::write_batch (3,487 samples, 2.25%)</title><rect x="370.8" y="193" width="26.5" height="15.0" fill="rgb(229,68,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="373.80" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ThreadPool::work_thread (75 samples, 0.05%)</title><rect x="1189.2" y="321" width="0.5" height="15.0" fill="rgb(215,198,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.17" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>kmem_cache_alloc (16 samples, 0.01%)</title><rect x="844.6" y="321" width="0.1" height="15.0" fill="rgb(230,189,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="847.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_delta_values (187 samples, 0.12%)</title><rect x="391.7" y="145" width="1.5" height="15.0" fill="rgb(220,191,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="394.74" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (124 samples, 0.08%)</title><rect x="1028.0" y="129" width="0.9" height="15.0" fill="rgb(237,92,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1030.97" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (40 samples, 0.03%)</title><rect x="865.4" y="145" width="0.3" height="15.0" fill="rgb(244,115,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="868.39" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>release_pages (18 samples, 0.01%)</title><rect x="130.0" y="321" width="0.1" height="15.0" fill="rgb(252,111,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="133.01" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_direct_values (527 samples, 0.34%)</title><rect x="393.2" y="145" width="4.0" height="15.0" fill="rgb(231,108,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="396.16" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnWriter::finalize (27 samples, 0.02%)</title><rect x="573.4" y="145" width="0.2" height="15.0" fill="rgb(222,123,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.36" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (15 samples, 0.01%)</title><rect x="871.1" y="97" width="0.1" height="15.0" fill="rgb(222,129,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="874.08" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::_init (20 samples, 0.01%)</title><rect x="1188.7" y="209" width="0.2" height="15.0" fill="rgb(213,21,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.71" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (385 samples, 0.25%)</title><rect x="218.7" y="161" width="2.9" height="15.0" fill="rgb(221,130,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="221.72" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (29 samples, 0.02%)</title><rect x="867.2" y="145" width="0.2" height="15.0" fill="rgb(223,2,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="870.23" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (13,860 samples, 8.94%)</title><rect x="460.8" y="177" width="105.5" height="15.0" fill="rgb(246,153,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="463.81" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::RunLe..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LzoBinaryReader::_next_block (45 samples, 0.03%)</title><rect x="850.0" y="225" width="0.4" height="15.0" fill="rgb(213,141,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.05" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (28 samples, 0.02%)</title><rect x="271.9" y="113" width="0.2" height="15.0" fill="rgb(235,36,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="274.88" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FloatintPointColumnReader<double>::next_vector (283 samples, 0.18%)</title><rect x="266.4" y="145" width="2.2" height="15.0" fill="rgb(221,223,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="269.43" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (304 samples, 0.20%)</title><rect x="169.5" y="177" width="2.3" height="15.0" fill="rgb(228,26,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="172.49" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>get_page_from_freelist (14 samples, 0.01%)</title><rect x="125.3" y="321" width="0.1" height="15.0" fill="rgb(216,161,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="128.34" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PlanFragmentExecutor::open_internal (52 samples, 0.03%)</title><rect x="1189.3" y="241" width="0.4" height="15.0" fill="rgb(235,41,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.28" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_attach_data_to_merge_set (2,053 samples, 1.32%)</title><rect x="857.1" y="257" width="15.7" height="15.0" fill="rgb(252,84,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="860.15" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (168 samples, 0.11%)</title><rect x="666.5" y="113" width="1.3" height="15.0" fill="rgb(247,184,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="669.49" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (160 samples, 0.10%)</title><rect x="546.1" y="129" width="1.2" height="15.0" fill="rgb(235,152,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="549.10" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_init_conditions_param (67 samples, 0.04%)</title><rect x="1188.2" y="241" width="0.5" height="15.0" fill="rgb(223,47,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.17" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (383 samples, 0.25%)</title><rect x="776.1" y="193" width="2.9" height="15.0" fill="rgb(209,168,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="779.12" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::full_key_cmp (586 samples, 0.38%)</title><rect x="306.4" y="193" width="4.4" height="15.0" fill="rgb(211,179,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="309.39" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FragmentMgr::exec_actual (61 samples, 0.04%)</title><rect x="1189.2" y="289" width="0.5" height="15.0" fill="rgb(242,225,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.22" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>palo_be (155,028 samples, 100.00%)</title><rect x="10.0" y="353" width="1180.0" height="15.0" fill="rgb(227,127,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >palo_be</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>LZ4_decompress_safe (8,365 samples, 5.40%)</title><rect x="56.3" y="337" width="63.7" height="15.0" fill="rgb(210,156,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="59.31" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >LZ4_de..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OlapScanner::open (41,543 samples, 26.80%)</title><rect x="872.8" y="289" width="316.2" height="15.0" fill="rgb(244,212,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.77" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::OlapScanner::open</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (20 samples, 0.01%)</title><rect x="171.5" y="145" width="0.1" height="15.0" fill="rgb(243,160,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="174.46" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (19 samples, 0.01%)</title><rect x="147.5" y="321" width="0.2" height="15.0" fill="rgb(225,45,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="150.55" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (295 samples, 0.19%)</title><rect x="672.7" y="129" width="2.3" height="15.0" fill="rgb(211,78,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="675.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>put_page (44 samples, 0.03%)</title><rect x="51.1" y="321" width="0.3" height="15.0" fill="rgb(231,228,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="54.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>LZ4_compress_fast_extState (2,610 samples, 1.68%)</title><rect x="11.9" y="321" width="19.9" height="15.0" fill="rgb(221,133,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="14.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (908 samples, 0.59%)</title><rect x="557.3" y="129" width="6.9" height="15.0" fill="rgb(239,23,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="560.28" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (170 samples, 0.11%)</title><rect x="1158.0" y="145" width="1.3" height="15.0" fill="rgb(231,84,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1161.02" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnReader::next_vector (15 samples, 0.01%)</title><rect x="856.8" y="193" width="0.1" height="15.0" fill="rgb(229,62,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (26 samples, 0.02%)</title><rect x="1030.3" y="113" width="0.2" height="15.0" fill="rgb(208,212,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.29" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_init_params (106 samples, 0.07%)</title><rect x="1188.2" y="257" width="0.8" height="15.0" fill="rgb(249,122,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.17" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnWriter::write_batch (19,822 samples, 12.79%)</title><rect x="415.4" y="193" width="150.9" height="15.0" fill="rgb(206,52,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="418.43" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::LargeIntColu..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (2,131 samples, 1.37%)</title><rect x="1024.8" y="145" width="16.2" height="15.0" fill="rgb(206,17,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1027.78" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (39 samples, 0.03%)</title><rect x="147.8" y="337" width="0.3" height="15.0" fill="rgb(224,84,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="150.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::EqualPredicate<doris::StringValue>::evaluate (498 samples, 0.32%)</title><rect x="875.4" y="193" width="3.8" height="15.0" fill="rgb(251,209,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="878.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::allocate_memory_for_string_type (843 samples, 0.54%)</title><rect x="310.9" y="225" width="6.4" height="15.0" fill="rgb(217,52,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="313.87" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (15 samples, 0.01%)</title><rect x="200.6" y="113" width="0.1" height="15.0" fill="rgb(250,24,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="203.57" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_var_unsigned (25 samples, 0.02%)</title><rect x="414.2" y="129" width="0.2" height="15.0" fill="rgb(213,43,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="417.21" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::seek (21 samples, 0.01%)</title><rect x="1166.6" y="129" width="0.2" height="15.0" fill="rgb(236,181,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.61" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemIndex::find (77 samples, 0.05%)</title><rect x="1180.9" y="177" width="0.6" height="15.0" fill="rgb(243,31,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.90" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPTable::get_num_rows (23 samples, 0.01%)</title><rect x="851.5" y="273" width="0.1" height="15.0" fill="rgb(215,51,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="854.46" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>flush_tlb_others_ipi (43 samples, 0.03%)</title><rect x="129.1" y="321" width="0.4" height="15.0" fill="rgb(220,40,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="132.13" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (127 samples, 0.08%)</title><rect x="177.7" y="161" width="1.0" height="15.0" fill="rgb(250,113,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="180.69" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (218 samples, 0.14%)</title><rect x="1031.2" y="113" width="1.6" height="15.0" fill="rgb(226,141,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1034.17" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (29 samples, 0.02%)</title><rect x="562.3" y="81" width="0.2" height="15.0" fill="rgb(248,199,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.28" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (90 samples, 0.06%)</title><rect x="1030.5" y="113" width="0.7" height="15.0" fill="rgb(251,196,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1033.49" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (24 samples, 0.02%)</title><rect x="56.1" y="321" width="0.2" height="15.0" fill="rgb(206,64,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="59.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::ReleaseListToSpans (16 samples, 0.01%)</title><rect x="855.4" y="129" width="0.1" height="15.0" fill="rgb(254,165,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.42" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PositionEntryReader::positions (19 samples, 0.01%)</title><rect x="1162.2" y="129" width="0.2" height="15.0" fill="rgb(218,66,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.24" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>all (155,028 samples, 100%)</title><rect x="10.0" y="369" width="1180.0" height="15.0" fill="rgb(253,27,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>mnt_want_write_file (14 samples, 0.01%)</title><rect x="126.6" y="321" width="0.1" height="15.0" fill="rgb(246,107,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="129.62" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (16 samples, 0.01%)</title><rect x="135.8" y="321" width="0.2" height="15.0" fill="rgb(242,179,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="138.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (205 samples, 0.13%)</title><rect x="1147.8" y="113" width="1.6" height="15.0" fill="rgb(245,152,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.79" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<long, true>::init (25 samples, 0.02%)</title><rect x="1182.8" y="161" width="0.2" height="15.0" fill="rgb(215,198,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.81" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>ext4_da_get_block_prep (14 samples, 0.01%)</title><rect x="124.1" y="321" width="0.1" height="15.0" fill="rgb(240,29,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="127.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (28 samples, 0.02%)</title><rect x="202.5" y="129" width="0.2" height="15.0" fill="rgb(233,210,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="205.48" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>free_pcppages_bulk (18 samples, 0.01%)</title><rect x="129.5" y="321" width="0.1" height="15.0" fill="rgb(238,187,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="132.51" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__mem_cgroup_uncharge_common (29 samples, 0.02%)</title><rect x="128.3" y="321" width="0.2" height="15.0" fill="rgb(253,10,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="131.31" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::allocate (56 samples, 0.04%)</title><rect x="1128.6" y="129" width="0.4" height="15.0" fill="rgb(213,9,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1131.60" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (35 samples, 0.02%)</title><rect x="1184.9" y="129" width="0.3" height="15.0" fill="rgb(246,78,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.93" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (52 samples, 0.03%)</title><rect x="219.9" y="65" width="0.4" height="15.0" fill="rgb(230,40,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="222.88" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_write (88 samples, 0.06%)</title><rect x="149.9" y="193" width="0.7" height="15.0" fill="rgb(216,166,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="152.88" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (41 samples, 0.03%)</title><rect x="866.4" y="129" width="0.3" height="15.0" fill="rgb(239,190,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="869.40" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::seek (17 samples, 0.01%)</title><rect x="871.9" y="145" width="0.2" height="15.0" fill="rgb(242,38,18)" rx="2" ry="2" />
|
|
<text text-anchor="" x="874.94" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (91 samples, 0.06%)</title><rect x="310.2" y="177" width="0.6" height="15.0" fill="rgb(213,104,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="313.15" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (6,027 samples, 3.89%)</title><rect x="10.0" y="337" width="45.9" height="15.0" fill="rgb(249,148,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" > </text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (280 samples, 0.18%)</title><rect x="48.9" y="321" width="2.2" height="15.0" fill="rgb(218,193,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="51.93" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::FindChunk (20 samples, 0.01%)</title><rect x="1183.1" y="145" width="0.1" height="15.0" fill="rgb(220,122,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.07" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (111 samples, 0.07%)</title><rect x="392.2" y="129" width="0.8" height="15.0" fill="rgb(216,170,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="395.17" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (31 samples, 0.02%)</title><rect x="1093.2" y="129" width="0.3" height="15.0" fill="rgb(220,4,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1096.22" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_raw_spin_lock (15 samples, 0.01%)</title><rect x="140.2" y="321" width="0.1" height="15.0" fill="rgb(229,50,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="143.21" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>touch_atime (54 samples, 0.03%)</title><rect x="54.9" y="321" width="0.4" height="15.0" fill="rgb(234,147,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>generic_file_aio_read (15 samples, 0.01%)</title><rect x="1135.8" y="97" width="0.1" height="15.0" fill="rgb(205,149,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.80" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::ReleaseListToSpans (18 samples, 0.01%)</title><rect x="854.9" y="145" width="0.1" height="15.0" fill="rgb(253,21,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.89" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (204 samples, 0.13%)</title><rect x="562.6" y="113" width="1.6" height="15.0" fill="rgb(233,87,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.64" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::perform_base_compaction (23,347 samples, 15.06%)</title><rect x="148.2" y="289" width="177.7" height="15.0" fill="rgb(226,120,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.23" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::OLAPEngine::perf..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::Scavenge (38 samples, 0.02%)</title><rect x="855.7" y="193" width="0.3" height="15.0" fill="rgb(242,55,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.72" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (21 samples, 0.01%)</title><rect x="685.6" y="129" width="0.2" height="15.0" fill="rgb(228,69,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="688.64" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnWriter::write (587 samples, 0.38%)</title><rect x="218.4" y="177" width="4.5" height="15.0" fill="rgb(205,104,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="221.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>do_sync_read (21 samples, 0.01%)</title><rect x="42.8" y="321" width="0.1" height="15.0" fill="rgb(210,50,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="45.76" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::CumulativeCompaction::run (67,702 samples, 43.67%)</title><rect x="326.1" y="273" width="515.4" height="15.0" fill="rgb(249,188,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="329.14" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::CumulativeCompaction::run</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (167 samples, 0.11%)</title><rect x="220.3" y="145" width="1.3" height="15.0" fill="rgb(232,74,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="223.31" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<short, true>::next_vector (3,582 samples, 2.31%)</title><rect x="1063.6" y="161" width="27.3" height="15.0" fill="rgb(251,46,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1066.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::allocate_memory_for_string_type (91 samples, 0.06%)</title><rect x="829.8" y="225" width="0.7" height="15.0" fill="rgb(211,196,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="832.85" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StringColumnDirectReader::next_vector (349 samples, 0.23%)</title><rect x="869.0" y="145" width="2.7" height="15.0" fill="rgb(234,137,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="872.02" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_values (409 samples, 0.26%)</title><rect x="199.8" y="161" width="3.1" height="15.0" fill="rgb(234,148,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="202.81" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::finalize (433 samples, 0.28%)</title><rect x="570.3" y="193" width="3.3" height="15.0" fill="rgb(219,188,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="573.32" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::write_batch (74 samples, 0.05%)</title><rect x="848.9" y="225" width="0.5" height="15.0" fill="rgb(227,1,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.86" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (113 samples, 0.07%)</title><rect x="866.1" y="145" width="0.8" height="15.0" fill="rgb(229,139,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="869.06" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TExecPlanFragmentParams::read (23 samples, 0.01%)</title><rect x="842.4" y="177" width="0.2" height="15.0" fill="rgb(222,216,18)" rx="2" ry="2" />
|
|
<text text-anchor="" x="845.42" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (592 samples, 0.38%)</title><rect x="699.6" y="97" width="4.5" height="15.0" fill="rgb(221,162,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="702.62" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (16 samples, 0.01%)</title><rect x="54.8" y="321" width="0.1" height="15.0" fill="rgb(254,123,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.78" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::_Rb_tree<doris::StringValue, doris::StringValue, std::_Identity<doris::StringValue>, std::less<doris::StringValue>, std::allocator<doris::StringValue> >::find (259 samples, 0.17%)</title><rect x="852.0" y="337" width="2.0" height="15.0" fill="rgb(218,102,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="855.04" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (592 samples, 0.38%)</title><rect x="408.9" y="161" width="4.5" height="15.0" fill="rgb(243,179,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="411.88" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (26 samples, 0.02%)</title><rect x="854.8" y="177" width="0.2" height="15.0" fill="rgb(215,19,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.83" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PriorityThreadPool::work_thread (43,966 samples, 28.36%)</title><rect x="854.5" y="321" width="334.7" height="15.0" fill="rgb(249,116,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.52" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::PriorityThreadPool::work_thread</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (38 samples, 0.02%)</title><rect x="413.9" y="129" width="0.3" height="15.0" fill="rgb(222,199,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="416.92" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::attached_by (31,819 samples, 20.52%)</title><rect x="328.1" y="225" width="242.2" height="15.0" fill="rgb(251,101,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="331.12" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::ColumnDataWriter::attache..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (19 samples, 0.01%)</title><rect x="573.4" y="129" width="0.1" height="15.0" fill="rgb(232,161,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.39" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (99 samples, 0.06%)</title><rect x="140.7" y="321" width="0.8" height="15.0" fill="rgb(208,17,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="143.74" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (26 samples, 0.02%)</title><rect x="1087.3" y="113" width="0.2" height="15.0" fill="rgb(212,64,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1090.33" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (21 samples, 0.01%)</title><rect x="872.9" y="161" width="0.2" height="15.0" fill="rgb(219,140,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (25 samples, 0.02%)</title><rect x="1093.3" y="113" width="0.2" height="15.0" fill="rgb(239,103,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1096.27" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (597 samples, 0.39%)</title><rect x="211.8" y="161" width="4.5" height="15.0" fill="rgb(243,167,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="214.77" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::InListPredicate<doris::StringValue>::evaluate (15,540 samples, 10.02%)</title><rect x="879.2" y="193" width="118.3" height="15.0" fill="rgb(221,44,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="882.18" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::InListP..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::seek (19 samples, 0.01%)</title><rect x="1165.3" y="145" width="0.1" height="15.0" fill="rgb(253,158,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.28" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (21 samples, 0.01%)</title><rect x="554.7" y="81" width="0.1" height="15.0" fill="rgb(236,165,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="557.67" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (105 samples, 0.07%)</title><rect x="143.0" y="321" width="0.8" height="15.0" fill="rgb(223,32,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="145.97" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (236 samples, 0.15%)</title><rect x="10.1" y="321" width="1.8" height="15.0" fill="rgb(252,196,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="13.11" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StringColumnDirectReader::next_vector (306 samples, 0.20%)</title><rect x="276.3" y="129" width="2.4" height="15.0" fill="rgb(238,223,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="279.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FrontendServiceClient::send_report (34 samples, 0.02%)</title><rect x="850.8" y="273" width="0.3" height="15.0" fill="rgb(248,66,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.84" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::seek (75 samples, 0.05%)</title><rect x="1166.0" y="145" width="0.5" height="15.0" fill="rgb(250,174,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.97" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (37 samples, 0.02%)</title><rect x="142.1" y="337" width="0.3" height="15.0" fill="rgb(249,72,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="145.10" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (904 samples, 0.58%)</title><rect x="209.6" y="177" width="6.9" height="15.0" fill="rgb(237,168,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="212.64" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_find_position_by_short_key (94 samples, 0.06%)</title><rect x="1180.8" y="209" width="0.7" height="15.0" fill="rgb(214,105,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.81" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::~OutStream (34 samples, 0.02%)</title><rect x="222.9" y="177" width="0.3" height="15.0" fill="rgb(207,37,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="225.90" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::seek (44 samples, 0.03%)</title><rect x="1161.2" y="145" width="0.4" height="15.0" fill="rgb(238,17,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.23" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::pair<std::__detail::_Node_iterator<doris::WrapperField const*, true, true>, bool> std::_Hashtable<doris::WrapperField const*, doris::WrapperField const*, std::allocator<doris::WrapperField const*>, std::__detail::_Identity, doris::FieldEqual, doris::FieldHash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<true, true, true> >::_M_insert<doris::WrapperField const*, std::__detail::_AllocNode<std::allocator<std::__detail::_Hash_node<doris::WrapperField const*, true> > > > (25 samples, 0.02%)</title><rect x="1188.4" y="193" width="0.2" height="15.0" fill="rgb(249,185,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::pair<std::_Rb_tree_iterator<std::pair<long const, doris::TTablet> >, bool> std::_Rb_tree<long, std::pair<long const, doris::TTablet>, std::_Select1st<std::pair<long const, doris::TTablet> >, std::less<long>, std::allocator<std::pair<long const, doris::TTablet> > >::_M_insert_unique<std::pair<long, doris::TTablet> > (22 samples, 0.01%)</title><rect x="851.7" y="289" width="0.2" height="15.0" fill="rgb(233,83,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="854.72" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VectorizedRowBatch::dump_to_row_block (1,512 samples, 0.98%)</title><rect x="1167.0" y="193" width="11.5" height="15.0" fill="rgb(226,61,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1170.04" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>LZ4_decompress_safe (20 samples, 0.01%)</title><rect x="1138.2" y="97" width="0.1" height="15.0" fill="rgb(244,179,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1141.19" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnWriter::finalize (29 samples, 0.02%)</title><rect x="573.4" y="161" width="0.2" height="15.0" fill="rgb(209,188,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.36" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_values (2,810 samples, 1.81%)</title><rect x="544.7" y="161" width="21.4" height="15.0" fill="rgb(233,212,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="547.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (72 samples, 0.05%)</title><rect x="1063.0" y="129" width="0.5" height="15.0" fill="rgb(213,157,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1065.97" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (158 samples, 0.10%)</title><rect x="1149.4" y="113" width="1.2" height="15.0" fill="rgb(231,171,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1152.35" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (20 samples, 0.01%)</title><rect x="392.0" y="129" width="0.2" height="15.0" fill="rgb(214,100,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="395.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ExecNode::create_tree_helper (32 samples, 0.02%)</title><rect x="841.8" y="113" width="0.3" height="15.0" fill="rgb(231,126,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.82" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (22 samples, 0.01%)</title><rect x="674.8" y="97" width="0.1" height="15.0" fill="rgb(232,190,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="677.75" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::NewPartitionedAggregationNode::get_next (15 samples, 0.01%)</title><rect x="1189.5" y="209" width="0.2" height="15.0" fill="rgb(251,96,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (231 samples, 0.15%)</title><rect x="1146.0" y="97" width="1.8" height="15.0" fill="rgb(247,206,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1149.04" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::ReleaseToCentralCache (27 samples, 0.02%)</title><rect x="855.3" y="161" width="0.2" height="15.0" fill="rgb(215,52,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>page_remove_rmap (14 samples, 0.01%)</title><rect x="129.9" y="321" width="0.1" height="15.0" fill="rgb(254,156,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="132.90" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::_Rb_tree<doris::StringValue, doris::StringValue, std::_Identity<doris::StringValue>, std::less<doris::StringValue>, std::allocator<doris::StringValue> >::find (13,926 samples, 8.98%)</title><rect x="891.2" y="177" width="106.0" height="15.0" fill="rgb(236,146,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="894.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::_Rb_tre..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (84 samples, 0.05%)</title><rect x="868.3" y="145" width="0.6" height="15.0" fill="rgb(238,97,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="871.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPTable::release_data_sources (185 samples, 0.12%)</title><rect x="854.7" y="241" width="1.4" height="15.0" fill="rgb(236,176,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.69" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnWriter::create_row_index_entry (63 samples, 0.04%)</title><rect x="165.9" y="193" width="0.5" height="15.0" fill="rgb(215,157,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="168.91" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>system_call_after_swapgs (60 samples, 0.04%)</title><rect x="54.3" y="321" width="0.5" height="15.0" fill="rgb(236,191,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="57.30" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (57 samples, 0.04%)</title><rect x="1062.5" y="97" width="0.5" height="15.0" fill="rgb(252,56,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1065.54" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (476 samples, 0.31%)</title><rect x="393.6" y="129" width="3.6" height="15.0" fill="rgb(219,124,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="396.55" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_delta_values (22 samples, 0.01%)</title><rect x="216.3" y="145" width="0.2" height="15.0" fill="rgb(214,117,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="219.33" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_direct_values (1,028 samples, 0.66%)</title><rect x="548.3" y="145" width="7.8" height="15.0" fill="rgb(237,70,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.32" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::get_next_block (10,553 samples, 6.81%)</title><rect x="663.3" y="209" width="80.3" height="15.0" fill="rgb(253,66,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="666.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::Co..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::get_block (22,235 samples, 14.34%)</title><rect x="997.8" y="193" width="169.2" height="15.0" fill="rgb(210,71,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1000.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::SegmentReader:..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<int, true>::next_vector (2,822 samples, 1.82%)</title><rect x="1019.6" y="161" width="21.5" height="15.0" fill="rgb(227,204,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1022.58" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FloatintPointColumnReader<double>::next_vector (155 samples, 0.10%)</title><rect x="864.6" y="161" width="1.2" height="15.0" fill="rgb(227,11,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="867.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::cmp (217 samples, 0.14%)</title><rect x="1186.4" y="209" width="1.7" height="15.0" fill="rgb(246,162,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::create (14 samples, 0.01%)</title><rect x="562.5" y="97" width="0.1" height="15.0" fill="rgb(237,46,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.53" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VectorizedRowBatch::dump_to_row_block (1,870 samples, 1.21%)</title><rect x="278.8" y="177" width="14.2" height="15.0" fill="rgb(247,159,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="281.79" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__memcmp_sse4_1 (14 samples, 0.01%)</title><rect x="849.6" y="225" width="0.1" height="15.0" fill="rgb(225,172,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="852.62" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::clear (17 samples, 0.01%)</title><rect x="1186.3" y="209" width="0.1" height="15.0" fill="rgb(205,188,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1189.26" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (35 samples, 0.02%)</title><rect x="1184.9" y="145" width="0.3" height="15.0" fill="rgb(210,177,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.93" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::~SegmentWriter (34 samples, 0.02%)</title><rect x="222.9" y="209" width="0.3" height="15.0" fill="rgb(244,139,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="225.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (18 samples, 0.01%)</title><rect x="1128.9" y="49" width="0.1" height="15.0" fill="rgb(217,176,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1131.89" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<long, true>::write_batch (3,196 samples, 2.06%)</title><rect x="178.7" y="193" width="24.3" height="15.0" fill="rgb(253,159,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="181.71" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_short_repeat_values (72 samples, 0.05%)</title><rect x="202.3" y="145" width="0.5" height="15.0" fill="rgb(207,148,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="205.30" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (51 samples, 0.03%)</title><rect x="200.3" y="129" width="0.4" height="15.0" fill="rgb(221,186,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="203.30" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::_base_compaction_thread_callback (23,349 samples, 15.06%)</title><rect x="148.2" y="305" width="177.8" height="15.0" fill="rgb(211,140,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::OLAPEngine::_bas..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (746 samples, 0.48%)</title><rect x="823.8" y="177" width="5.7" height="15.0" fill="rgb(237,176,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="826.84" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>copy_user_generic_string (92 samples, 0.06%)</title><rect x="1136.7" y="81" width="0.8" height="15.0" fill="rgb(240,55,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.75" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (20 samples, 0.01%)</title><rect x="136.7" y="321" width="0.1" height="15.0" fill="rgb(220,102,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="139.66" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnReader::init (36 samples, 0.02%)</title><rect x="1183.1" y="161" width="0.2" height="15.0" fill="rgb(214,72,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (138 samples, 0.09%)</title><rect x="133.5" y="321" width="1.0" height="15.0" fill="rgb(209,133,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="136.49" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (185 samples, 0.12%)</title><rect x="1136.7" y="97" width="1.4" height="15.0" fill="rgb(222,151,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.65" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<short, true>::write_batch (22 samples, 0.01%)</title><rect x="136.3" y="337" width="0.2" height="15.0" fill="rgb(225,115,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="139.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::~Reader (212 samples, 0.14%)</title><rect x="854.6" y="273" width="1.6" height="15.0" fill="rgb(229,38,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>copy_user_generic_string (117 samples, 0.08%)</title><rect x="123.0" y="321" width="0.9" height="15.0" fill="rgb(223,145,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="126.02" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VectorizedRowBatch::VectorizedRowBatch (19 samples, 0.01%)</title><rect x="873.3" y="225" width="0.1" height="15.0" fill="rgb(209,174,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.26" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (43 samples, 0.03%)</title><rect x="414.4" y="129" width="0.4" height="15.0" fill="rgb(252,120,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="417.45" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPTable::get_data_size (27 samples, 0.02%)</title><rect x="850.5" y="289" width="0.3" height="15.0" fill="rgb(227,80,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.55" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (879 samples, 0.57%)</title><rect x="549.5" y="129" width="6.6" height="15.0" fill="rgb(242,3,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.45" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>pthread_cond_wait@@GLIBC_2.3.2 (364 samples, 0.23%)</title><rect x="845.5" y="337" width="2.7" height="15.0" fill="rgb(236,53,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="848.46" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::create (36 samples, 0.02%)</title><rect x="1184.9" y="161" width="0.3" height="15.0" fill="rgb(211,120,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>clear_page_c_e (16 samples, 0.01%)</title><rect x="118.9" y="321" width="0.1" height="15.0" fill="rgb(251,97,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="121.86" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::_Rb_tree<doris::StringValue, doris::StringValue, std::_Identity<doris::StringValue>, std::less<doris::StringValue>, std::allocator<doris::StringValue> >::find (856 samples, 0.55%)</title><rect x="858.0" y="177" width="6.5" height="15.0" fill="rgb(208,203,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="861.01" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (25 samples, 0.02%)</title><rect x="415.0" y="129" width="0.2" height="15.0" fill="rgb(228,161,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="418.01" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_ZN5doris10ColumnData10_get_blockEbi.constprop.168 (68 samples, 0.04%)</title><rect x="856.6" y="241" width="0.5" height="15.0" fill="rgb(254,7,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.62" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>lzo1x_decompress_safe (45 samples, 0.03%)</title><rect x="850.0" y="193" width="0.4" height="15.0" fill="rgb(208,171,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.05" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::detail::SamplerCollector::run (61 samples, 0.04%)</title><rect x="848.3" y="305" width="0.5" height="15.0" fill="rgb(225,180,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.33" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (17 samples, 0.01%)</title><rect x="554.7" y="33" width="0.1" height="15.0" fill="rgb(208,59,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="557.70" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::report_all_tablets_info (104 samples, 0.07%)</title><rect x="851.1" y="305" width="0.8" height="15.0" fill="rgb(247,85,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="854.10" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (432 samples, 0.28%)</title><rect x="1033.6" y="113" width="3.3" height="15.0" fill="rgb(223,8,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1036.57" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (19 samples, 0.01%)</title><rect x="222.8" y="161" width="0.1" height="15.0" fill="rgb(240,21,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="225.76" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (147 samples, 0.09%)</title><rect x="220.5" y="129" width="1.1" height="15.0" fill="rgb(225,41,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="223.46" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (21 samples, 0.01%)</title><rect x="872.9" y="177" width="0.2" height="15.0" fill="rgb(229,194,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (49 samples, 0.03%)</title><rect x="141.6" y="337" width="0.4" height="15.0" fill="rgb(210,165,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="144.59" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_nanosleep (89 samples, 0.06%)</title><rect x="164.3" y="193" width="0.6" height="15.0" fill="rgb(214,18,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="167.27" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (168 samples, 0.11%)</title><rect x="1148.1" y="97" width="1.3" height="15.0" fill="rgb(236,82,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1151.08" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (22 samples, 0.01%)</title><rect x="1052.2" y="113" width="0.2" height="15.0" fill="rgb(227,2,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1055.22" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TPlanFragment::read (20 samples, 0.01%)</title><rect x="842.4" y="161" width="0.2" height="15.0" fill="rgb(245,103,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="845.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ExecNode::eval_conjuncts (19 samples, 0.01%)</title><rect x="856.3" y="273" width="0.1" height="15.0" fill="rgb(240,161,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.29" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::attached_by (77 samples, 0.05%)</title><rect x="848.8" y="241" width="0.6" height="15.0" fill="rgb(239,105,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.84" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::InsertRange (22 samples, 0.01%)</title><rect x="854.9" y="161" width="0.1" height="15.0" fill="rgb(223,137,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.86" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::estimate_segment_size (1,790 samples, 1.15%)</title><rect x="150.6" y="209" width="13.6" height="15.0" fill="rgb(243,67,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="153.61" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StreamIndexReader::init (18 samples, 0.01%)</title><rect x="1182.0" y="161" width="0.1" height="15.0" fill="rgb(251,125,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.99" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>get_pageblock_flags_group (14 samples, 0.01%)</title><rect x="129.6" y="321" width="0.2" height="15.0" fill="rgb(217,66,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="132.65" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_patched_base_values (14 samples, 0.01%)</title><rect x="273.9" y="113" width="0.1" height="15.0" fill="rgb(224,148,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="276.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::find_closet_num_bits (15 samples, 0.01%)</title><rect x="543.2" y="145" width="0.2" height="15.0" fill="rgb(210,170,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="546.24" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (145 samples, 0.09%)</title><rect x="1089.1" y="113" width="1.1" height="15.0" fill="rgb(252,158,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1092.09" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (63 samples, 0.04%)</title><rect x="548.5" y="129" width="0.5" height="15.0" fill="rgb(239,4,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.53" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__memcmp_sse4_1 (114 samples, 0.07%)</title><rect x="265.2" y="209" width="0.9" height="15.0" fill="rgb(210,115,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="268.24" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TTabletInfo::write (21 samples, 0.01%)</title><rect x="850.9" y="209" width="0.1" height="15.0" fill="rgb(226,117,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.87" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::_init (17 samples, 0.01%)</title><rect x="873.7" y="177" width="0.2" height="15.0" fill="rgb(221,66,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.73" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TReportRequest::write (25 samples, 0.02%)</title><rect x="850.8" y="241" width="0.2" height="15.0" fill="rgb(212,125,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.84" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (18 samples, 0.01%)</title><rect x="705.2" y="145" width="0.2" height="15.0" fill="rgb(221,119,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="708.24" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (47 samples, 0.03%)</title><rect x="132.0" y="321" width="0.4" height="15.0" fill="rgb(242,12,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="135.03" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (1,818 samples, 1.17%)</title><rect x="357.0" y="193" width="13.8" height="15.0" fill="rgb(227,1,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="359.96" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_patched_base_values (1,058 samples, 0.68%)</title><rect x="556.1" y="145" width="8.1" height="15.0" fill="rgb(237,226,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="559.14" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (1,947 samples, 1.26%)</title><rect x="1048.8" y="145" width="14.8" height="15.0" fill="rgb(237,0,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1051.77" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (195 samples, 0.13%)</title><rect x="177.2" y="177" width="1.5" height="15.0" fill="rgb(249,151,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="180.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bthread::TaskGroup::task_runner (169 samples, 0.11%)</title><rect x="841.6" y="321" width="1.3" height="15.0" fill="rgb(224,178,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_agg_key_next_row (2,135 samples, 1.38%)</title><rect x="856.5" y="273" width="16.3" height="15.0" fill="rgb(225,38,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.52" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnReader::seek (19 samples, 0.01%)</title><rect x="1165.3" y="161" width="0.1" height="15.0" fill="rgb(226,212,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.28" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (17 samples, 0.01%)</title><rect x="872.4" y="177" width="0.2" height="15.0" fill="rgb(249,58,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VectorizedRowBatch::dump_to_row_block (4,670 samples, 3.01%)</title><rect x="705.4" y="177" width="35.5" height="15.0" fill="rgb(243,155,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="708.40" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dor..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (2,016 samples, 1.30%)</title><rect x="382.0" y="177" width="15.3" height="15.0" fill="rgb(224,86,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="385.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StreamIndexWriter::add_index_entry (25 samples, 0.02%)</title><rect x="217.3" y="193" width="0.2" height="15.0" fill="rgb(230,222,18)" rx="2" ry="2" />
|
|
<text text-anchor="" x="220.31" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OlapScanNode::scanner_thread (43,963 samples, 28.36%)</title><rect x="854.5" y="305" width="334.7" height="15.0" fill="rgb(238,133,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.54" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::OlapScanNode::scanner_thread</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (61 samples, 0.04%)</title><rect x="146.1" y="321" width="0.5" height="15.0" fill="rgb(242,226,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="149.13" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (1,232 samples, 0.79%)</title><rect x="1129.0" y="129" width="9.4" height="15.0" fill="rgb(219,19,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1132.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_ZN5doris10ColumnData10_get_blockEbi.constprop.168 (14 samples, 0.01%)</title><rect x="829.5" y="177" width="0.1" height="15.0" fill="rgb(213,178,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="832.54" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_values (23 samples, 0.01%)</title><rect x="460.6" y="177" width="0.2" height="15.0" fill="rgb(243,129,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="463.63" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__might_sleep (20 samples, 0.01%)</title><rect x="121.7" y="321" width="0.2" height="15.0" fill="rgb(233,125,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="124.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PlanFragmentExecutor::get_next_internal (16 samples, 0.01%)</title><rect x="1189.5" y="225" width="0.2" height="15.0" fill="rgb(218,6,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.54" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::detail::SamplerCollector::sampling_thread (67 samples, 0.04%)</title><rect x="848.3" y="321" width="0.5" height="15.0" fill="rgb(247,35,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OlapScanner::close (217 samples, 0.14%)</title><rect x="854.6" y="289" width="1.6" height="15.0" fill="rgb(254,170,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="857.57" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (91,100 samples, 58.76%)</title><rect x="148.2" y="321" width="693.4" height="15.0" fill="rgb(216,57,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.16" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" > </text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (685 samples, 0.44%)</title><rect x="1012.6" y="145" width="5.2" height="15.0" fill="rgb(207,218,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1015.58" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (2,546 samples, 1.64%)</title><rect x="685.8" y="129" width="19.4" height="15.0" fill="rgb(205,34,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="688.84" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (33 samples, 0.02%)</title><rect x="548.0" y="113" width="0.3" height="15.0" fill="rgb(217,68,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="551.01" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>memset (21 samples, 0.01%)</title><rect x="843.0" y="337" width="0.1" height="15.0" fill="rgb(237,11,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="845.95" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowBlock::init (34 samples, 0.02%)</title><rect x="872.8" y="225" width="0.3" height="15.0" fill="rgb(205,214,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.84" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::write_batch (7,502 samples, 4.84%)</title><rect x="165.8" y="209" width="57.1" height="15.0" fill="rgb(221,225,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="168.80" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris:..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (59 samples, 0.04%)</title><rect x="1162.5" y="129" width="0.5" height="15.0" fill="rgb(225,87,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.53" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (156 samples, 0.10%)</title><rect x="1087.5" y="113" width="1.2" height="15.0" fill="rgb(235,35,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1090.53" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>posix_fadvise64 (280 samples, 0.18%)</title><rect x="843.2" y="337" width="2.1" height="15.0" fill="rgb(223,217,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="846.20" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_load_index (61 samples, 0.04%)</title><rect x="1181.7" y="177" width="0.5" height="15.0" fill="rgb(228,38,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.70" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_delta_values (86 samples, 0.06%)</title><rect x="200.1" y="145" width="0.7" height="15.0" fill="rgb(227,159,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="203.11" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::_spill (29 samples, 0.02%)</title><rect x="554.6" y="113" width="0.3" height="15.0" fill="rgb(245,227,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="557.64" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (168 samples, 0.11%)</title><rect x="1039.6" y="113" width="1.2" height="15.0" fill="rgb(206,49,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1042.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::init (110 samples, 0.07%)</title><rect x="1181.7" y="193" width="0.8" height="15.0" fill="rgb(207,161,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (686 samples, 0.44%)</title><rect x="692.6" y="113" width="5.3" height="15.0" fill="rgb(226,32,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="695.65" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>clear_page_c_e (26 samples, 0.02%)</title><rect x="1172.7" y="177" width="0.2" height="15.0" fill="rgb(251,76,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1175.65" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::perform_cumulative_compaction (67,733 samples, 43.69%)</title><rect x="326.0" y="289" width="515.5" height="15.0" fill="rgb(247,162,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="328.95" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::OLAPEngine::perform_cumulative_compaction</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (26 samples, 0.02%)</title><rect x="674.3" y="113" width="0.2" height="15.0" fill="rgb(226,197,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="677.33" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (26 samples, 0.02%)</title><rect x="562.3" y="33" width="0.2" height="15.0" fill="rgb(229,209,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.29" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (1,416 samples, 0.91%)</title><rect x="1080.1" y="145" width="10.7" height="15.0" fill="rgb(207,219,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1083.05" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::MemPool::free_all (15 samples, 0.01%)</title><rect x="997.7" y="193" width="0.1" height="15.0" fill="rgb(221,55,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1000.67" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_agg_key_next_row (147 samples, 0.09%)</title><rect x="138.9" y="337" width="1.1" height="15.0" fill="rgb(235,98,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="141.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPTable::get_missing_versions_with_header_locked (19 samples, 0.01%)</title><rect x="851.3" y="273" width="0.2" height="15.0" fill="rgb(237,226,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="854.32" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::Scavenge (19 samples, 0.01%)</title><rect x="1173.0" y="161" width="0.2" height="15.0" fill="rgb(237,73,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1176.01" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (98 samples, 0.06%)</title><rect x="405.2" y="177" width="0.7" height="15.0" fill="rgb(229,97,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="408.19" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PlanFragmentExecutor::prepare (83 samples, 0.05%)</title><rect x="841.7" y="145" width="0.7" height="15.0" fill="rgb(240,75,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.75" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (31 samples, 0.02%)</title><rect x="703.9" y="81" width="0.2" height="15.0" fill="rgb(228,163,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="706.89" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (21 samples, 0.01%)</title><rect x="554.7" y="65" width="0.1" height="15.0" fill="rgb(236,73,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="557.67" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>vfs_read (52 samples, 0.03%)</title><rect x="55.5" y="321" width="0.4" height="15.0" fill="rgb(242,192,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="58.48" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_write (914 samples, 0.59%)</title><rect x="120.7" y="337" width="7.0" height="15.0" fill="rgb(226,57,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_agg_key_next_row (30 samples, 0.02%)</title><rect x="840.9" y="241" width="0.2" height="15.0" fill="rgb(237,18,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="843.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (21 samples, 0.01%)</title><rect x="1128.9" y="81" width="0.1" height="15.0" fill="rgb(244,162,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1131.86" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnWriter::write_batch (702 samples, 0.45%)</title><rect x="217.6" y="193" width="5.3" height="15.0" fill="rgb(227,218,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="220.56" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::get_all_root_path_info (36 samples, 0.02%)</title><rect x="850.5" y="305" width="0.3" height="15.0" fill="rgb(234,197,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.48" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ExecNode::create_tree_helper (15 samples, 0.01%)</title><rect x="841.8" y="97" width="0.1" height="15.0" fill="rgb(234,55,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.83" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (67 samples, 0.04%)</title><rect x="1147.3" y="81" width="0.5" height="15.0" fill="rgb(212,160,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1150.28" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (35 samples, 0.02%)</title><rect x="556.3" y="129" width="0.3" height="15.0" fill="rgb(234,27,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="559.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (328 samples, 0.21%)</title><rect x="740.9" y="177" width="2.5" height="15.0" fill="rgb(251,16,15)" rx="2" ry="2" />
|
|
<text text-anchor="" x="743.94" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__clone (17 samples, 0.01%)</title><rect x="32.6" y="321" width="0.1" height="15.0" fill="rgb(227,51,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="35.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_write_delta_values (336 samples, 0.22%)</title><rect x="545.8" y="145" width="2.5" height="15.0" fill="rgb(243,100,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="548.76" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::PassiveStatus<long>::SeriesSampler::take_sample (22 samples, 0.01%)</title><rect x="848.4" y="289" width="0.2" height="15.0" fill="rgb(223,170,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.40" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (15 samples, 0.01%)</title><rect x="845.3" y="337" width="0.2" height="15.0" fill="rgb(232,33,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="848.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>generic_file_aio_read (162 samples, 0.10%)</title><rect x="46.1" y="321" width="1.3" height="15.0" fill="rgb(208,83,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="49.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_ints (45 samples, 0.03%)</title><rect x="547.5" y="129" width="0.3" height="15.0" fill="rgb(253,82,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="550.47" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FloatintPointColumnReader<double>::next_vector (44 samples, 0.03%)</title><rect x="134.6" y="337" width="0.4" height="15.0" fill="rgb(241,45,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="137.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::NewPartitionedAggregationNode::prepare (23 samples, 0.01%)</title><rect x="842.1" y="129" width="0.1" height="15.0" fill="rgb(254,136,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="845.06" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (329 samples, 0.21%)</title><rect x="290.5" y="161" width="2.5" height="15.0" fill="rgb(237,37,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="293.52" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::_Rb_tree_increment (26 samples, 0.02%)</title><rect x="223.2" y="209" width="0.2" height="15.0" fill="rgb(222,137,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="226.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::write_var_unsigned (67 samples, 0.04%)</title><rect x="547.8" y="129" width="0.5" height="15.0" fill="rgb(247,134,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="550.81" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>copy_user_generic_string (14 samples, 0.01%)</title><rect x="331.7" y="177" width="0.1" height="15.0" fill="rgb(210,29,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="334.71" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (26 samples, 0.02%)</title><rect x="866.7" y="129" width="0.2" height="15.0" fill="rgb(240,144,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="869.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (143 samples, 0.09%)</title><rect x="673.2" y="113" width="1.1" height="15.0" fill="rgb(235,187,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="676.24" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TPlan::read (19 samples, 0.01%)</title><rect x="842.4" y="145" width="0.2" height="15.0" fill="rgb(231,130,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="845.43" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Merger::merge (23,317 samples, 15.04%)</title><rect x="148.3" y="241" width="177.5" height="15.0" fill="rgb(227,20,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.33" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::Merger::merge</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::get_next_block (3,654 samples, 2.36%)</title><rect x="266.1" y="209" width="27.8" height="15.0" fill="rgb(252,125,16)" rx="2" ry="2" />
|
|
<text text-anchor="" x="269.11" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_ZN5doris10ColumnData10_get_blockEbi.constprop.168 (3,645 samples, 2.35%)</title><rect x="266.1" y="193" width="27.8" height="15.0" fill="rgb(210,51,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="269.14" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (17 samples, 0.01%)</title><rect x="866.3" y="129" width="0.1" height="15.0" fill="rgb(208,43,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="869.27" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>strncmp@plt (33 samples, 0.02%)</title><rect x="997.2" y="177" width="0.3" height="15.0" fill="rgb(207,106,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1000.21" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<long, true>::next_vector (24 samples, 0.02%)</title><rect x="135.2" y="337" width="0.2" height="15.0" fill="rgb(254,160,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="138.19" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (959 samples, 0.62%)</title><rect x="1150.7" y="129" width="7.3" height="15.0" fill="rgb(228,118,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1153.66" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_seek_to_block (548 samples, 0.35%)</title><rect x="1181.5" y="209" width="4.2" height="15.0" fill="rgb(247,15,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1184.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (650 samples, 0.42%)</title><rect x="1142.8" y="113" width="5.0" height="15.0" fill="rgb(253,90,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1145.85" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_fill_compressed (23 samples, 0.01%)</title><rect x="1166.3" y="129" width="0.2" height="15.0" fill="rgb(232,188,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.31" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (77 samples, 0.05%)</title><rect x="295.9" y="193" width="0.6" height="15.0" fill="rgb(244,114,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="298.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::next (2,099 samples, 1.35%)</title><rect x="223.4" y="225" width="16.0" height="15.0" fill="rgb(232,215,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="226.42" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (232 samples, 0.15%)</title><rect x="1017.8" y="145" width="1.8" height="15.0" fill="rgb(224,165,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1020.80" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::detail::ReducerSampler<bvar::detail::Percentile, bvar::detail::PercentileSamples<254ul>, bvar::detail::Percentile::AddPercentileSamples, bvar::detail::VoidOp>::take_sample (18 samples, 0.01%)</title><rect x="848.6" y="289" width="0.2" height="15.0" fill="rgb(209,69,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.63" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::seek (26 samples, 0.02%)</title><rect x="1161.7" y="129" width="0.2" height="15.0" fill="rgb(213,199,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::find_closet_num_bits (15 samples, 0.01%)</title><rect x="202.9" y="161" width="0.1" height="15.0" fill="rgb(232,229,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="205.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StringColumnDirectReader::next_vector (8,135 samples, 5.25%)</title><rect x="1096.1" y="145" width="61.9" height="15.0" fill="rgb(236,156,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1099.10" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris:..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (116 samples, 0.07%)</title><rect x="381.1" y="177" width="0.9" height="15.0" fill="rgb(248,113,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="384.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__rmqueue (14 samples, 0.01%)</title><rect x="33.5" y="321" width="0.1" height="15.0" fill="rgb(228,66,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="36.48" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (193 samples, 0.12%)</title><rect x="1088.7" y="129" width="1.5" height="15.0" fill="rgb(225,131,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1091.72" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (18 samples, 0.01%)</title><rect x="1057.9" y="113" width="0.2" height="15.0" fill="rgb(239,7,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1060.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnReader<doris::StringColumnDirectReader>::next_vector (8,523 samples, 5.50%)</title><rect x="1094.4" y="161" width="64.9" height="15.0" fill="rgb(222,67,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1097.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (14 samples, 0.01%)</title><rect x="396.3" y="81" width="0.1" height="15.0" fill="rgb(232,19,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="399.26" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (15 samples, 0.01%)</title><rect x="1138.4" y="129" width="0.1" height="15.0" fill="rgb(229,40,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1141.42" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_ZN5doris10ColumnData10_get_blockEbi.constprop.168 (2,032 samples, 1.31%)</title><rect x="857.2" y="209" width="15.4" height="15.0" fill="rgb(248,72,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="860.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStreamFactory::~OutStreamFactory (34 samples, 0.02%)</title><rect x="222.9" y="193" width="0.3" height="15.0" fill="rgb(230,77,36)" rx="2" ry="2" />
|
|
<text text-anchor="" x="225.90" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>bvar::detail::AgentCombiner<bvar::detail::PercentileSamples<254ul>, bvar::detail::PercentileSamples<30ul>, bvar::detail::Percentile::AddPercentileSamples>::reset_all_agents (15 samples, 0.01%)</title><rect x="848.7" y="257" width="0.1" height="15.0" fill="rgb(206,95,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write_to_file (109 samples, 0.07%)</title><rect x="572.5" y="177" width="0.8" height="15.0" fill="rgb(247,202,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="575.45" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PlanFragmentExecutor::open (54 samples, 0.03%)</title><rect x="1189.3" y="257" width="0.4" height="15.0" fill="rgb(220,208,18)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.28" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::create (31 samples, 0.02%)</title><rect x="562.3" y="97" width="0.2" height="15.0" fill="rgb(236,64,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.26" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (59 samples, 0.04%)</title><rect x="219.8" y="113" width="0.5" height="15.0" fill="rgb(248,196,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="222.83" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::init (41,542 samples, 26.80%)</title><rect x="872.8" y="273" width="316.2" height="15.0" fill="rgb(216,168,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.78" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::Reader::init</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<long, true>::next_vector (69 samples, 0.04%)</title><rect x="866.9" y="161" width="0.5" height="15.0" fill="rgb(207,40,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="869.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::NewPartitionedAggregationNode::GetRowsStreaming (14 samples, 0.01%)</title><rect x="1189.5" y="177" width="0.1" height="15.0" fill="rgb(238,214,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.54" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::get_next_block (70 samples, 0.05%)</title><rect x="856.6" y="257" width="0.5" height="15.0" fill="rgb(241,194,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.62" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (29 samples, 0.02%)</title><rect x="565.5" y="129" width="0.2" height="15.0" fill="rgb(205,15,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="568.45" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::next (105 samples, 0.07%)</title><rect x="131.6" y="337" width="0.8" height="15.0" fill="rgb(227,97,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="134.63" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::next (41 samples, 0.03%)</title><rect x="849.5" y="241" width="0.3" height="15.0" fill="rgb(242,119,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="852.47" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>futex_wait (14 samples, 0.01%)</title><rect x="845.8" y="321" width="0.1" height="15.0" fill="rgb(216,150,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="848.75" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>fget_light (15 samples, 0.01%)</title><rect x="332.1" y="177" width="0.1" height="15.0" fill="rgb(210,171,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="335.12" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (18 samples, 0.01%)</title><rect x="1183.1" y="129" width="0.1" height="15.0" fill="rgb(245,118,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1186.09" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TTablet::write (25 samples, 0.02%)</title><rect x="850.8" y="225" width="0.2" height="15.0" fill="rgb(230,201,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.84" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (52 samples, 0.03%)</title><rect x="674.5" y="113" width="0.4" height="15.0" fill="rgb(244,12,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="677.52" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (54 samples, 0.03%)</title><rect x="169.1" y="177" width="0.4" height="15.0" fill="rgb(247,46,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="172.08" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (606 samples, 0.39%)</title><rect x="666.2" y="129" width="4.6" height="15.0" fill="rgb(206,215,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="669.21" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::_init (21 samples, 0.01%)</title><rect x="873.1" y="225" width="0.2" height="15.0" fill="rgb(206,65,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.10" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnWriter::create_row_index_entry (175 samples, 0.11%)</title><rect x="355.6" y="193" width="1.4" height="15.0" fill="rgb(242,123,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="358.62" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>find_get_page (203 samples, 0.13%)</title><rect x="44.2" y="321" width="1.6" height="15.0" fill="rgb(218,224,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="47.24" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (456 samples, 0.29%)</title><rect x="1053.5" y="129" width="3.5" height="15.0" fill="rgb(245,77,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1056.52" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::~OutStream (35 samples, 0.02%)</title><rect x="573.6" y="161" width="0.3" height="15.0" fill="rgb(222,96,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="576.61" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>brpc::InputMessenger::OnNewMessages (155 samples, 0.10%)</title><rect x="841.6" y="289" width="1.2" height="15.0" fill="rgb(235,3,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.64" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (69 samples, 0.04%)</title><rect x="119.4" y="321" width="0.5" height="15.0" fill="rgb(219,154,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="122.40" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>generic_file_aio_read (17 samples, 0.01%)</title><rect x="1137.7" y="81" width="0.1" height="15.0" fill="rgb(254,4,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1140.69" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (104 samples, 0.07%)</title><rect x="396.4" y="113" width="0.8" height="15.0" fill="rgb(223,202,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="399.38" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>smp_invalidate_interrupt (23 samples, 0.01%)</title><rect x="852.9" y="321" width="0.2" height="15.0" fill="rgb(212,86,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="855.92" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (26 samples, 0.02%)</title><rect x="1093.0" y="129" width="0.2" height="15.0" fill="rgb(214,127,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1096.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::_spill (18 samples, 0.01%)</title><rect x="396.2" y="113" width="0.2" height="15.0" fill="rgb(234,8,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="399.25" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::seek (18 samples, 0.01%)</title><rect x="1162.4" y="129" width="0.1" height="15.0" fill="rgb(240,199,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.39" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FloatintPointColumnReader<double>::next_vector (2,723 samples, 1.76%)</title><rect x="998.9" y="161" width="20.7" height="15.0" fill="rgb(223,133,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1001.85" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>std::_Rb_tree_increment (36 samples, 0.02%)</title><rect x="570.0" y="209" width="0.3" height="15.0" fill="rgb(210,136,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="573.04" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::NewPartitionedAggregationNode::GetNextInternal (15 samples, 0.01%)</title><rect x="1189.5" y="193" width="0.2" height="15.0" fill="rgb(217,6,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.54" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPHeader::select_versions_to_span (19 samples, 0.01%)</title><rect x="873.5" y="225" width="0.1" height="15.0" fill="rgb(240,170,31)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_ZN5doris10ColumnData10_get_blockEbi.constprop.168 (10,521 samples, 6.79%)</title><rect x="663.4" y="193" width="80.0" height="15.0" fill="rgb(243,228,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="666.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ZN5doris..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_init_keys_param (29 samples, 0.02%)</title><rect x="1188.7" y="241" width="0.2" height="15.0" fill="rgb(221,181,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.70" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_set_segment_info (22 samples, 0.01%)</title><rect x="1182.3" y="177" width="0.2" height="15.0" fill="rgb(231,202,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_var_unsigned (118 samples, 0.08%)</title><rect x="691.7" y="97" width="0.9" height="15.0" fill="rgb(222,78,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="694.75" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (118 samples, 0.08%)</title><rect x="1135.4" y="113" width="0.9" height="15.0" fill="rgb(240,227,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1138.41" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::WrapperField::create_by_type (14 samples, 0.01%)</title><rect x="1182.0" y="129" width="0.1" height="15.0" fill="rgb(246,207,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.02" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>fsnotify (25 samples, 0.02%)</title><rect x="46.0" y="321" width="0.1" height="15.0" fill="rgb(218,66,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="48.96" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_find_position_by_full_key (37 samples, 0.02%)</title><rect x="1180.5" y="209" width="0.3" height="15.0" fill="rgb(244,119,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.52" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (41 samples, 0.03%)</title><rect x="870.4" y="129" width="0.3" height="15.0" fill="rgb(225,59,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="873.40" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_nanosleep (184 samples, 0.12%)</title><rect x="570.4" y="177" width="1.4" height="15.0" fill="rgb(236,228,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="573.36" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (111 samples, 0.07%)</title><rect x="293.0" y="177" width="0.9" height="15.0" fill="rgb(245,112,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="296.02" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (32 samples, 0.02%)</title><rect x="274.0" y="113" width="0.3" height="15.0" fill="rgb(218,139,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="277.04" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnWriter::write_batch (39 samples, 0.03%)</title><rect x="849.1" y="209" width="0.3" height="15.0" fill="rgb(249,171,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="852.13" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>mem_cgroup_del_lru_list (16 samples, 0.01%)</title><rect x="129.8" y="321" width="0.1" height="15.0" fill="rgb(211,220,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="132.77" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::get_block (1,000 samples, 0.65%)</title><rect x="864.6" y="193" width="7.6" height="15.0" fill="rgb(237,128,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="867.56" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (20 samples, 0.01%)</title><rect x="1189.8" y="321" width="0.2" height="15.0" fill="rgb(214,48,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.85" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (19 samples, 0.01%)</title><rect x="1128.9" y="65" width="0.1" height="15.0" fill="rgb(228,32,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1131.88" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (25 samples, 0.02%)</title><rect x="138.7" y="321" width="0.2" height="15.0" fill="rgb(231,175,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="141.70" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Cond::init (48 samples, 0.03%)</title><rect x="1188.2" y="209" width="0.4" height="15.0" fill="rgb(234,84,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (56 samples, 0.04%)</title><rect x="549.0" y="129" width="0.4" height="15.0" fill="rgb(254,164,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="552.01" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__mem_cgroup_uncharge_common (21 samples, 0.01%)</title><rect x="843.4" y="321" width="0.1" height="15.0" fill="rgb(252,111,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="846.37" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__block_prepare_write (30 samples, 0.02%)</title><rect x="120.9" y="321" width="0.2" height="15.0" fill="rgb(253,109,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="123.89" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::~SegmentReader (119 samples, 0.08%)</title><rect x="855.1" y="209" width="0.9" height="15.0" fill="rgb(225,203,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.10" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::init_scan_key (25 samples, 0.02%)</title><rect x="1188.7" y="225" width="0.2" height="15.0" fill="rgb(251,101,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.71" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_fill_compressed (18 samples, 0.01%)</title><rect x="1161.4" y="129" width="0.1" height="15.0" fill="rgb(223,152,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.41" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (138 samples, 0.09%)</title><rect x="144.0" y="337" width="1.0" height="15.0" fill="rgb(206,22,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="146.96" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>fget_light (101 samples, 0.07%)</title><rect x="43.1" y="321" width="0.7" height="15.0" fill="rgb(245,5,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="46.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_load_to_vectorized_row_batch (947 samples, 0.61%)</title><rect x="864.6" y="177" width="7.2" height="15.0" fill="rgb(208,7,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="867.58" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (31 samples, 0.02%)</title><rect x="1185.0" y="113" width="0.2" height="15.0" fill="rgb(245,145,52)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.96" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (19 samples, 0.01%)</title><rect x="547.3" y="129" width="0.2" height="15.0" fill="rgb(205,222,50)" rx="2" ry="2" />
|
|
<text text-anchor="" x="550.32" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::seek (58 samples, 0.04%)</title><rect x="1166.5" y="145" width="0.5" height="15.0" fill="rgb(238,128,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.54" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>finish (169 samples, 0.11%)</title><rect x="841.6" y="337" width="1.3" height="15.0" fill="rgb(236,185,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.57" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VectorizedRowBatch::dump_to_row_block (110 samples, 0.07%)</title><rect x="145.8" y="337" width="0.8" height="15.0" fill="rgb(249,37,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="148.77" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::seek (67 samples, 0.04%)</title><rect x="1161.6" y="145" width="0.5" height="15.0" fill="rgb(224,89,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.59" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>vfs_write (14 samples, 0.01%)</title><rect x="127.6" y="321" width="0.1" height="15.0" fill="rgb(228,227,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="130.57" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::FetchFromOneSpansSafe (14 samples, 0.01%)</title><rect x="396.3" y="49" width="0.1" height="15.0" fill="rgb(228,183,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="399.26" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::next (3,662 samples, 2.36%)</title><rect x="574.0" y="225" width="27.9" height="15.0" fill="rgb(241,62,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="577.04" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (35 samples, 0.02%)</title><rect x="866.4" y="113" width="0.3" height="15.0" fill="rgb(241,229,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="869.44" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>execute_native_thread_routine (91,100 samples, 58.76%)</title><rect x="148.2" y="337" width="693.4" height="15.0" fill="rgb(208,90,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.16" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >execute_native_thread_routine</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FragmentMgr::exec_plan_fragment (84 samples, 0.05%)</title><rect x="841.7" y="193" width="0.7" height="15.0" fill="rgb(220,19,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="844.74" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>unmap_vmas (31 samples, 0.02%)</title><rect x="130.2" y="321" width="0.3" height="15.0" fill="rgb(206,155,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="133.23" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RowCursor::full_key_cmp (3,630 samples, 2.34%)</title><rect x="751.4" y="209" width="27.6" height="15.0" fill="rgb(220,129,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="754.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>_ZNSt6vectorIN5doris19PositionEntryWriterESaIS1_EE17_M_realloc_insertIJRKS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_ (43 samples, 0.03%)</title><rect x="356.6" y="161" width="0.4" height="15.0" fill="rgb(209,136,20)" rx="2" ry="2" />
|
|
<text text-anchor="" x="359.63" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>kmem_cache_alloc (21 samples, 0.01%)</title><rect x="126.0" y="321" width="0.2" height="15.0" fill="rgb(236,5,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="129.05" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (24 samples, 0.02%)</title><rect x="1161.9" y="129" width="0.2" height="15.0" fill="rgb(221,58,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1164.91" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_agg_key_next_row (26,822 samples, 17.30%)</title><rect x="625.4" y="225" width="204.1" height="15.0" fill="rgb(243,3,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="628.36" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::Reader::_agg_key_ne..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::get_total_buffer_size (47 samples, 0.03%)</title><rect x="330.4" y="209" width="0.4" height="15.0" fill="rgb(241,213,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="333.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<long, true>::next_vector (700 samples, 0.45%)</title><rect x="269.0" y="145" width="5.3" height="15.0" fill="rgb(230,94,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="271.98" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (14 samples, 0.01%)</title><rect x="673.1" y="113" width="0.1" height="15.0" fill="rgb(214,3,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="676.13" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::RemoveRange (29 samples, 0.02%)</title><rect x="562.3" y="65" width="0.2" height="15.0" fill="rgb(240,77,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="565.28" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (17 samples, 0.01%)</title><rect x="1166.8" y="113" width="0.2" height="15.0" fill="rgb(216,208,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1169.83" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::seek (110 samples, 0.07%)</title><rect x="1162.1" y="145" width="0.9" height="15.0" fill="rgb(222,196,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1165.14" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::crc32 (52 samples, 0.03%)</title><rect x="165.0" y="193" width="0.4" height="15.0" fill="rgb(217,184,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="167.97" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TTablet::TTablet (17 samples, 0.01%)</title><rect x="851.7" y="273" width="0.2" height="15.0" fill="rgb(249,7,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="854.74" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::bytes_to_long_be (522 samples, 0.34%)</title><rect x="1036.9" y="129" width="3.9" height="15.0" fill="rgb(239,159,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1039.86" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::TaskWorkerPool::_push_worker_thread_callback (219 samples, 0.14%)</title><rect x="848.8" y="321" width="1.7" height="15.0" fill="rgb(233,53,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.81" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FrontendServiceClient::report (34 samples, 0.02%)</title><rect x="850.8" y="289" width="0.3" height="15.0" fill="rgb(215,28,32)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.84" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_load_to_vectorized_row_batch (40 samples, 0.03%)</title><rect x="856.7" y="209" width="0.3" height="15.0" fill="rgb(223,36,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.68" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<short, true>::write_batch (1,772 samples, 1.14%)</title><rect x="203.0" y="193" width="13.5" height="15.0" fill="rgb(245,201,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="206.04" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__memcpy_sse2_unaligned (48 samples, 0.03%)</title><rect x="219.3" y="145" width="0.4" height="15.0" fill="rgb(206,133,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="222.30" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::BinarySearchIterator std::__lower_bound<doris::BinarySearchIterator, doris::RowCursor, __gnu_cxx::__ops::_Iter_comp_val<doris::ColumnDataComparator> > (35 samples, 0.02%)</title><rect x="1180.5" y="193" width="0.3" height="15.0" fill="rgb(213,165,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1183.52" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title> (17 samples, 0.01%)</title><rect x="1017.4" y="129" width="0.1" height="15.0" fill="rgb(235,221,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1020.41" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (1,156 samples, 0.75%)</title><rect x="732.1" y="161" width="8.8" height="15.0" fill="rgb(225,4,34)" rx="2" ry="2" />
|
|
<text text-anchor="" x="735.14" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::seek (297 samples, 0.19%)</title><rect x="1163.0" y="145" width="2.3" height="15.0" fill="rgb(211,185,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1166.01" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::_load_to_vectorized_row_batch (5,484 samples, 3.54%)</title><rect x="663.6" y="161" width="41.8" height="15.0" fill="rgb(240,96,25)" rx="2" ry="2" />
|
|
<text text-anchor="" x="666.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dor..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (6,559 samples, 4.23%)</title><rect x="493.4" y="161" width="50.0" height="15.0" fill="rgb(226,32,27)" rx="2" ry="2" />
|
|
<text text-anchor="" x="496.43" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>find_get_page (26 samples, 0.02%)</title><rect x="1137.5" y="81" width="0.2" height="15.0" fill="rgb(221,32,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1140.47" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>file_read_actor (50 samples, 0.03%)</title><rect x="43.8" y="321" width="0.4" height="15.0" fill="rgb(215,182,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="46.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>void std::__adjust_heap<__gnu_cxx::__normal_iterator<doris::CollectIterator::ChildCtx**, std::vector<doris::CollectIterator::ChildCtx*, std::allocator<doris::CollectIterator::ChildCtx*> > >, long, doris::CollectIterator::ChildCtx*, __gnu_cxx::__ops::_Iter_comp_iter<doris::CollectIterator::ChildCtxComparator> > (48 samples, 0.03%)</title><rect x="840.5" y="225" width="0.4" height="15.0" fill="rgb(215,27,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="843.49" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::Populate (29 samples, 0.02%)</title><rect x="1185.0" y="97" width="0.2" height="15.0" fill="rgb(228,0,8)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.98" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnStatistics::init (14 samples, 0.01%)</title><rect x="1182.0" y="145" width="0.1" height="15.0" fill="rgb(206,56,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.02" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnReader::next_vector (169 samples, 0.11%)</title><rect x="1092.3" y="161" width="1.3" height="15.0" fill="rgb(247,92,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1095.34" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (418 samples, 0.27%)</title><rect x="1050.3" y="129" width="3.2" height="15.0" fill="rgb(211,54,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1053.34" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::get_block (5,506 samples, 3.55%)</title><rect x="663.5" y="177" width="41.9" height="15.0" fill="rgb(222,28,48)" rx="2" ry="2" />
|
|
<text text-anchor="" x="666.49" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dor..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (515 samples, 0.33%)</title><rect x="1028.9" y="129" width="3.9" height="15.0" fill="rgb(231,103,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1031.91" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::ThreadCache::FetchFromCentralCache (21 samples, 0.01%)</title><rect x="1128.9" y="97" width="0.1" height="15.0" fill="rgb(240,187,10)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1131.86" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (18 samples, 0.01%)</title><rect x="134.8" y="321" width="0.2" height="15.0" fill="rgb(218,182,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="137.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::write (146 samples, 0.09%)</title><rect x="221.6" y="161" width="1.2" height="15.0" fill="rgb(243,97,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="224.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::write (17 samples, 0.01%)</title><rect x="138.3" y="337" width="0.2" height="15.0" fill="rgb(227,121,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="141.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>memset (833 samples, 0.54%)</title><rect x="319.4" y="225" width="6.3" height="15.0" fill="rgb(243,227,7)" rx="2" ry="2" />
|
|
<text text-anchor="" x="322.36" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Status doris::deserialize_thrift_msg<doris::TExecPlanFragmentParams> (32 samples, 0.02%)</title><rect x="842.4" y="193" width="0.2" height="15.0" fill="rgb(244,21,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="845.38" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnStatistics::attach (62 samples, 0.04%)</title><rect x="1160.6" y="161" width="0.5" height="15.0" fill="rgb(235,2,39)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1163.65" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (16 samples, 0.01%)</title><rect x="1090.6" y="113" width="0.1" height="15.0" fill="rgb(230,54,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1093.61" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (58 samples, 0.04%)</title><rect x="302.8" y="193" width="0.4" height="15.0" fill="rgb(233,105,3)" rx="2" ry="2" />
|
|
<text text-anchor="" x="305.79" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>tcmalloc::CentralFreeList::ReleaseToSpans (25 samples, 0.02%)</title><rect x="855.8" y="129" width="0.2" height="15.0" fill="rgb(224,139,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="858.81" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (28 samples, 0.02%)</title><rect x="145.5" y="321" width="0.2" height="15.0" fill="rgb(231,172,29)" rx="2" ry="2" />
|
|
<text text-anchor="" x="148.47" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Pusher::process (216 samples, 0.14%)</title><rect x="848.8" y="305" width="1.7" height="15.0" fill="rgb(223,189,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (53 samples, 0.03%)</title><rect x="1082.3" y="129" width="0.4" height="15.0" fill="rgb(222,62,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1085.25" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<long, true>::next_vector (544 samples, 0.35%)</title><rect x="670.8" y="145" width="4.2" height="15.0" fill="rgb(227,88,41)" rx="2" ry="2" />
|
|
<text text-anchor="" x="673.82" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LzoBinaryReader::next (77 samples, 0.05%)</title><rect x="849.9" y="241" width="0.5" height="15.0" fill="rgb(213,90,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="852.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf2<void, doris::FragmentMgr, std::shared_ptr<doris::FragmentExecState>, std::function<void (61 samples, 0.04%)</title><rect x="1189.2" y="305" width="0.5" height="15.0" fill="rgb(247,7,45)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1192.22" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (18 samples, 0.01%)</title><rect x="460.5" y="177" width="0.1" height="15.0" fill="rgb(240,147,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="463.50" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::get_total_buffer_size (94 samples, 0.06%)</title><rect x="137.6" y="337" width="0.7" height="15.0" fill="rgb(239,228,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="140.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::BaseCompaction::run (23,342 samples, 15.06%)</title><rect x="148.3" y="273" width="177.6" height="15.0" fill="rgb(241,92,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="151.26" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >doris::BaseCompaction::..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (103 samples, 0.07%)</title><rect x="1142.1" y="113" width="0.7" height="15.0" fill="rgb(222,173,1)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1145.06" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>thread_group_cputime (43 samples, 0.03%)</title><rect x="146.9" y="321" width="0.3" height="15.0" fill="rgb(207,73,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="149.86" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPTable::acquire_data_sources_by_versions (33 samples, 0.02%)</title><rect x="873.6" y="225" width="0.3" height="15.0" fill="rgb(245,16,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="876.65" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::PushHandler::process_realtime_push (215 samples, 0.14%)</title><rect x="848.8" y="273" width="1.6" height="15.0" fill="rgb(207,178,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.81" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StreamIndexWriter::add_index_entry (43 samples, 0.03%)</title><rect x="356.6" y="177" width="0.4" height="15.0" fill="rgb(228,28,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="359.63" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (27 samples, 0.02%)</title><rect x="691.3" y="97" width="0.2" height="15.0" fill="rgb(228,185,11)" rx="2" ry="2" />
|
|
<text text-anchor="" x="694.29" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::WrapperField::create (18 samples, 0.01%)</title><rect x="1188.2" y="193" width="0.1" height="15.0" fill="rgb(212,59,49)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1191.21" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_fill_compressed (213 samples, 0.14%)</title><rect x="1136.5" y="113" width="1.6" height="15.0" fill="rgb(207,197,54)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1139.52" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StreamIndexReader::entry (42 samples, 0.03%)</title><rect x="1165.5" y="161" width="0.3" height="15.0" fill="rgb(237,109,40)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1168.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_values (409 samples, 0.26%)</title><rect x="271.2" y="129" width="3.1" height="15.0" fill="rgb(239,163,12)" rx="2" ry="2" />
|
|
<text text-anchor="" x="274.19" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FrontendService_report_pargs::write (34 samples, 0.02%)</title><rect x="850.8" y="257" width="0.3" height="15.0" fill="rgb(246,72,2)" rx="2" ry="2" />
|
|
<text text-anchor="" x="853.84" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>LZ4_compress_fast_extState (53 samples, 0.03%)</title><rect x="55.9" y="337" width="0.4" height="15.0" fill="rgb(226,180,33)" rx="2" ry="2" />
|
|
<text text-anchor="" x="58.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (20 samples, 0.01%)</title><rect x="867.3" y="129" width="0.1" height="15.0" fill="rgb(206,209,37)" rx="2" ry="2" />
|
|
<text text-anchor="" x="870.26" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>fput (22 samples, 0.01%)</title><rect x="45.8" y="321" width="0.2" height="15.0" fill="rgb(220,114,42)" rx="2" ry="2" />
|
|
<text text-anchor="" x="48.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<int, true>::write_batch (40 samples, 0.03%)</title><rect x="135.7" y="337" width="0.3" height="15.0" fill="rgb(214,131,24)" rx="2" ry="2" />
|
|
<text text-anchor="" x="138.68" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::CondColumn::eval (70 samples, 0.05%)</title><rect x="1184.1" y="161" width="0.5" height="15.0" fill="rgb(217,126,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1187.11" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<int, true>::next_vector (16 samples, 0.01%)</title><rect x="135.1" y="337" width="0.1" height="15.0" fill="rgb(254,174,51)" rx="2" ry="2" />
|
|
<text text-anchor="" x="138.07" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_delta_values (35 samples, 0.02%)</title><rect x="870.9" y="113" width="0.3" height="15.0" fill="rgb(252,50,19)" rx="2" ry="2" />
|
|
<text text-anchor="" x="873.93" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::seek (38 samples, 0.02%)</title><rect x="1163.5" y="129" width="0.3" height="15.0" fill="rgb(229,81,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1166.47" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (32 samples, 0.02%)</title><rect x="278.4" y="113" width="0.3" height="15.0" fill="rgb(212,31,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="281.42" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnReader::next_vector (41 samples, 0.03%)</title><rect x="136.5" y="337" width="0.3" height="15.0" fill="rgb(220,219,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="139.51" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnData::_seek_to_block (18 samples, 0.01%)</title><rect x="829.6" y="177" width="0.2" height="15.0" fill="rgb(224,67,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="832.65" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ReadOnlyFileStream::_assure_data (72 samples, 0.05%)</title><rect x="267.8" y="129" width="0.5" height="15.0" fill="rgb(246,127,14)" rx="2" ry="2" />
|
|
<text text-anchor="" x="270.76" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnWriterWrapper<int, true>::write_batch (376 samples, 0.24%)</title><rect x="175.8" y="193" width="2.9" height="15.0" fill="rgb(236,210,30)" rx="2" ry="2" />
|
|
<text text-anchor="" x="178.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerWriter::_determined_encoding (765 samples, 0.49%)</title><rect x="385.8" y="161" width="5.8" height="15.0" fill="rgb(249,168,22)" rx="2" ry="2" />
|
|
<text text-anchor="" x="388.80" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::_build_tablet_info (46 samples, 0.03%)</title><rect x="851.3" y="289" width="0.4" height="15.0" fill="rgb(218,104,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="854.31" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentReader::seek_to_block (397 samples, 0.26%)</title><rect x="1182.5" y="193" width="3.0" height="15.0" fill="rgb(221,184,5)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1185.51" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::RunLengthIntegerReader::_read_direct_values (14 samples, 0.01%)</title><rect x="1024.7" y="145" width="0.1" height="15.0" fill="rgb(213,109,28)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1027.67" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::memory_copy (166 samples, 0.11%)</title><rect x="1178.5" y="193" width="1.3" height="15.0" fill="rgb(246,207,6)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1181.54" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___libc_write (325 samples, 0.21%)</title><rect x="330.9" y="193" width="2.4" height="15.0" fill="rgb(217,132,47)" rx="2" ry="2" />
|
|
<text text-anchor="" x="333.87" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OutStream::get_total_buffer_size (2,830 samples, 1.83%)</title><rect x="333.8" y="193" width="21.6" height="15.0" fill="rgb(228,12,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="336.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::SegmentWriter::estimate_segment_size (2,868 samples, 1.85%)</title><rect x="333.5" y="209" width="21.9" height="15.0" fill="rgb(209,85,17)" rx="2" ry="2" />
|
|
<text text-anchor="" x="336.54" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (14 samples, 0.01%)</title><rect x="1052.4" y="113" width="0.1" height="15.0" fill="rgb(248,216,23)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1055.38" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::Reader::_acquire_data_sources (149 samples, 0.10%)</title><rect x="872.8" y="257" width="1.1" height="15.0" fill="rgb(219,139,21)" rx="2" ry="2" />
|
|
<text text-anchor="" x="875.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::OLAPEngine::push (215 samples, 0.14%)</title><rect x="848.8" y="289" width="1.6" height="15.0" fill="rgb(210,69,46)" rx="2" ry="2" />
|
|
<text text-anchor="" x="851.81" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::FieldTypeTraits< (338 samples, 0.22%)</title><rect x="293.9" y="209" width="2.6" height="15.0" fill="rgb(214,177,53)" rx="2" ry="2" />
|
|
<text text-anchor="" x="296.92" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (14 samples, 0.01%)</title><rect x="201.1" y="129" width="0.1" height="15.0" fill="rgb(219,183,35)" rx="2" ry="2" />
|
|
<text text-anchor="" x="204.08" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::LargeIntColumnReader::next_vector (3,979 samples, 2.57%)</title><rect x="675.0" y="145" width="30.2" height="15.0" fill="rgb(213,30,4)" rx="2" ry="2" />
|
|
<text text-anchor="" x="677.96" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::StorageByteBuffer::put (18 samples, 0.01%)</title><rect x="565.3" y="113" width="0.1" height="15.0" fill="rgb(216,20,44)" rx="2" ry="2" />
|
|
<text text-anchor="" x="568.28" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VarStringColumnReader<doris::StringColumnDirectReader>::next_vector (368 samples, 0.24%)</title><rect x="868.9" y="161" width="2.8" height="15.0" fill="rgb(246,79,43)" rx="2" ry="2" />
|
|
<text text-anchor="" x="871.95" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::IntegerColumnReaderWrapper<short, true>::seek (17 samples, 0.01%)</title><rect x="871.9" y="161" width="0.2" height="15.0" fill="rgb(242,75,9)" rx="2" ry="2" />
|
|
<text text-anchor="" x="874.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>memset (23 samples, 0.01%)</title><rect x="1185.2" y="177" width="0.2" height="15.0" fill="rgb(205,140,18)" rx="2" ry="2" />
|
|
<text text-anchor="" x="1188.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ser::read_ints (335 samples, 0.22%)</title><rect x="668.2" y="97" width="2.5" height="15.0" fill="rgb(234,166,13)" rx="2" ry="2" />
|
|
<text text-anchor="" x="671.17" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::VectorizedRowBatch::dump_to_row_block (19 samples, 0.01%)</title><rect x="857.0" y="225" width="0.1" height="15.0" fill="rgb(250,90,0)" rx="2" ry="2" />
|
|
<text text-anchor="" x="859.98" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>__GI___strncmp_ssse3 (895 samples, 0.58%)</title><rect x="884.4" y="177" width="6.8" height="15.0" fill="rgb(233,88,26)" rx="2" ry="2" />
|
|
<text text-anchor="" x="887.40" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
|
|
<title>doris::ColumnDataWriter::mem_pool (26 samples, 0.02%)</title><rect x="326.2" y="241" width="0.2" height="15.0" fill="rgb(222,80,38)" rx="2" ry="2" />
|
|
<text text-anchor="" x="329.19" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
|
|
</g>
|
|
</svg>
|