Skip to content

Instantly share code, notes, and snippets.

@mwtian
Last active August 23, 2021 19:47
Show Gist options
  • Save mwtian/c73d7918c4d4a82429ad2c3939a96d27 to your computer and use it in GitHub Desktop.
Save mwtian/c73d7918c4d4a82429ad2c3939a96d27 to your computer and use it in GitHub Desktop.
Ray getting objects with embedded refs CPU profile
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="1158" onload="init(evt)" viewBox="0 0 1200 1158" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (1 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) {
currentSearchTerm = term;
search();
}
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1158.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Icicle Graph</text>
<text id="details" x="10.00" y="1141" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1141" > </text>
<g id="frames">
<g >
<title>python`lookdict_split (69 samples, 0.04%)</title><rect x="393.7" y="916" width="0.5" height="15.0" fill="rgb(233,114,20)" rx="2" ry="2" />
<text x="396.75" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (160 samples, 0.09%)</title><rect x="453.7" y="996" width="1.1" height="15.0" fill="rgb(218,143,29)" rx="2" ry="2" />
<text x="456.72" y="1006.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (100 samples, 0.06%)</title><rect x="409.2" y="900" width="0.7" height="15.0" fill="rgb(236,126,25)" rx="2" ry="2" />
<text x="412.16" y="910.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (58 samples, 0.03%)</title><rect x="396.2" y="932" width="0.4" height="15.0" fill="rgb(232,186,33)" rx="2" ry="2" />
<text x="399.21" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (29 samples, 0.02%)</title><rect x="824.8" y="436" width="0.2" height="15.0" fill="rgb(232,225,29)" rx="2" ry="2" />
<text x="827.76" y="446.5" ></text>
</g>
<g >
<title>python`_PyFrame_New_NoTrack (203 samples, 0.12%)</title><rect x="111.6" y="868" width="1.4" height="15.0" fill="rgb(220,190,39)" rx="2" ry="2" />
<text x="114.63" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (23 samples, 0.01%)</title><rect x="998.2" y="356" width="0.2" height="15.0" fill="rgb(237,30,26)" rx="2" ry="2" />
<text x="1001.24" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::Status grpc::GenericDeserialize (6,390 samples, 3.77%)</title><rect x="1021.7" y="164" width="44.6" height="15.0" fill="rgb(250,209,41)" rx="2" ry="2" />
<text x="1024.73" y="174.5" >_ray..</text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (82 samples, 0.05%)</title><rect x="957.6" y="324" width="0.6" height="15.0" fill="rgb(244,44,45)" rx="2" ry="2" />
<text x="960.59" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::EpsCopyInputStream::DoneFallback (40 samples, 0.02%)</title><rect x="423.3" y="932" width="0.3" height="15.0" fill="rgb(220,30,30)" rx="2" ry="2" />
<text x="426.32" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (387 samples, 0.23%)</title><rect x="788.6" y="484" width="2.7" height="15.0" fill="rgb(226,114,53)" rx="2" ry="2" />
<text x="791.62" y="494.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`DYLD-STUB$$_platform_bzero (15 samples, 0.01%)</title><rect x="160.7" y="1012" width="0.1" height="15.0" fill="rgb(242,169,0)" rx="2" ry="2" />
<text x="163.72" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (216 samples, 0.13%)</title><rect x="923.0" y="388" width="1.5" height="15.0" fill="rgb(212,102,36)" rx="2" ry="2" />
<text x="925.97" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (293 samples, 0.17%)</title><rect x="742.8" y="580" width="2.0" height="15.0" fill="rgb(218,158,46)" rx="2" ry="2" />
<text x="745.80" y="590.5" ></text>
</g>
<g >
<title>python`meth_dealloc (37 samples, 0.02%)</title><rect x="62.2" y="964" width="0.3" height="15.0" fill="rgb(230,119,25)" rx="2" ry="2" />
<text x="65.22" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`server_destroy_call_elem (36 samples, 0.02%)</title><rect x="1068.9" y="212" width="0.3" height="15.0" fill="rgb(246,219,24)" rx="2" ry="2" />
<text x="1071.90" y="222.5" ></text>
</g>
<g >
<title>libsystem_notify.dylib`notify_check (55 samples, 0.03%)</title><rect x="987.1" y="276" width="0.3" height="15.0" fill="rgb(233,209,54)" rx="2" ry="2" />
<text x="990.07" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::ByteSizeLong (295 samples, 0.17%)</title><rect x="978.2" y="436" width="2.0" height="15.0" fill="rgb(251,104,4)" rx="2" ry="2" />
<text x="981.17" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (283 samples, 0.17%)</title><rect x="1060.0" y="388" width="2.0" height="15.0" fill="rgb(210,164,17)" rx="2" ry="2" />
<text x="1063.03" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (78 samples, 0.05%)</title><rect x="655.7" y="468" width="0.6" height="15.0" fill="rgb(206,210,7)" rx="2" ry="2" />
<text x="658.71" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (382 samples, 0.23%)</title><rect x="953.1" y="308" width="2.7" height="15.0" fill="rgb(224,73,54)" rx="2" ry="2" />
<text x="956.15" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (36 samples, 0.02%)</title><rect x="468.6" y="1044" width="0.2" height="15.0" fill="rgb(220,212,47)" rx="2" ry="2" />
<text x="471.56" y="1054.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::operator= (20 samples, 0.01%)</title><rect x="374.3" y="948" width="0.1" height="15.0" fill="rgb(233,224,15)" rx="2" ry="2" />
<text x="377.30" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (385 samples, 0.23%)</title><rect x="652.4" y="468" width="2.6" height="15.0" fill="rgb(218,107,8)" rx="2" ry="2" />
<text x="655.35" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (97 samples, 0.06%)</title><rect x="430.2" y="1028" width="0.6" height="15.0" fill="rgb(205,47,35)" rx="2" ry="2" />
<text x="433.15" y="1038.5" ></text>
</g>
<g >
<title>python`cfunction_call (8,983 samples, 5.31%)</title><rect x="152.6" y="980" width="62.6" height="15.0" fill="rgb(205,2,17)" rx="2" ry="2" />
<text x="155.59" y="990.5" >python..</text>
</g>
<g >
<title>_raylet.so`grpc::ServerInterface::RegisteredAsyncRequest::IssueRequest (36 samples, 0.02%)</title><rect x="984.3" y="244" width="0.2" height="15.0" fill="rgb(213,27,7)" rx="2" ry="2" />
<text x="987.26" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`parse_frame_slice (99 samples, 0.06%)</title><rect x="998.7" y="244" width="0.7" height="15.0" fill="rgb(250,174,46)" rx="2" ry="2" />
<text x="1001.68" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount::ByteSizeLong (706 samples, 0.42%)</title><rect x="975.3" y="404" width="4.9" height="15.0" fill="rgb(225,93,13)" rx="2" ry="2" />
<text x="978.31" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (181 samples, 0.11%)</title><rect x="673.7" y="484" width="1.2" height="15.0" fill="rgb(208,159,49)" rx="2" ry="2" />
<text x="676.67" y="494.5" ></text>
</g>
<g >
<title>python`PyGILState_Ensure (30 samples, 0.02%)</title><rect x="377.1" y="948" width="0.2" height="15.0" fill="rgb(217,183,38)" rx="2" ry="2" />
<text x="380.07" y="958.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (15 samples, 0.01%)</title><rect x="795.7" y="500" width="0.1" height="15.0" fill="rgb(213,205,6)" rx="2" ry="2" />
<text x="798.71" y="510.5" ></text>
</g>
<g >
<title>python`_PyObject_LookupAttr (191 samples, 0.11%)</title><rect x="134.5" y="1060" width="1.3" height="15.0" fill="rgb(248,113,46)" rx="2" ry="2" />
<text x="137.48" y="1070.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::assign (33 samples, 0.02%)</title><rect x="420.5" y="916" width="0.3" height="15.0" fill="rgb(218,41,51)" rx="2" ry="2" />
<text x="423.54" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (68 samples, 0.04%)</title><rect x="767.9" y="484" width="0.4" height="15.0" fill="rgb(254,174,42)" rx="2" ry="2" />
<text x="770.85" y="494.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_cond_signal (48 samples, 0.03%)</title><rect x="89.2" y="964" width="0.3" height="15.0" fill="rgb(226,147,26)" rx="2" ry="2" />
<text x="92.17" y="974.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (19 samples, 0.01%)</title><rect x="566.6" y="484" width="0.1" height="15.0" fill="rgb(224,192,2)" rx="2" ry="2" />
<text x="569.58" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::~ServerCallImpl (17,317 samples, 10.23%)</title><rect x="1068.3" y="132" width="120.7" height="15.0" fill="rgb(226,102,7)" rx="2" ry="2" />
<text x="1071.27" y="142.5" >_raylet.so`ray:..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (103 samples, 0.06%)</title><rect x="1168.4" y="228" width="0.7" height="15.0" fill="rgb(216,176,1)" rx="2" ry="2" />
<text x="1171.38" y="238.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (282 samples, 0.17%)</title><rect x="717.8" y="484" width="2.0" height="15.0" fill="rgb(206,76,51)" rx="2" ry="2" />
<text x="720.79" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (56 samples, 0.03%)</title><rect x="502.1" y="964" width="0.4" height="15.0" fill="rgb(212,167,27)" rx="2" ry="2" />
<text x="505.10" y="974.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (2,684 samples, 1.59%)</title><rect x="63.1" y="900" width="18.7" height="15.0" fill="rgb(228,3,48)" rx="2" ry="2" />
<text x="66.14" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (123 samples, 0.07%)</title><rect x="914.6" y="292" width="0.9" height="15.0" fill="rgb(220,127,37)" rx="2" ry="2" />
<text x="917.60" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (229 samples, 0.14%)</title><rect x="728.2" y="612" width="1.6" height="15.0" fill="rgb(208,192,13)" rx="2" ry="2" />
<text x="731.22" y="622.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (74,243 samples, 43.85%)</title><rect x="16.4" y="452" width="517.4" height="15.0" fill="rgb(239,199,42)" rx="2" ry="2" />
<text x="19.41" y="462.5" >python`_PyEval_EvalCode</text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (29 samples, 0.02%)</title><rect x="537.8" y="388" width="0.2" height="15.0" fill="rgb(231,67,44)" rx="2" ry="2" />
<text x="540.82" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (280 samples, 0.17%)</title><rect x="1063.5" y="260" width="1.9" height="15.0" fill="rgb(247,227,37)" rx="2" ry="2" />
<text x="1066.47" y="270.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (103 samples, 0.06%)</title><rect x="401.9" y="916" width="0.7" height="15.0" fill="rgb(208,177,1)" rx="2" ry="2" />
<text x="404.89" y="926.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (28 samples, 0.02%)</title><rect x="742.3" y="532" width="0.2" height="15.0" fill="rgb(210,182,21)" rx="2" ry="2" />
<text x="745.34" y="542.5" ></text>
</g>
<g >
<title>python`cfunction_call (159 samples, 0.09%)</title><rect x="76.3" y="1060" width="1.1" height="15.0" fill="rgb(208,110,3)" rx="2" ry="2" />
<text x="79.30" y="1070.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (32 samples, 0.02%)</title><rect x="739.7" y="612" width="0.2" height="15.0" fill="rgb(229,168,10)" rx="2" ry="2" />
<text x="742.72" y="622.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (34 samples, 0.02%)</title><rect x="707.5" y="452" width="0.3" height="15.0" fill="rgb(217,114,46)" rx="2" ry="2" />
<text x="710.54" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (19 samples, 0.01%)</title><rect x="1132.8" y="292" width="0.1" height="15.0" fill="rgb(253,215,27)" rx="2" ry="2" />
<text x="1135.81" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (415 samples, 0.25%)</title><rect x="434.9" y="932" width="2.9" height="15.0" fill="rgb(238,221,31)" rx="2" ry="2" />
<text x="437.89" y="942.5" ></text>
</g>
<g >
<title>python`module_getattro (79 samples, 0.05%)</title><rect x="529.4" y="868" width="0.6" height="15.0" fill="rgb(249,84,12)" rx="2" ry="2" />
<text x="532.41" y="878.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (67 samples, 0.04%)</title><rect x="442.0" y="932" width="0.4" height="15.0" fill="rgb(215,44,40)" rx="2" ry="2" />
<text x="444.98" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::timer_queue::wait_duration_usec (39 samples, 0.02%)</title><rect x="987.7" y="196" width="0.3" height="15.0" fill="rgb(229,44,14)" rx="2" ry="2" />
<text x="990.69" y="206.5" ></text>
</g>
<g >
<title>python`PyLong_FromSize_t (16 samples, 0.01%)</title><rect x="79.0" y="1044" width="0.1" height="15.0" fill="rgb(216,223,9)" rx="2" ry="2" />
<text x="81.98" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (210 samples, 0.12%)</title><rect x="642.5" y="532" width="1.4" height="15.0" fill="rgb(254,61,22)" rx="2" ry="2" />
<text x="645.46" y="542.5" ></text>
</g>
<g >
<title>python`type_call (851 samples, 0.50%)</title><rect x="73.4" y="1028" width="5.9" height="15.0" fill="rgb(209,48,15)" rx="2" ry="2" />
<text x="76.36" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (16 samples, 0.01%)</title><rect x="820.6" y="404" width="0.2" height="15.0" fill="rgb(213,139,3)" rx="2" ry="2" />
<text x="823.65" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (259 samples, 0.15%)</title><rect x="1063.6" y="276" width="1.8" height="15.0" fill="rgb(226,217,36)" rx="2" ry="2" />
<text x="1066.61" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (125 samples, 0.07%)</title><rect x="648.5" y="500" width="0.9" height="15.0" fill="rgb(254,96,8)" rx="2" ry="2" />
<text x="651.51" y="510.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (280 samples, 0.17%)</title><rect x="85.9" y="900" width="2.0" height="15.0" fill="rgb(248,121,49)" rx="2" ry="2" />
<text x="88.94" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (18 samples, 0.01%)</title><rect x="1187.5" y="180" width="0.1" height="15.0" fill="rgb(233,110,35)" rx="2" ry="2" />
<text x="1190.46" y="190.5" ></text>
</g>
<g >
<title>python`PyLong_FromLong (155 samples, 0.09%)</title><rect x="284.6" y="980" width="1.1" height="15.0" fill="rgb(226,204,6)" rx="2" ry="2" />
<text x="287.64" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`DYLD-STUB$$Py_LeaveRecursiveCall (43 samples, 0.03%)</title><rect x="128.3" y="964" width="0.3" height="15.0" fill="rgb(225,210,43)" rx="2" ry="2" />
<text x="131.33" y="974.5" ></text>
</g>
<g >
<title> (169,307 samples, 100.00%)</title><rect x="10.0" y="52" width="1180.0" height="15.0" fill="rgb(239,161,33)" rx="2" ry="2" />
<text x="13.00" y="62.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_cvsignal (64 samples, 0.04%)</title><rect x="697.2" y="468" width="0.4" height="15.0" fill="rgb(225,41,36)" rx="2" ry="2" />
<text x="700.17" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (103 samples, 0.06%)</title><rect x="658.0" y="468" width="0.7" height="15.0" fill="rgb(216,61,49)" rx="2" ry="2" />
<text x="660.96" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::scheduler::run (22,936 samples, 13.55%)</title><rect x="830.9" y="148" width="159.9" height="15.0" fill="rgb(231,23,48)" rx="2" ry="2" />
<text x="833.91" y="158.5" >_raylet.so`boost::as..</text>
</g>
<g >
<title>python`stringlib_parse_args_finds.2927 (56 samples, 0.03%)</title><rect x="154.8" y="996" width="0.4" height="15.0" fill="rgb(220,2,52)" rx="2" ry="2" />
<text x="157.77" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (192 samples, 0.11%)</title><rect x="471.7" y="916" width="1.4" height="15.0" fill="rgb(244,216,11)" rx="2" ry="2" />
<text x="474.71" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::FinalizeResult (38 samples, 0.02%)</title><rect x="1066.4" y="148" width="0.3" height="15.0" fill="rgb(229,196,20)" rx="2" ry="2" />
<text x="1069.40" y="158.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (313 samples, 0.18%)</title><rect x="641.9" y="484" width="2.2" height="15.0" fill="rgb(211,65,38)" rx="2" ry="2" />
<text x="644.94" y="494.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (49 samples, 0.03%)</title><rect x="1126.1" y="260" width="0.4" height="15.0" fill="rgb(220,97,1)" rx="2" ry="2" />
<text x="1129.12" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (38 samples, 0.02%)</title><rect x="996.1" y="196" width="0.3" height="15.0" fill="rgb(241,207,44)" rx="2" ry="2" />
<text x="999.12" y="206.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (406 samples, 0.24%)</title><rect x="665.5" y="500" width="2.9" height="15.0" fill="rgb(219,39,18)" rx="2" ry="2" />
<text x="668.54" y="510.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (96 samples, 0.06%)</title><rect x="336.5" y="980" width="0.7" height="15.0" fill="rgb(227,50,15)" rx="2" ry="2" />
<text x="339.50" y="990.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (24 samples, 0.01%)</title><rect x="110.0" y="948" width="0.2" height="15.0" fill="rgb(248,30,19)" rx="2" ry="2" />
<text x="112.99" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (156 samples, 0.09%)</title><rect x="673.8" y="516" width="1.1" height="15.0" fill="rgb(205,34,49)" rx="2" ry="2" />
<text x="676.84" y="526.5" ></text>
</g>
<g >
<title>_raylet.so`publish_new_rpc (27 samples, 0.02%)</title><rect x="1001.0" y="196" width="0.2" height="15.0" fill="rgb(247,77,47)" rx="2" ry="2" />
<text x="1003.98" y="206.5" ></text>
</g>
<g >
<title>python`PyType_IsSubtype (15 samples, 0.01%)</title><rect x="386.7" y="916" width="0.1" height="15.0" fill="rgb(246,190,14)" rx="2" ry="2" />
<text x="389.73" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_convert_string_from_py_std__in_string (752 samples, 0.44%)</title><rect x="404.8" y="884" width="5.3" height="15.0" fill="rgb(245,107,39)" rx="2" ry="2" />
<text x="407.85" y="894.5" ></text>
</g>
<g >
<title>python`list_dealloc (2,462 samples, 1.45%)</title><rect x="533.9" y="292" width="17.1" height="15.0" fill="rgb(246,79,12)" rx="2" ry="2" />
<text x="536.87" y="302.5" ></text>
</g>
<g >
<title>python`object_dealloc (42 samples, 0.02%)</title><rect x="324.2" y="1028" width="0.3" height="15.0" fill="rgb(216,4,15)" rx="2" ry="2" />
<text x="327.22" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (288 samples, 0.17%)</title><rect x="1126.5" y="260" width="2.0" height="15.0" fill="rgb(240,26,10)" rx="2" ry="2" />
<text x="1129.46" y="270.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (809 samples, 0.48%)</title><rect x="730.0" y="532" width="5.6" height="15.0" fill="rgb(215,173,3)" rx="2" ry="2" />
<text x="733.01" y="542.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (24 samples, 0.01%)</title><rect x="1073.2" y="196" width="0.2" height="15.0" fill="rgb(235,144,45)" rx="2" ry="2" />
<text x="1076.20" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyFunction_FastCallDict (352 samples, 0.21%)</title><rect x="524.8" y="884" width="2.4" height="15.0" fill="rgb(205,128,12)" rx="2" ry="2" />
<text x="527.76" y="894.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (176 samples, 0.10%)</title><rect x="858.7" y="340" width="1.2" height="15.0" fill="rgb(245,53,35)" rx="2" ry="2" />
<text x="861.66" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (22 samples, 0.01%)</title><rect x="896.2" y="388" width="0.1" height="15.0" fill="rgb(205,20,21)" rx="2" ry="2" />
<text x="899.19" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (220 samples, 0.13%)</title><rect x="464.6" y="964" width="1.6" height="15.0" fill="rgb(218,215,2)" rx="2" ry="2" />
<text x="467.65" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (20 samples, 0.01%)</title><rect x="410.7" y="900" width="0.1" height="15.0" fill="rgb(248,178,3)" rx="2" ry="2" />
<text x="413.70" y="910.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (19 samples, 0.01%)</title><rect x="1165.9" y="260" width="0.1" height="15.0" fill="rgb(217,6,30)" rx="2" ry="2" />
<text x="1168.86" y="270.5" ></text>
</g>
<g >
<title>python`va_build_stack (206 samples, 0.12%)</title><rect x="530.6" y="836" width="1.4" height="15.0" fill="rgb(238,61,34)" rx="2" ry="2" />
<text x="533.58" y="846.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (100 samples, 0.06%)</title><rect x="238.3" y="964" width="0.7" height="15.0" fill="rgb(219,84,32)" rx="2" ry="2" />
<text x="241.26" y="974.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (21 samples, 0.01%)</title><rect x="571.9" y="420" width="0.1" height="15.0" fill="rgb(247,181,34)" rx="2" ry="2" />
<text x="574.85" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (321 samples, 0.19%)</title><rect x="736.2" y="564" width="2.3" height="15.0" fill="rgb(246,41,33)" rx="2" ry="2" />
<text x="739.24" y="574.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (212 samples, 0.13%)</title><rect x="661.0" y="468" width="1.4" height="15.0" fill="rgb(245,141,20)" rx="2" ry="2" />
<text x="663.97" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::RemoveLocalReference (1,104 samples, 0.65%)</title><rect x="537.2" y="372" width="7.7" height="15.0" fill="rgb(244,214,9)" rx="2" ry="2" />
<text x="540.17" y="382.5" ></text>
</g>
<g >
<title>python`property_descr_get (2,285 samples, 1.35%)</title><rect x="65.9" y="916" width="15.9" height="15.0" fill="rgb(218,122,54)" rx="2" ry="2" />
<text x="68.92" y="926.5" ></text>
</g>
<g >
<title>python`tupleitem (61 samples, 0.04%)</title><rect x="335.3" y="1012" width="0.4" height="15.0" fill="rgb(252,111,19)" rx="2" ry="2" />
<text x="338.26" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (831 samples, 0.49%)</title><rect x="571.3" y="404" width="5.8" height="15.0" fill="rgb(219,144,23)" rx="2" ry="2" />
<text x="574.32" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (115 samples, 0.07%)</title><rect x="385.6" y="964" width="0.8" height="15.0" fill="rgb(209,1,19)" rx="2" ry="2" />
<text x="388.58" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (18 samples, 0.01%)</title><rect x="425.2" y="1060" width="0.1" height="15.0" fill="rgb(228,99,10)" rx="2" ry="2" />
<text x="428.16" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`ray::LocalMemoryBuffer::~LocalMemoryBuffer (782 samples, 0.46%)</title><rect x="561.3" y="420" width="5.5" height="15.0" fill="rgb(218,229,28)" rx="2" ry="2" />
<text x="564.32" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (54 samples, 0.03%)</title><rect x="664.3" y="532" width="0.4" height="15.0" fill="rgb(224,196,34)" rx="2" ry="2" />
<text x="667.32" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (17 samples, 0.01%)</title><rect x="1173.3" y="196" width="0.1" height="15.0" fill="rgb(219,180,49)" rx="2" ry="2" />
<text x="1176.28" y="206.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (28 samples, 0.02%)</title><rect x="1022.9" y="244" width="0.2" height="15.0" fill="rgb(240,210,46)" rx="2" ry="2" />
<text x="1025.90" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::Server::ShutdownInternal (19 samples, 0.01%)</title><rect x="15.8" y="388" width="0.1" height="15.0" fill="rgb(231,218,23)" rx="2" ry="2" />
<text x="18.81" y="398.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_testcancel (22 samples, 0.01%)</title><rect x="696.2" y="564" width="0.1" height="15.0" fill="rgb(221,61,5)" rx="2" ry="2" />
<text x="699.19" y="574.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (47 samples, 0.03%)</title><rect x="708.3" y="532" width="0.3" height="15.0" fill="rgb(217,111,32)" rx="2" ry="2" />
<text x="711.28" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (90 samples, 0.05%)</title><rect x="1064.8" y="308" width="0.6" height="15.0" fill="rgb(221,202,2)" rx="2" ry="2" />
<text x="1067.77" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::Arena::CreateWithAlloc (34 samples, 0.02%)</title><rect x="998.2" y="308" width="0.3" height="15.0" fill="rgb(246,226,18)" rx="2" ry="2" />
<text x="1001.22" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::HandlePubsubLongPolling (3,290 samples, 1.94%)</title><rect x="961.2" y="212" width="22.9" height="15.0" fill="rgb(211,105,41)" rx="2" ry="2" />
<text x="964.19" y="222.5" >_..</text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__grow_by_and_replace (387 samples, 0.23%)</title><rect x="416.6" y="948" width="2.7" height="15.0" fill="rgb(233,152,51)" rx="2" ry="2" />
<text x="419.61" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (267 samples, 0.16%)</title><rect x="717.9" y="500" width="1.8" height="15.0" fill="rgb(209,116,19)" rx="2" ry="2" />
<text x="720.87" y="510.5" ></text>
</g>
<g >
<title>python`bytes_richcompare (26 samples, 0.02%)</title><rect x="62.0" y="964" width="0.2" height="15.0" fill="rgb(231,162,26)" rx="2" ry="2" />
<text x="65.04" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (21 samples, 0.01%)</title><rect x="544.7" y="404" width="0.1" height="15.0" fill="rgb(252,81,19)" rx="2" ry="2" />
<text x="547.67" y="414.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (48 samples, 0.03%)</title><rect x="59.4" y="964" width="0.3" height="15.0" fill="rgb(247,74,33)" rx="2" ry="2" />
<text x="62.39" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (119 samples, 0.07%)</title><rect x="856.4" y="292" width="0.9" height="15.0" fill="rgb(225,98,0)" rx="2" ry="2" />
<text x="859.42" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::raylet::RayletClient::ReturnWorker (20 samples, 0.01%)</title><rect x="986.1" y="308" width="0.1" height="15.0" fill="rgb(247,211,26)" rx="2" ry="2" />
<text x="989.06" y="318.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (271 samples, 0.16%)</title><rect x="41.8" y="852" width="1.9" height="15.0" fill="rgb(235,158,48)" rx="2" ry="2" />
<text x="44.84" y="862.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (390 samples, 0.23%)</title><rect x="391.6" y="900" width="2.7" height="15.0" fill="rgb(226,18,25)" rx="2" ry="2" />
<text x="394.57" y="910.5" ></text>
</g>
<g >
<title>python`tupledealloc (20 samples, 0.01%)</title><rect x="530.1" y="852" width="0.2" height="15.0" fill="rgb(230,180,42)" rx="2" ry="2" />
<text x="533.15" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubsubLongPollingReply::ByteSizeLong (1,137 samples, 0.67%)</title><rect x="972.3" y="372" width="7.9" height="15.0" fill="rgb(230,176,17)" rx="2" ry="2" />
<text x="975.30" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (52 samples, 0.03%)</title><rect x="376.1" y="980" width="0.3" height="15.0" fill="rgb(217,201,32)" rx="2" ry="2" />
<text x="379.08" y="990.5" ></text>
</g>
<g >
<title>python`_PyUnicode_FormatAdvancedWriter (827 samples, 0.49%)</title><rect x="329.2" y="1012" width="5.7" height="15.0" fill="rgb(218,69,50)" rx="2" ry="2" />
<text x="332.16" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`void std::__1::__invoke_void_return_wrapper::__call (617 samples, 0.36%)</title><rect x="956.9" y="228" width="4.3" height="15.0" fill="rgb(242,86,30)" rx="2" ry="2" />
<text x="959.89" y="238.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (76 samples, 0.04%)</title><rect x="238.4" y="996" width="0.6" height="15.0" fill="rgb(226,69,53)" rx="2" ry="2" />
<text x="241.42" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::io_context::run (22,936 samples, 13.55%)</title><rect x="830.9" y="132" width="159.9" height="15.0" fill="rgb(222,3,27)" rx="2" ry="2" />
<text x="833.91" y="142.5" >_raylet.so`boost::as..</text>
</g>
<g >
<title>python`call_function (74,168 samples, 43.81%)</title><rect x="16.4" y="580" width="517.0" height="15.0" fill="rgb(221,150,5)" rx="2" ry="2" />
<text x="19.44" y="590.5" >python`call_function</text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (21 samples, 0.01%)</title><rect x="386.9" y="900" width="0.1" height="15.0" fill="rgb(236,180,31)" rx="2" ry="2" />
<text x="389.89" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_malloc (26 samples, 0.02%)</title><rect x="386.4" y="932" width="0.2" height="15.0" fill="rgb(246,72,42)" rx="2" ry="2" />
<text x="389.38" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (36 samples, 0.02%)</title><rect x="788.4" y="500" width="0.2" height="15.0" fill="rgb(211,24,0)" rx="2" ry="2" />
<text x="791.37" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::WorkerContext::GetWorkerID (25 samples, 0.01%)</title><rect x="925.8" y="244" width="0.1" height="15.0" fill="rgb(231,229,3)" rx="2" ry="2" />
<text x="928.76" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (82 samples, 0.05%)</title><rect x="401.0" y="884" width="0.6" height="15.0" fill="rgb(230,224,0)" rx="2" ry="2" />
<text x="404.03" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::FinalizeResult (18 samples, 0.01%)</title><rect x="993.0" y="148" width="0.1" height="15.0" fill="rgb(214,123,54)" rx="2" ry="2" />
<text x="996.00" y="158.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::HandleRequest (206 samples, 0.12%)</title><rect x="1066.8" y="132" width="1.5" height="15.0" fill="rgb(224,157,16)" rx="2" ry="2" />
<text x="1069.83" y="142.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (63 samples, 0.04%)</title><rect x="812.0" y="436" width="0.4" height="15.0" fill="rgb(234,173,33)" rx="2" ry="2" />
<text x="814.98" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (260 samples, 0.15%)</title><rect x="449.8" y="1044" width="1.8" height="15.0" fill="rgb(207,43,29)" rx="2" ry="2" />
<text x="452.79" y="1054.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (27 samples, 0.02%)</title><rect x="461.1" y="980" width="0.2" height="15.0" fill="rgb(224,220,2)" rx="2" ry="2" />
<text x="464.10" y="990.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (74,246 samples, 43.85%)</title><rect x="16.4" y="372" width="517.4" height="15.0" fill="rgb(235,147,4)" rx="2" ry="2" />
<text x="19.38" y="382.5" >python`_PyEval_EvalCode</text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (161 samples, 0.10%)</title><rect x="333.7" y="1060" width="1.1" height="15.0" fill="rgb(219,155,25)" rx="2" ry="2" />
<text x="336.72" y="1070.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (25 samples, 0.01%)</title><rect x="709.8" y="484" width="0.2" height="15.0" fill="rgb(239,183,54)" rx="2" ry="2" />
<text x="712.84" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (219 samples, 0.13%)</title><rect x="809.3" y="436" width="1.6" height="15.0" fill="rgb(241,79,24)" rx="2" ry="2" />
<text x="812.35" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::EpsCopyInputStream::NextBuffer (23 samples, 0.01%)</title><rect x="423.4" y="948" width="0.2" height="15.0" fill="rgb(243,11,18)" rx="2" ry="2" />
<text x="426.44" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (260 samples, 0.15%)</title><rect x="1132.9" y="292" width="1.9" height="15.0" fill="rgb(244,80,4)" rx="2" ry="2" />
<text x="1135.94" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::ByteSizeLong (170 samples, 0.10%)</title><rect x="965.4" y="452" width="1.2" height="15.0" fill="rgb(229,74,19)" rx="2" ry="2" />
<text x="968.38" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (975 samples, 0.58%)</title><rect x="538.0" y="388" width="6.8" height="15.0" fill="rgb(252,153,26)" rx="2" ry="2" />
<text x="541.02" y="398.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_lock (31 samples, 0.02%)</title><rect x="89.5" y="964" width="0.2" height="15.0" fill="rgb(217,31,11)" rx="2" ry="2" />
<text x="92.51" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (125 samples, 0.07%)</title><rect x="1106.2" y="276" width="0.9" height="15.0" fill="rgb(254,62,26)" rx="2" ry="2" />
<text x="1109.20" y="286.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (23 samples, 0.01%)</title><rect x="520.0" y="852" width="0.2" height="15.0" fill="rgb(233,219,54)" rx="2" ry="2" />
<text x="523.03" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_combiner_continue_exec_ctx (30 samples, 0.02%)</title><rect x="991.2" y="196" width="0.2" height="15.0" fill="rgb(228,56,9)" rx="2" ry="2" />
<text x="994.18" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (19 samples, 0.01%)</title><rect x="697.0" y="436" width="0.2" height="15.0" fill="rgb(237,211,24)" rx="2" ry="2" />
<text x="700.02" y="446.5" ></text>
</g>
<g >
<title>python`PyTuple_New (44 samples, 0.03%)</title><rect x="29.3" y="804" width="0.3" height="15.0" fill="rgb(233,98,4)" rx="2" ry="2" />
<text x="32.33" y="814.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (584 samples, 0.34%)</title><rect x="668.9" y="516" width="4.1" height="15.0" fill="rgb(213,89,49)" rx="2" ry="2" />
<text x="671.94" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (172 samples, 0.10%)</title><rect x="1048.5" y="292" width="1.2" height="15.0" fill="rgb(254,11,17)" rx="2" ry="2" />
<text x="1051.45" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`plasma::PlasmaClient::~PlasmaClient (17 samples, 0.01%)</title><rect x="16.2" y="388" width="0.1" height="15.0" fill="rgb(251,5,48)" rx="2" ry="2" />
<text x="19.22" y="398.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (47 samples, 0.03%)</title><rect x="1136.4" y="244" width="0.3" height="15.0" fill="rgb(221,117,38)" rx="2" ry="2" />
<text x="1139.42" y="254.5" ></text>
</g>
<g >
<title>python`dictresize (75 samples, 0.04%)</title><rect x="532.3" y="820" width="0.6" height="15.0" fill="rgb(233,142,23)" rx="2" ry="2" />
<text x="535.34" y="830.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (241 samples, 0.14%)</title><rect x="718.0" y="532" width="1.7" height="15.0" fill="rgb(228,198,53)" rx="2" ry="2" />
<text x="721.04" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (78 samples, 0.05%)</title><rect x="432.1" y="996" width="0.5" height="15.0" fill="rgb(217,100,9)" rx="2" ry="2" />
<text x="435.10" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (311 samples, 0.18%)</title><rect x="1059.8" y="372" width="2.2" height="15.0" fill="rgb(229,88,42)" rx="2" ry="2" />
<text x="1062.84" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (36 samples, 0.02%)</title><rect x="771.3" y="484" width="0.3" height="15.0" fill="rgb(239,17,40)" rx="2" ry="2" />
<text x="774.30" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (259 samples, 0.15%)</title><rect x="1171.5" y="212" width="1.8" height="15.0" fill="rgb(227,26,18)" rx="2" ry="2" />
<text x="1174.47" y="222.5" ></text>
</g>
<g >
<title>python`member_get (269 samples, 0.16%)</title><rect x="307.7" y="980" width="1.9" height="15.0" fill="rgb(243,48,4)" rx="2" ry="2" />
<text x="310.69" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (29 samples, 0.02%)</title><rect x="224.8" y="1060" width="0.2" height="15.0" fill="rgb(210,229,4)" rx="2" ry="2" />
<text x="227.84" y="1070.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (59 samples, 0.03%)</title><rect x="1057.3" y="372" width="0.4" height="15.0" fill="rgb(205,77,33)" rx="2" ry="2" />
<text x="1060.33" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (50 samples, 0.03%)</title><rect x="864.5" y="356" width="0.4" height="15.0" fill="rgb(238,114,16)" rx="2" ry="2" />
<text x="867.51" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (77 samples, 0.05%)</title><rect x="428.3" y="1012" width="0.5" height="15.0" fill="rgb(227,31,10)" rx="2" ry="2" />
<text x="431.29" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (1,746 samples, 1.03%)</title><rect x="784.1" y="436" width="12.1" height="15.0" fill="rgb(242,83,14)" rx="2" ry="2" />
<text x="787.08" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (15 samples, 0.01%)</title><rect x="1079.2" y="244" width="0.1" height="15.0" fill="rgb(213,203,31)" rx="2" ry="2" />
<text x="1082.24" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (450 samples, 0.27%)</title><rect x="1040.0" y="308" width="3.1" height="15.0" fill="rgb(240,71,18)" rx="2" ry="2" />
<text x="1042.95" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (42 samples, 0.02%)</title><rect x="802.6" y="484" width="0.2" height="15.0" fill="rgb(207,129,38)" rx="2" ry="2" />
<text x="805.55" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (114 samples, 0.07%)</title><rect x="1156.6" y="260" width="0.8" height="15.0" fill="rgb(249,202,50)" rx="2" ry="2" />
<text x="1159.64" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::Reference::~Reference (5,164 samples, 3.05%)</title><rect x="783.7" y="404" width="36.0" height="15.0" fill="rgb(248,194,12)" rx="2" ry="2" />
<text x="786.73" y="414.5" >_ra..</text>
</g>
<g >
<title>python`PyObject_RichCompare (57 samples, 0.03%)</title><rect x="92.5" y="964" width="0.4" height="15.0" fill="rgb(234,19,19)" rx="2" ry="2" />
<text x="95.49" y="974.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (533 samples, 0.31%)</title><rect x="1039.5" y="276" width="3.7" height="15.0" fill="rgb(238,205,9)" rx="2" ry="2" />
<text x="1042.51" y="286.5" ></text>
</g>
<g >
<title>python`_PyArg_ParseTuple_SizeT (32 samples, 0.02%)</title><rect x="171.2" y="1012" width="0.2" height="15.0" fill="rgb(219,201,12)" rx="2" ry="2" />
<text x="174.21" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (429 samples, 0.25%)</title><rect x="1040.1" y="324" width="3.0" height="15.0" fill="rgb(250,92,14)" rx="2" ry="2" />
<text x="1043.10" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (62 samples, 0.04%)</title><rect x="744.4" y="612" width="0.4" height="15.0" fill="rgb(205,50,36)" rx="2" ry="2" />
<text x="747.40" y="622.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish (3,151 samples, 1.86%)</title><rect x="961.9" y="292" width="22.0" height="15.0" fill="rgb(216,86,27)" rx="2" ry="2" />
<text x="964.94" y="302.5" >_..</text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerMemoryStore::Delete (3,817 samples, 2.25%)</title><rect x="551.5" y="356" width="26.6" height="15.0" fill="rgb(249,181,16)" rx="2" ry="2" />
<text x="554.52" y="366.5" >_..</text>
</g>
<g >
<title>libc++.1.dylib`std::__1::__itoa::__u32toa (22 samples, 0.01%)</title><rect x="457.9" y="964" width="0.2" height="15.0" fill="rgb(224,88,30)" rx="2" ry="2" />
<text x="460.93" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (88 samples, 0.05%)</title><rect x="450.7" y="1060" width="0.6" height="15.0" fill="rgb(242,78,1)" rx="2" ry="2" />
<text x="453.74" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::UnlockSlow (757 samples, 0.45%)</title><rect x="928.2" y="260" width="5.3" height="15.0" fill="rgb(213,50,0)" rx="2" ry="2" />
<text x="931.19" y="270.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`_kernelrpc_mach_vm_deallocate_trap (21 samples, 0.01%)</title><rect x="573.0" y="452" width="0.2" height="15.0" fill="rgb(227,19,13)" rx="2" ry="2" />
<text x="576.02" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`tcp_write (265 samples, 0.16%)</title><rect x="958.9" y="356" width="1.8" height="15.0" fill="rgb(217,11,49)" rx="2" ry="2" />
<text x="961.86" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`void ray::rpc::GrpcClient::CallMethod(std::__1::unique_ptr (ray::rpc::NodeManagerService::Stub::*) (21 samples, 0.01%)</title><rect x="985.8" y="292" width="0.2" height="15.0" fill="rgb(246,190,20)" rx="2" ry="2" />
<text x="988.83" y="302.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::__shared_weak_count::__release_weak (17 samples, 0.01%)</title><rect x="489.3" y="900" width="0.1" height="15.0" fill="rgb(223,144,18)" rx="2" ry="2" />
<text x="492.28" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`mvm_deallocate_pages (21 samples, 0.01%)</title><rect x="573.0" y="436" width="0.2" height="15.0" fill="rgb(233,28,50)" rx="2" ry="2" />
<text x="576.02" y="446.5" ></text>
</g>
<g >
<title>python`acquire_timed (18 samples, 0.01%)</title><rect x="1189.4" y="500" width="0.1" height="15.0" fill="rgb(225,192,41)" rx="2" ry="2" />
<text x="1192.39" y="510.5" ></text>
</g>
<g >
<title>python`object_dealloc (17 samples, 0.01%)</title><rect x="81.1" y="996" width="0.2" height="15.0" fill="rgb(247,142,40)" rx="2" ry="2" />
<text x="84.13" y="1006.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (6,827 samples, 4.03%)</title><rect x="49.8" y="868" width="47.5" height="15.0" fill="rgb(212,14,47)" rx="2" ry="2" />
<text x="52.76" y="878.5" >pyth..</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (68 samples, 0.04%)</title><rect x="491.8" y="932" width="0.5" height="15.0" fill="rgb(251,223,32)" rx="2" ry="2" />
<text x="494.79" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::AddOutOfLineHelper (248 samples, 0.15%)</title><rect x="425.4" y="932" width="1.7" height="15.0" fill="rgb(250,48,19)" rx="2" ry="2" />
<text x="428.41" y="942.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (232 samples, 0.14%)</title><rect x="429.2" y="964" width="1.7" height="15.0" fill="rgb(218,142,49)" rx="2" ry="2" />
<text x="432.24" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (146 samples, 0.09%)</title><rect x="1117.0" y="196" width="1.0" height="15.0" fill="rgb(226,160,27)" rx="2" ry="2" />
<text x="1119.95" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_memalign (733 samples, 0.43%)</title><rect x="447.7" y="996" width="5.1" height="15.0" fill="rgb(215,30,44)" rx="2" ry="2" />
<text x="450.72" y="1006.5" ></text>
</g>
<g >
<title>python`call_function (19 samples, 0.01%)</title><rect x="1189.2" y="372" width="0.1" height="15.0" fill="rgb(220,110,5)" rx="2" ry="2" />
<text x="1192.21" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (24 samples, 0.01%)</title><rect x="764.8" y="532" width="0.2" height="15.0" fill="rgb(238,87,8)" rx="2" ry="2" />
<text x="767.85" y="542.5" ></text>
</g>
<g >
<title>python`PyTuple_New (16 samples, 0.01%)</title><rect x="527.2" y="884" width="0.1" height="15.0" fill="rgb(246,182,40)" rx="2" ry="2" />
<text x="530.22" y="894.5" ></text>
</g>
<g >
<title>all (169,307 samples, 100%)</title><rect x="10.0" y="36" width="1180.0" height="15.0" fill="rgb(215,8,12)" rx="2" ry="2" />
<text x="13.00" y="46.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (508 samples, 0.30%)</title><rect x="1059.0" y="292" width="3.6" height="15.0" fill="rgb(206,183,25)" rx="2" ry="2" />
<text x="1062.05" y="302.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (67 samples, 0.04%)</title><rect x="1189.5" y="308" width="0.5" height="15.0" fill="rgb(233,115,42)" rx="2" ry="2" />
<text x="1192.53" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (157 samples, 0.09%)</title><rect x="743.7" y="596" width="1.1" height="15.0" fill="rgb(239,153,20)" rx="2" ry="2" />
<text x="746.74" y="606.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (219 samples, 0.13%)</title><rect x="1115.2" y="212" width="1.5" height="15.0" fill="rgb(240,39,47)" rx="2" ry="2" />
<text x="1118.19" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::Address (16 samples, 0.01%)</title><rect x="641.1" y="436" width="0.1" height="15.0" fill="rgb(210,173,16)" rx="2" ry="2" />
<text x="644.14" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (177 samples, 0.10%)</title><rect x="1037.5" y="308" width="1.2" height="15.0" fill="rgb(250,21,37)" rx="2" ry="2" />
<text x="1040.48" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (27 samples, 0.02%)</title><rect x="711.3" y="532" width="0.2" height="15.0" fill="rgb(251,102,28)" rx="2" ry="2" />
<text x="714.27" y="542.5" ></text>
</g>
<g >
<title>python`lookdict_unicode (58 samples, 0.03%)</title><rect x="519.0" y="868" width="0.4" height="15.0" fill="rgb(249,120,45)" rx="2" ry="2" />
<text x="522.00" y="878.5" ></text>
</g>
<g >
<title>python`method_vectorcall (16 samples, 0.01%)</title><rect x="1189.2" y="468" width="0.1" height="15.0" fill="rgb(243,8,47)" rx="2" ry="2" />
<text x="1192.23" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (44 samples, 0.03%)</title><rect x="1029.4" y="308" width="0.3" height="15.0" fill="rgb(205,165,35)" rx="2" ry="2" />
<text x="1032.37" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::Get (38 samples, 0.02%)</title><rect x="533.5" y="532" width="0.3" height="15.0" fill="rgb(224,218,7)" rx="2" ry="2" />
<text x="536.49" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (45 samples, 0.03%)</title><rect x="1166.5" y="212" width="0.3" height="15.0" fill="rgb(226,63,50)" rx="2" ry="2" />
<text x="1169.47" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::MergeFrom (1,256 samples, 0.74%)</title><rect x="664.9" y="452" width="8.7" height="15.0" fill="rgb(241,228,24)" rx="2" ry="2" />
<text x="667.86" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (21 samples, 0.01%)</title><rect x="776.4" y="500" width="0.1" height="15.0" fill="rgb(224,125,47)" rx="2" ry="2" />
<text x="779.38" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayObject::IsInPlasmaError (46 samples, 0.03%)</title><rect x="577.5" y="388" width="0.3" height="15.0" fill="rgb(243,89,54)" rx="2" ry="2" />
<text x="580.53" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (557 samples, 0.33%)</title><rect x="1094.3" y="260" width="3.9" height="15.0" fill="rgb(237,207,29)" rx="2" ry="2" />
<text x="1097.34" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::IsStructurallyValidUTF8 (70 samples, 0.04%)</title><rect x="969.6" y="500" width="0.5" height="15.0" fill="rgb(239,159,14)" rx="2" ry="2" />
<text x="972.62" y="510.5" ></text>
</g>
<g >
<title>python`Py_LeaveRecursiveCall (163 samples, 0.10%)</title><rect x="151.2" y="980" width="1.1" height="15.0" fill="rgb(254,110,6)" rx="2" ry="2" />
<text x="154.18" y="990.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (557 samples, 0.33%)</title><rect x="405.2" y="900" width="3.9" height="15.0" fill="rgb(223,203,33)" rx="2" ry="2" />
<text x="408.21" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::GetCurrentTimeNanos (46 samples, 0.03%)</title><rect x="441.0" y="932" width="0.3" height="15.0" fill="rgb(225,117,47)" rx="2" ry="2" />
<text x="443.96" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (200 samples, 0.12%)</title><rect x="796.5" y="436" width="1.4" height="15.0" fill="rgb(224,221,5)" rx="2" ry="2" />
<text x="799.54" y="446.5" ></text>
</g>
<g >
<title>python`long_richcompare (36 samples, 0.02%)</title><rect x="384.3" y="964" width="0.3" height="15.0" fill="rgb(239,98,26)" rx="2" ry="2" />
<text x="387.33" y="974.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (47 samples, 0.03%)</title><rect x="1189.2" y="292" width="0.3" height="15.0" fill="rgb(215,181,46)" rx="2" ry="2" />
<text x="1192.21" y="302.5" ></text>
</g>
<g >
<title>python`PyUnicode_RichCompare (20 samples, 0.01%)</title><rect x="108.2" y="980" width="0.1" height="15.0" fill="rgb(228,62,21)" rx="2" ry="2" />
<text x="111.21" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (38 samples, 0.02%)</title><rect x="472.8" y="948" width="0.2" height="15.0" fill="rgb(251,134,41)" rx="2" ry="2" />
<text x="475.77" y="958.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (1,113 samples, 0.66%)</title><rect x="276.5" y="996" width="7.8" height="15.0" fill="rgb(234,91,21)" rx="2" ry="2" />
<text x="279.52" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (269 samples, 0.16%)</title><rect x="715.6" y="500" width="1.8" height="15.0" fill="rgb(243,107,26)" rx="2" ry="2" />
<text x="718.56" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_combiner_continue_exec_ctx (21 samples, 0.01%)</title><rect x="1069.2" y="196" width="0.1" height="15.0" fill="rgb(241,211,50)" rx="2" ry="2" />
<text x="1072.20" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::VarintParseSlow64 (15 samples, 0.01%)</title><rect x="410.8" y="900" width="0.1" height="15.0" fill="rgb(235,161,22)" rx="2" ry="2" />
<text x="413.83" y="910.5" ></text>
</g>
<g >
<title>python`module_getattro (187 samples, 0.11%)</title><rect x="134.5" y="1076" width="1.3" height="15.0" fill="rgb(214,46,50)" rx="2" ry="2" />
<text x="137.51" y="1086.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (357 samples, 0.21%)</title><rect x="897.0" y="324" width="2.5" height="15.0" fill="rgb(208,227,42)" rx="2" ry="2" />
<text x="900.03" y="334.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (19 samples, 0.01%)</title><rect x="828.6" y="452" width="0.2" height="15.0" fill="rgb(214,105,22)" rx="2" ry="2" />
<text x="831.63" y="462.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (43 samples, 0.03%)</title><rect x="531.0" y="868" width="0.3" height="15.0" fill="rgb(222,39,6)" rx="2" ry="2" />
<text x="534.02" y="878.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::completion_handler::do_complete (22,347 samples, 13.20%)</title><rect x="831.0" y="180" width="155.8" height="15.0" fill="rgb(206,4,2)" rx="2" ry="2" />
<text x="834.05" y="190.5" >_raylet.so`boost::a..</text>
</g>
<g >
<title>python`pymalloc_alloc (75 samples, 0.04%)</title><rect x="248.3" y="1028" width="0.5" height="15.0" fill="rgb(205,196,48)" rx="2" ry="2" />
<text x="251.28" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`init_stream (27 samples, 0.02%)</title><rect x="998.0" y="340" width="0.2" height="15.0" fill="rgb(235,99,36)" rx="2" ry="2" />
<text x="1001.00" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (442 samples, 0.26%)</title><rect x="1055.8" y="356" width="3.1" height="15.0" fill="rgb(219,55,37)" rx="2" ry="2" />
<text x="1058.81" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (22 samples, 0.01%)</title><rect x="452.3" y="1044" width="0.1" height="15.0" fill="rgb(211,3,23)" rx="2" ry="2" />
<text x="455.28" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (167 samples, 0.10%)</title><rect x="407.8" y="964" width="1.2" height="15.0" fill="rgb(254,177,5)" rx="2" ry="2" />
<text x="410.80" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (120 samples, 0.07%)</title><rect x="1096.6" y="292" width="0.8" height="15.0" fill="rgb(219,206,22)" rx="2" ry="2" />
<text x="1099.55" y="302.5" ></text>
</g>
<g >
<title>python`method_vectorcall (114 samples, 0.07%)</title><rect x="1189.2" y="132" width="0.8" height="15.0" fill="rgb(225,137,32)" rx="2" ry="2" />
<text x="1192.21" y="142.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount* google::protobuf::Arena::CreateMaybeMessage (236 samples, 0.14%)</title><rect x="675.1" y="436" width="1.7" height="15.0" fill="rgb(205,70,24)" rx="2" ry="2" />
<text x="678.12" y="446.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_lock (42 samples, 0.02%)</title><rect x="546.6" y="404" width="0.3" height="15.0" fill="rgb(217,131,39)" rx="2" ry="2" />
<text x="549.59" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (122 samples, 0.07%)</title><rect x="906.5" y="308" width="0.9" height="15.0" fill="rgb(241,13,40)" rx="2" ry="2" />
<text x="909.51" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::Status grpc::GenericSerialize (2,616 samples, 1.55%)</title><rect x="962.0" y="356" width="18.2" height="15.0" fill="rgb(225,170,4)" rx="2" ry="2" />
<text x="965.00" y="366.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (24 samples, 0.01%)</title><rect x="29.0" y="804" width="0.2" height="15.0" fill="rgb(221,119,5)" rx="2" ry="2" />
<text x="32.04" y="814.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Command* google::protobuf::Arena::CreateMaybeMessage (479 samples, 0.28%)</title><rect x="1023.4" y="212" width="3.3" height="15.0" fill="rgb(243,215,8)" rx="2" ry="2" />
<text x="1026.37" y="222.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (221 samples, 0.13%)</title><rect x="93.2" y="964" width="1.6" height="15.0" fill="rgb(221,15,31)" rx="2" ry="2" />
<text x="96.22" y="974.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (96 samples, 0.06%)</title><rect x="37.9" y="836" width="0.7" height="15.0" fill="rgb(227,183,37)" rx="2" ry="2" />
<text x="40.93" y="846.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (742 samples, 0.44%)</title><rect x="1101.9" y="260" width="5.2" height="15.0" fill="rgb(216,206,25)" rx="2" ry="2" />
<text x="1104.90" y="270.5" ></text>
</g>
<g >
<title>python`_PyObject_MakeTpCall (583 samples, 0.34%)</title><rect x="81.8" y="900" width="4.1" height="15.0" fill="rgb(244,104,28)" rx="2" ry="2" />
<text x="84.84" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (95 samples, 0.06%)</title><rect x="784.8" y="484" width="0.7" height="15.0" fill="rgb(225,136,6)" rx="2" ry="2" />
<text x="787.84" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`non-virtual thunk to ray::raylet::RayletClient::ReturnWorker (21 samples, 0.01%)</title><rect x="986.1" y="292" width="0.1" height="15.0" fill="rgb(205,160,39)" rx="2" ry="2" />
<text x="989.06" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (1,179 samples, 0.70%)</title><rect x="665.2" y="468" width="8.2" height="15.0" fill="rgb(235,56,30)" rx="2" ry="2" />
<text x="668.19" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (732 samples, 0.43%)</title><rect x="1109.3" y="228" width="5.1" height="15.0" fill="rgb(253,43,9)" rx="2" ry="2" />
<text x="1112.33" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (105 samples, 0.06%)</title><rect x="767.6" y="468" width="0.8" height="15.0" fill="rgb(231,187,6)" rx="2" ry="2" />
<text x="770.64" y="478.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (23 samples, 0.01%)</title><rect x="1189.6" y="564" width="0.1" height="15.0" fill="rgb(240,12,27)" rx="2" ry="2" />
<text x="1192.55" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (302 samples, 0.18%)</title><rect x="805.7" y="468" width="2.1" height="15.0" fill="rgb(226,113,30)" rx="2" ry="2" />
<text x="808.69" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (99 samples, 0.06%)</title><rect x="770.1" y="500" width="0.7" height="15.0" fill="rgb(211,67,35)" rx="2" ry="2" />
<text x="773.11" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (39 samples, 0.02%)</title><rect x="819.3" y="452" width="0.2" height="15.0" fill="rgb(254,115,4)" rx="2" ry="2" />
<text x="822.25" y="462.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (28 samples, 0.02%)</title><rect x="673.2" y="484" width="0.2" height="15.0" fill="rgb(234,18,23)" rx="2" ry="2" />
<text x="676.21" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (234 samples, 0.14%)</title><rect x="639.3" y="484" width="1.6" height="15.0" fill="rgb(230,16,52)" rx="2" ry="2" />
<text x="642.32" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::LockedMultiProducerSingleConsumerQueue::TryPop (23 samples, 0.01%)</title><rect x="1001.0" y="212" width="0.2" height="15.0" fill="rgb(222,106,48)" rx="2" ry="2" />
<text x="1004.01" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (741 samples, 0.44%)</title><rect x="730.4" y="564" width="5.2" height="15.0" fill="rgb(237,53,24)" rx="2" ry="2" />
<text x="733.39" y="574.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::ByteSizeLong (642 samples, 0.38%)</title><rect x="962.1" y="404" width="4.5" height="15.0" fill="rgb(228,165,49)" rx="2" ry="2" />
<text x="965.09" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::ByteSizeLong (497 samples, 0.29%)</title><rect x="976.8" y="420" width="3.4" height="15.0" fill="rgb(234,175,33)" rx="2" ry="2" />
<text x="979.77" y="430.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`_kernelrpc_mach_vm_deallocate_trap (343 samples, 0.20%)</title><rect x="12.9" y="404" width="2.4" height="15.0" fill="rgb(213,24,41)" rx="2" ry="2" />
<text x="15.94" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (214 samples, 0.13%)</title><rect x="663.2" y="484" width="1.5" height="15.0" fill="rgb(241,220,36)" rx="2" ry="2" />
<text x="666.22" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (129 samples, 0.08%)</title><rect x="436.2" y="948" width="0.9" height="15.0" fill="rgb(205,150,9)" rx="2" ry="2" />
<text x="439.20" y="958.5" ></text>
</g>
<g >
<title>python`getset_get (15 samples, 0.01%)</title><rect x="336.0" y="964" width="0.1" height="15.0" fill="rgb(230,22,46)" rx="2" ry="2" />
<text x="339.00" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (46 samples, 0.03%)</title><rect x="573.2" y="452" width="0.3" height="15.0" fill="rgb(233,227,53)" rx="2" ry="2" />
<text x="576.21" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (53 samples, 0.03%)</title><rect x="390.5" y="932" width="0.4" height="15.0" fill="rgb(217,138,1)" rx="2" ry="2" />
<text x="393.53" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (52 samples, 0.03%)</title><rect x="1033.2" y="340" width="0.3" height="15.0" fill="rgb(250,222,13)" rx="2" ry="2" />
<text x="1036.16" y="350.5" ></text>
</g>
<g >
<title>python`method_vectorcall (26 samples, 0.02%)</title><rect x="1189.5" y="404" width="0.2" height="15.0" fill="rgb(244,93,42)" rx="2" ry="2" />
<text x="1192.55" y="414.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (30 samples, 0.02%)</title><rect x="528.8" y="964" width="0.2" height="15.0" fill="rgb(242,82,51)" rx="2" ry="2" />
<text x="531.77" y="974.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (104 samples, 0.06%)</title><rect x="310.9" y="964" width="0.8" height="15.0" fill="rgb(224,203,0)" rx="2" ry="2" />
<text x="313.95" y="974.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (51 samples, 0.03%)</title><rect x="695.6" y="564" width="0.4" height="15.0" fill="rgb(240,215,18)" rx="2" ry="2" />
<text x="698.61" y="574.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::InternalExtend (229 samples, 0.14%)</title><rect x="660.9" y="452" width="1.6" height="15.0" fill="rgb(240,33,41)" rx="2" ry="2" />
<text x="663.88" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::Clear (18 samples, 0.01%)</title><rect x="411.0" y="900" width="0.1" height="15.0" fill="rgb(221,88,21)" rx="2" ry="2" />
<text x="414.02" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (149 samples, 0.09%)</title><rect x="478.3" y="1044" width="1.0" height="15.0" fill="rgb(225,171,4)" rx="2" ry="2" />
<text x="481.28" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::_InternalSerialize (745 samples, 0.44%)</title><rect x="966.9" y="404" width="5.2" height="15.0" fill="rgb(211,166,54)" rx="2" ry="2" />
<text x="969.93" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,054 samples, 0.62%)</title><rect x="948.8" y="276" width="7.3" height="15.0" fill="rgb(253,32,30)" rx="2" ry="2" />
<text x="951.77" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (194 samples, 0.11%)</title><rect x="750.0" y="516" width="1.3" height="15.0" fill="rgb(235,68,25)" rx="2" ry="2" />
<text x="752.95" y="526.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (149 samples, 0.09%)</title><rect x="104.9" y="948" width="1.0" height="15.0" fill="rgb(215,147,47)" rx="2" ry="2" />
<text x="107.90" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (328 samples, 0.19%)</title><rect x="736.2" y="548" width="2.3" height="15.0" fill="rgb(230,2,33)" rx="2" ry="2" />
<text x="739.20" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerPlasmaStoreProvider::Get (21 samples, 0.01%)</title><rect x="533.6" y="548" width="0.2" height="15.0" fill="rgb(205,169,50)" rx="2" ry="2" />
<text x="536.61" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (39 samples, 0.02%)</title><rect x="779.2" y="484" width="0.2" height="15.0" fill="rgb(234,180,28)" rx="2" ry="2" />
<text x="782.18" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set&lt;absl::lts_20210324::container_internal::FlatHashMapPolicy&lt;ray::ObjectID, absl::lts_20210324::flat_hash_set&lt;ray::UniqueID, absl::lts_20210324::hash_internal::Hash&lt;ray::UniqueID&gt;, std::__1::equal_to&lt;ray::UniqueID&gt;, std::__1::allocator&lt;ray::UniqueID&gt; &gt; &gt;, absl::lts_20210324::hash_internal::Hash&lt;ray::ObjectID&gt;, std::__1::equal_� (715 samples, 0.42%)</title><rect x="941.6" y="276" width="5.0" height="15.0" fill="rgb(206,87,22)" rx="2" ry="2" />
<text x="944.62" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert (439 samples, 0.26%)</title><rect x="857.3" y="292" width="3.0" height="15.0" fill="rgb(220,91,5)" rx="2" ry="2" />
<text x="860.28" y="302.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (74,163 samples, 43.80%)</title><rect x="16.4" y="612" width="516.9" height="15.0" fill="rgb(242,131,2)" rx="2" ry="2" />
<text x="19.44" y="622.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedMessage::~WorkerRefRemovedMessage (3,215 samples, 1.90%)</title><rect x="748.6" y="452" width="22.4" height="15.0" fill="rgb(241,130,48)" rx="2" ry="2" />
<text x="751.59" y="462.5" >_..</text>
</g>
<g >
<title>_raylet.so`std::__1::shared_ptr ray::rpc::ClientCallManager::CreateCall(ray::rpc::NodeManagerService::Stub&amp;, std::__1::unique_ptr (ray::rpc::NodeManagerService::Stub::*) (18 samples, 0.01%)</title><rect x="986.1" y="340" width="0.1" height="15.0" fill="rgb(226,57,18)" rx="2" ry="2" />
<text x="989.06" y="350.5" ></text>
</g>
<g >
<title>_pickle.cpython-39-darwin.so`_Unpickler_ReadInto (459 samples, 0.27%)</title><rect x="23.4" y="820" width="3.2" height="15.0" fill="rgb(210,166,10)" rx="2" ry="2" />
<text x="26.38" y="830.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_cvclrprepost (28 samples, 0.02%)</title><rect x="695.2" y="564" width="0.2" height="15.0" fill="rgb(233,51,46)" rx="2" ry="2" />
<text x="698.25" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (268 samples, 0.16%)</title><rect x="894.5" y="356" width="1.8" height="15.0" fill="rgb(247,159,28)" rx="2" ry="2" />
<text x="897.48" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`small_malloc_from_free_list (19 samples, 0.01%)</title><rect x="998.3" y="388" width="0.1" height="15.0" fill="rgb(230,89,20)" rx="2" ry="2" />
<text x="1001.27" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (21 samples, 0.01%)</title><rect x="714.5" y="564" width="0.2" height="15.0" fill="rgb(206,136,18)" rx="2" ry="2" />
<text x="717.52" y="574.5" ></text>
</g>
<g >
<title>python`module_getattro (299 samples, 0.18%)</title><rect x="394.8" y="900" width="2.1" height="15.0" fill="rgb(205,203,7)" rx="2" ry="2" />
<text x="397.83" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (56 samples, 0.03%)</title><rect x="1061.0" y="404" width="0.4" height="15.0" fill="rgb(221,168,26)" rx="2" ry="2" />
<text x="1063.99" y="414.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (15 samples, 0.01%)</title><rect x="531.2" y="884" width="0.1" height="15.0" fill="rgb(227,71,35)" rx="2" ry="2" />
<text x="534.21" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (176 samples, 0.10%)</title><rect x="771.6" y="452" width="1.2" height="15.0" fill="rgb(226,169,28)" rx="2" ry="2" />
<text x="774.57" y="462.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (25 samples, 0.01%)</title><rect x="1189.4" y="340" width="0.1" height="15.0" fill="rgb(242,89,48)" rx="2" ry="2" />
<text x="1192.35" y="350.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (208 samples, 0.12%)</title><rect x="425.7" y="964" width="1.4" height="15.0" fill="rgb(241,178,13)" rx="2" ry="2" />
<text x="428.65" y="974.5" ></text>
</g>
<g >
<title>python`tupletraverse (105 samples, 0.06%)</title><rect x="245.5" y="1012" width="0.7" height="15.0" fill="rgb(240,136,26)" rx="2" ry="2" />
<text x="248.50" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (28 samples, 0.02%)</title><rect x="909.4" y="292" width="0.2" height="15.0" fill="rgb(245,86,20)" rx="2" ry="2" />
<text x="912.40" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_begin_write (52 samples, 0.03%)</title><rect x="958.4" y="356" width="0.4" height="15.0" fill="rgb(222,98,35)" rx="2" ry="2" />
<text x="961.43" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (704 samples, 0.42%)</title><rect x="1043.3" y="260" width="4.9" height="15.0" fill="rgb(218,31,42)" rx="2" ry="2" />
<text x="1046.26" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_f_3ray_7_raylet_get_py_stack (32,882 samples, 19.42%)</title><rect x="118.6" y="948" width="229.2" height="15.0" fill="rgb(248,112,32)" rx="2" ry="2" />
<text x="121.65" y="958.5" >_raylet.so`__pyx_f_3ray_7_rayl..</text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (72,660 samples, 42.92%)</title><rect x="16.5" y="708" width="506.4" height="15.0" fill="rgb(242,90,10)" rx="2" ry="2" />
<text x="19.51" y="718.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>python`lock_PyThread_acquire_lock (18 samples, 0.01%)</title><rect x="1189.4" y="484" width="0.1" height="15.0" fill="rgb(220,132,12)" rx="2" ry="2" />
<text x="1192.39" y="494.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (39 samples, 0.02%)</title><rect x="45.1" y="884" width="0.3" height="15.0" fill="rgb(223,11,1)" rx="2" ry="2" />
<text x="48.15" y="894.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (562 samples, 0.33%)</title><rect x="499.6" y="900" width="3.9" height="15.0" fill="rgb(230,62,16)" rx="2" ry="2" />
<text x="502.59" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (17 samples, 0.01%)</title><rect x="1064.6" y="308" width="0.2" height="15.0" fill="rgb(214,154,28)" rx="2" ry="2" />
<text x="1067.64" y="318.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_strlen (1,188 samples, 0.70%)</title><rect x="177.6" y="1028" width="8.3" height="15.0" fill="rgb(210,75,7)" rx="2" ry="2" />
<text x="180.64" y="1038.5" ></text>
</g>
<g >
<title>python`type_call (40,789 samples, 24.09%)</title><rect x="114.6" y="868" width="284.3" height="15.0" fill="rgb(242,161,10)" rx="2" ry="2" />
<text x="117.64" y="878.5" >python`type_call</text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (263 samples, 0.16%)</title><rect x="375.0" y="948" width="1.9" height="15.0" fill="rgb(227,12,51)" rx="2" ry="2" />
<text x="378.03" y="958.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_self (15 samples, 0.01%)</title><rect x="322.4" y="1044" width="0.1" height="15.0" fill="rgb(229,129,25)" rx="2" ry="2" />
<text x="325.36" y="1054.5" ></text>
</g>
<g >
<title>python`take_gil (158 samples, 0.09%)</title><rect x="545.1" y="388" width="1.1" height="15.0" fill="rgb(209,209,34)" rx="2" ry="2" />
<text x="548.06" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (37 samples, 0.02%)</title><rect x="771.3" y="468" width="0.3" height="15.0" fill="rgb(219,37,30)" rx="2" ry="2" />
<text x="774.30" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (35 samples, 0.02%)</title><rect x="482.1" y="1028" width="0.2" height="15.0" fill="rgb(241,225,30)" rx="2" ry="2" />
<text x="485.09" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::DeleteReferenceInternal (53 samples, 0.03%)</title><rect x="551.1" y="372" width="0.4" height="15.0" fill="rgb(219,198,45)" rx="2" ry="2" />
<text x="554.11" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (324 samples, 0.19%)</title><rect x="496.9" y="916" width="2.2" height="15.0" fill="rgb(249,26,46)" rx="2" ry="2" />
<text x="499.88" y="926.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (34 samples, 0.02%)</title><rect x="1189.7" y="420" width="0.3" height="15.0" fill="rgb(242,129,37)" rx="2" ry="2" />
<text x="1192.74" y="430.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (1,668 samples, 0.99%)</title><rect x="1124.8" y="244" width="11.6" height="15.0" fill="rgb(223,47,22)" rx="2" ry="2" />
<text x="1127.76" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (194 samples, 0.11%)</title><rect x="1085.3" y="244" width="1.4" height="15.0" fill="rgb(233,56,51)" rx="2" ry="2" />
<text x="1088.32" y="254.5" ></text>
</g>
<g >
<title>python`meth_dealloc (23 samples, 0.01%)</title><rect x="95.6" y="900" width="0.2" height="15.0" fill="rgb(237,229,46)" rx="2" ry="2" />
<text x="98.59" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (192 samples, 0.11%)</title><rect x="659.3" y="500" width="1.3" height="15.0" fill="rgb(224,111,24)" rx="2" ry="2" />
<text x="662.30" y="510.5" ></text>
</g>
<g >
<title>python`lookdict_unicode (33 samples, 0.02%)</title><rect x="519.8" y="852" width="0.2" height="15.0" fill="rgb(219,33,50)" rx="2" ry="2" />
<text x="522.80" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount::~ObjectReferenceCount (5,148 samples, 3.04%)</title><rect x="1122.6" y="212" width="35.9" height="15.0" fill="rgb(211,177,52)" rx="2" ry="2" />
<text x="1125.62" y="222.5" >_ra..</text>
</g>
<g >
<title>python`_PyType_Lookup (30 samples, 0.02%)</title><rect x="69.5" y="980" width="0.2" height="15.0" fill="rgb(216,117,27)" rx="2" ry="2" />
<text x="72.50" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (339 samples, 0.20%)</title><rect x="897.2" y="340" width="2.3" height="15.0" fill="rgb(229,114,50)" rx="2" ry="2" />
<text x="900.15" y="350.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (29 samples, 0.02%)</title><rect x="56.1" y="932" width="0.2" height="15.0" fill="rgb(248,215,40)" rx="2" ry="2" />
<text x="59.08" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayObject::RayObject (1,221 samples, 0.72%)</title><rect x="446.5" y="932" width="8.5" height="15.0" fill="rgb(254,10,17)" rx="2" ry="2" />
<text x="449.51" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (58 samples, 0.03%)</title><rect x="75.2" y="1060" width="0.4" height="15.0" fill="rgb(212,175,0)" rx="2" ry="2" />
<text x="78.19" y="1070.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (74,246 samples, 43.85%)</title><rect x="16.4" y="388" width="517.4" height="15.0" fill="rgb(244,111,42)" rx="2" ry="2" />
<text x="19.38" y="398.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>python`lookdict (20 samples, 0.01%)</title><rect x="95.2" y="900" width="0.2" height="15.0" fill="rgb(231,159,27)" rx="2" ry="2" />
<text x="98.22" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (54 samples, 0.03%)</title><rect x="859.5" y="404" width="0.4" height="15.0" fill="rgb(205,1,26)" rx="2" ry="2" />
<text x="862.47" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (191 samples, 0.11%)</title><rect x="890.2" y="292" width="1.3" height="15.0" fill="rgb(209,63,45)" rx="2" ry="2" />
<text x="893.21" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (375 samples, 0.22%)</title><rect x="777.5" y="436" width="2.6" height="15.0" fill="rgb(227,14,41)" rx="2" ry="2" />
<text x="780.50" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`small_malloc_should_clear (23 samples, 0.01%)</title><rect x="998.2" y="372" width="0.2" height="15.0" fill="rgb(212,187,19)" rx="2" ry="2" />
<text x="1001.24" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (91 samples, 0.05%)</title><rect x="779.5" y="484" width="0.6" height="15.0" fill="rgb(216,141,52)" rx="2" ry="2" />
<text x="782.46" y="494.5" ></text>
</g>
<g >
<title>python`_PyObject_Realloc (232 samples, 0.14%)</title><rect x="325.8" y="1044" width="1.6" height="15.0" fill="rgb(230,5,49)" rx="2" ry="2" />
<text x="328.83" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_tp_richcompare_3ray_7_raylet_BaseID (775 samples, 0.46%)</title><rect x="57.2" y="948" width="5.4" height="15.0" fill="rgb(222,178,12)" rx="2" ry="2" />
<text x="60.21" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerPlasmaStoreProvider::FetchAndGetFromPlasmaStore (21 samples, 0.01%)</title><rect x="533.6" y="564" width="0.2" height="15.0" fill="rgb(218,91,39)" rx="2" ry="2" />
<text x="536.61" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (187 samples, 0.11%)</title><rect x="462.0" y="948" width="1.3" height="15.0" fill="rgb(220,205,14)" rx="2" ry="2" />
<text x="464.98" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream (6,328 samples, 3.74%)</title><rect x="1021.9" y="180" width="44.1" height="15.0" fill="rgb(236,19,30)" rx="2" ry="2" />
<text x="1024.87" y="190.5" >_ray..</text>
</g>
<g >
<title>python`_PyEval_EvalCode (26 samples, 0.02%)</title><rect x="1189.5" y="436" width="0.2" height="15.0" fill="rgb(226,211,37)" rx="2" ry="2" />
<text x="1192.55" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (185 samples, 0.11%)</title><rect x="229.2" y="1028" width="1.3" height="15.0" fill="rgb(247,150,52)" rx="2" ry="2" />
<text x="232.17" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp (15 samples, 0.01%)</title><rect x="993.0" y="164" width="0.1" height="15.0" fill="rgb(216,111,37)" rx="2" ry="2" />
<text x="996.03" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (222 samples, 0.13%)</title><rect x="616.0" y="500" width="1.6" height="15.0" fill="rgb(249,93,29)" rx="2" ry="2" />
<text x="619.04" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`void ray::rpc::GrpcClient::CallMethod(std::__1::unique_ptr (ray::rpc::CoreWorkerService::Stub::*) (27 samples, 0.02%)</title><rect x="985.4" y="292" width="0.2" height="15.0" fill="rgb(211,110,50)" rx="2" ry="2" />
<text x="988.44" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedMessage::_InternalSerialize (614 samples, 0.36%)</title><rect x="967.4" y="420" width="4.2" height="15.0" fill="rgb(205,187,31)" rx="2" ry="2" />
<text x="970.37" y="430.5" ></text>
</g>
<g >
<title>_raylet.so`boost::date_time::c_time::gmtime (77 samples, 0.05%)</title><rect x="987.0" y="228" width="0.6" height="15.0" fill="rgb(252,50,15)" rx="2" ry="2" />
<text x="990.03" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedSubMessage* google::protobuf::Arena::CreateMaybeMessage (242 samples, 0.14%)</title><rect x="1037.1" y="244" width="1.7" height="15.0" fill="rgb(227,21,14)" rx="2" ry="2" />
<text x="1040.07" y="254.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (17 samples, 0.01%)</title><rect x="38.2" y="852" width="0.1" height="15.0" fill="rgb(218,173,7)" rx="2" ry="2" />
<text x="41.20" y="862.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="1189.2" y="356" width="0.1" height="15.0" fill="rgb(234,212,44)" rx="2" ry="2" />
<text x="1192.21" y="366.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__assign_external (689 samples, 0.41%)</title><rect x="1043.4" y="276" width="4.8" height="15.0" fill="rgb(230,227,14)" rx="2" ry="2" />
<text x="1046.35" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`mvm_deallocate_pages (33 samples, 0.02%)</title><rect x="1188.4" y="196" width="0.3" height="15.0" fill="rgb(216,64,14)" rx="2" ry="2" />
<text x="1191.42" y="206.5" ></text>
</g>
<g >
<title>python`getset_get (36 samples, 0.02%)</title><rect x="307.4" y="980" width="0.3" height="15.0" fill="rgb(210,61,50)" rx="2" ry="2" />
<text x="310.44" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::VerifyUTF8 (132 samples, 0.08%)</title><rect x="419.6" y="916" width="0.9" height="15.0" fill="rgb(248,113,8)" rx="2" ry="2" />
<text x="422.59" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (181 samples, 0.11%)</title><rect x="569.2" y="452" width="1.3" height="15.0" fill="rgb(215,90,41)" rx="2" ry="2" />
<text x="572.24" y="462.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (354 samples, 0.21%)</title><rect x="736.1" y="516" width="2.4" height="15.0" fill="rgb(230,202,48)" rx="2" ry="2" />
<text x="739.06" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (74 samples, 0.04%)</title><rect x="671.5" y="548" width="0.5" height="15.0" fill="rgb(226,49,14)" rx="2" ry="2" />
<text x="674.48" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (149 samples, 0.09%)</title><rect x="485.8" y="932" width="1.0" height="15.0" fill="rgb(225,224,17)" rx="2" ry="2" />
<text x="488.81" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (45 samples, 0.03%)</title><rect x="712.2" y="548" width="0.3" height="15.0" fill="rgb(247,109,16)" rx="2" ry="2" />
<text x="715.20" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (38,532 samples, 22.76%)</title><rect x="116.6" y="900" width="268.5" height="15.0" fill="rgb(233,61,23)" rx="2" ry="2" />
<text x="119.56" y="910.5" >_raylet.so`__Pyx_PyObject_CallOneArg</text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::scheduler::do_run_one (22,930 samples, 13.54%)</title><rect x="830.9" y="164" width="159.8" height="15.0" fill="rgb(232,86,37)" rx="2" ry="2" />
<text x="833.93" y="174.5" >_raylet.so`boost::as..</text>
</g>
<g >
<title>libc++abi.dylib`operator new (227 samples, 0.13%)</title><rect x="663.2" y="468" width="1.6" height="15.0" fill="rgb(205,186,38)" rx="2" ry="2" />
<text x="666.18" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (541 samples, 0.32%)</title><rect x="499.7" y="916" width="3.8" height="15.0" fill="rgb(226,212,47)" rx="2" ry="2" />
<text x="502.69" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (25 samples, 0.01%)</title><rect x="470.9" y="996" width="0.2" height="15.0" fill="rgb(221,27,40)" rx="2" ry="2" />
<text x="473.91" y="1006.5" ></text>
</g>
<g >
<title>python`lookdict_split (58 samples, 0.03%)</title><rect x="71.3" y="1044" width="0.4" height="15.0" fill="rgb(232,1,42)" rx="2" ry="2" />
<text x="74.31" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`malloc (15 samples, 0.01%)</title><rect x="401.6" y="884" width="0.1" height="15.0" fill="rgb(223,74,10)" rx="2" ry="2" />
<text x="404.60" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (628 samples, 0.37%)</title><rect x="668.6" y="500" width="4.4" height="15.0" fill="rgb(215,103,9)" rx="2" ry="2" />
<text x="671.64" y="510.5" ></text>
</g>
<g >
<title>python`frame_dealloc (67 samples, 0.04%)</title><rect x="96.7" y="884" width="0.5" height="15.0" fill="rgb(246,167,33)" rx="2" ry="2" />
<text x="99.73" y="894.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (105 samples, 0.06%)</title><rect x="401.9" y="900" width="0.7" height="15.0" fill="rgb(206,42,48)" rx="2" ry="2" />
<text x="404.87" y="910.5" ></text>
</g>
<g >
<title>python`_PyFrame_New_NoTrack (73 samples, 0.04%)</title><rect x="106.0" y="932" width="0.5" height="15.0" fill="rgb(230,18,49)" rx="2" ry="2" />
<text x="108.96" y="942.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__assign_external (426 samples, 0.25%)</title><rect x="416.4" y="932" width="3.0" height="15.0" fill="rgb(217,123,27)" rx="2" ry="2" />
<text x="419.42" y="942.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (74,155 samples, 43.80%)</title><rect x="16.5" y="660" width="516.8" height="15.0" fill="rgb(224,46,10)" rx="2" ry="2" />
<text x="19.47" y="670.5" >python`_PyEval_EvalCode</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (445 samples, 0.26%)</title><rect x="752.6" y="532" width="3.1" height="15.0" fill="rgb(210,5,19)" rx="2" ry="2" />
<text x="755.64" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (98 samples, 0.06%)</title><rect x="667.6" y="564" width="0.7" height="15.0" fill="rgb(254,213,19)" rx="2" ry="2" />
<text x="670.57" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (539 samples, 0.32%)</title><rect x="412.4" y="948" width="3.7" height="15.0" fill="rgb(225,3,22)" rx="2" ry="2" />
<text x="415.38" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (21 samples, 0.01%)</title><rect x="911.4" y="276" width="0.1" height="15.0" fill="rgb(253,183,16)" rx="2" ry="2" />
<text x="914.38" y="286.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__assign_external (492 samples, 0.29%)</title><rect x="1059.1" y="308" width="3.4" height="15.0" fill="rgb(246,175,52)" rx="2" ry="2" />
<text x="1062.10" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`boost::date_time::c_time::gmtime (28 samples, 0.02%)</title><rect x="987.7" y="228" width="0.2" height="15.0" fill="rgb(215,138,19)" rx="2" ry="2" />
<text x="990.74" y="238.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (74,171 samples, 43.81%)</title><rect x="16.4" y="500" width="517.0" height="15.0" fill="rgb(219,214,12)" rx="2" ry="2" />
<text x="19.43" y="510.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (30 samples, 0.02%)</title><rect x="487.1" y="948" width="0.2" height="15.0" fill="rgb(219,159,3)" rx="2" ry="2" />
<text x="490.07" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::destroy_deallocate (24 samples, 0.01%)</title><rect x="655.1" y="436" width="0.2" height="15.0" fill="rgb(227,157,20)" rx="2" ry="2" />
<text x="658.13" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (185 samples, 0.11%)</title><rect x="774.0" y="452" width="1.3" height="15.0" fill="rgb(241,30,49)" rx="2" ry="2" />
<text x="777.03" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (1,582 samples, 0.93%)</title><rect x="536.1" y="340" width="11.0" height="15.0" fill="rgb(246,120,46)" rx="2" ry="2" />
<text x="539.10" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback (7,765 samples, 4.59%)</title><rect x="838.5" y="260" width="54.1" height="15.0" fill="rgb(217,213,7)" rx="2" ry="2" />
<text x="841.52" y="270.5" >_rayl..</text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_85remove_object_ref_reference (1,548 samples, 0.91%)</title><rect x="536.2" y="356" width="10.8" height="15.0" fill="rgb(220,143,3)" rx="2" ry="2" />
<text x="539.22" y="366.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (250 samples, 0.15%)</title><rect x="738.9" y="532" width="1.7" height="15.0" fill="rgb(247,16,48)" rx="2" ry="2" />
<text x="741.87" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (226 samples, 0.13%)</title><rect x="659.1" y="468" width="1.6" height="15.0" fill="rgb(221,129,41)" rx="2" ry="2" />
<text x="662.08" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (209 samples, 0.12%)</title><rect x="1073.6" y="212" width="1.5" height="15.0" fill="rgb(236,78,9)" rx="2" ry="2" />
<text x="1076.64" y="222.5" ></text>
</g>
<g >
<title>python`lookdict_split (18 samples, 0.01%)</title><rect x="68.7" y="980" width="0.1" height="15.0" fill="rgb(219,40,27)" rx="2" ry="2" />
<text x="71.67" y="990.5" ></text>
</g>
<g >
<title>python`PyObject_CallObject (17 samples, 0.01%)</title><rect x="522.4" y="788" width="0.1" height="15.0" fill="rgb(246,195,18)" rx="2" ry="2" />
<text x="525.36" y="798.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (354 samples, 0.21%)</title><rect x="476.9" y="1028" width="2.4" height="15.0" fill="rgb(211,96,47)" rx="2" ry="2" />
<text x="479.85" y="1038.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (76,713 samples, 45.31%)</title><rect x="16.4" y="276" width="534.6" height="15.0" fill="rgb(238,69,47)" rx="2" ry="2" />
<text x="19.37" y="286.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (25 samples, 0.01%)</title><rect x="1153.2" y="292" width="0.2" height="15.0" fill="rgb(209,92,43)" rx="2" ry="2" />
<text x="1156.21" y="302.5" ></text>
</g>
<g >
<title>python`tailmatch.2926 (49 samples, 0.03%)</title><rect x="155.2" y="996" width="0.3" height="15.0" fill="rgb(254,71,39)" rx="2" ry="2" />
<text x="158.16" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`ray::NodeID::NodeID (71 samples, 0.04%)</title><rect x="440.3" y="916" width="0.4" height="15.0" fill="rgb(241,192,15)" rx="2" ry="2" />
<text x="443.25" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::RemoveLocalReference (36,088 samples, 21.32%)</title><rect x="578.1" y="356" width="251.6" height="15.0" fill="rgb(236,211,9)" rx="2" ry="2" />
<text x="581.15" y="366.5" >_raylet.so`ray::core::ReferenceCo..</text>
</g>
<g >
<title>python`_Py_Dealloc (39 samples, 0.02%)</title><rect x="152.3" y="980" width="0.3" height="15.0" fill="rgb(238,54,46)" rx="2" ry="2" />
<text x="155.32" y="990.5" ></text>
</g>
<g >
<title>python`t_bootstrap (114 samples, 0.07%)</title><rect x="1189.2" y="116" width="0.8" height="15.0" fill="rgb(241,209,34)" rx="2" ry="2" />
<text x="1192.21" y="126.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount::~ObjectReferenceCount (2,641 samples, 1.56%)</title><rect x="749.1" y="468" width="18.4" height="15.0" fill="rgb(210,181,12)" rx="2" ry="2" />
<text x="752.12" y="478.5" ></text>
</g>
<g >
<title>python`_PyThreadState_UncheckedGet (15 samples, 0.01%)</title><rect x="380.3" y="948" width="0.1" height="15.0" fill="rgb(243,156,45)" rx="2" ry="2" />
<text x="383.27" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (98 samples, 0.06%)</title><rect x="780.8" y="452" width="0.7" height="15.0" fill="rgb(206,195,22)" rx="2" ry="2" />
<text x="783.79" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_9ObjectRef_1__init__ (40,441 samples, 23.89%)</title><rect x="115.1" y="884" width="281.8" height="15.0" fill="rgb(234,76,51)" rx="2" ry="2" />
<text x="118.09" y="894.5" >_raylet.so`__pyx_pw_3ray_7_raylet_9Ob..</text>
</g>
<g >
<title>_raylet.so`__Pyx_PyUnicode_Equals (181 samples, 0.11%)</title><rect x="221.1" y="964" width="1.3" height="15.0" fill="rgb(247,170,7)" rx="2" ry="2" />
<text x="224.14" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception (20 samples, 0.01%)</title><rect x="985.4" y="340" width="0.2" height="15.0" fill="rgb(229,205,20)" rx="2" ry="2" />
<text x="988.44" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (39 samples, 0.02%)</title><rect x="1163.1" y="260" width="0.2" height="15.0" fill="rgb(248,82,11)" rx="2" ry="2" />
<text x="1166.08" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_combiner_continue_exec_ctx (66 samples, 0.04%)</title><rect x="830.1" y="164" width="0.5" height="15.0" fill="rgb(230,186,26)" rx="2" ry="2" />
<text x="833.15" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (172 samples, 0.10%)</title><rect x="1112.8" y="260" width="1.2" height="15.0" fill="rgb(227,127,40)" rx="2" ry="2" />
<text x="1115.83" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (126 samples, 0.07%)</title><rect x="821.4" y="436" width="0.9" height="15.0" fill="rgb(218,120,23)" rx="2" ry="2" />
<text x="824.43" y="446.5" ></text>
</g>
<g >
<title>python`Py_LeaveRecursiveCall (79 samples, 0.05%)</title><rect x="249.2" y="964" width="0.6" height="15.0" fill="rgb(215,140,3)" rx="2" ry="2" />
<text x="252.20" y="974.5" ></text>
</g>
<g >
<title>python`lookdict_split (72 samples, 0.04%)</title><rect x="65.4" y="916" width="0.5" height="15.0" fill="rgb(215,200,1)" rx="2" ry="2" />
<text x="68.42" y="926.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (68 samples, 0.04%)</title><rect x="28.4" y="852" width="0.5" height="15.0" fill="rgb(230,204,10)" rx="2" ry="2" />
<text x="31.44" y="862.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (73 samples, 0.04%)</title><rect x="1188.3" y="164" width="0.5" height="15.0" fill="rgb(210,126,6)" rx="2" ry="2" />
<text x="1191.27" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::RayObject* google::protobuf::Arena::CreateMaybeMessage (246 samples, 0.15%)</title><rect x="427.2" y="932" width="1.7" height="15.0" fill="rgb(215,189,46)" rx="2" ry="2" />
<text x="430.17" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (164 samples, 0.10%)</title><rect x="1029.7" y="308" width="1.1" height="15.0" fill="rgb(240,182,36)" rx="2" ry="2" />
<text x="1032.68" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (223 samples, 0.13%)</title><rect x="429.3" y="980" width="1.5" height="15.0" fill="rgb(210,204,31)" rx="2" ry="2" />
<text x="432.28" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_31get_objects (58 samples, 0.03%)</title><rect x="533.4" y="516" width="0.4" height="15.0" fill="rgb(217,137,31)" rx="2" ry="2" />
<text x="536.37" y="526.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_cond_signal (42 samples, 0.02%)</title><rect x="545.2" y="404" width="0.3" height="15.0" fill="rgb(219,119,10)" rx="2" ry="2" />
<text x="548.19" y="414.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (41 samples, 0.02%)</title><rect x="379.2" y="948" width="0.3" height="15.0" fill="rgb(209,200,19)" rx="2" ry="2" />
<text x="382.24" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (55 samples, 0.03%)</title><rect x="1116.3" y="244" width="0.4" height="15.0" fill="rgb(218,10,7)" rx="2" ry="2" />
<text x="1119.33" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (103 samples, 0.06%)</title><rect x="774.6" y="468" width="0.7" height="15.0" fill="rgb(228,179,29)" rx="2" ry="2" />
<text x="777.59" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`receiving_initial_metadata_ready (26 samples, 0.02%)</title><rect x="1000.0" y="276" width="0.2" height="15.0" fill="rgb(209,12,11)" rx="2" ry="2" />
<text x="1002.97" y="286.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (619 samples, 0.37%)</title><rect x="479.5" y="964" width="4.3" height="15.0" fill="rgb(221,12,43)" rx="2" ry="2" />
<text x="482.53" y="974.5" ></text>
</g>
<g >
<title>python`builtin_hasattr (207 samples, 0.12%)</title><rect x="134.4" y="1044" width="1.5" height="15.0" fill="rgb(249,13,44)" rx="2" ry="2" />
<text x="137.41" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (58 samples, 0.03%)</title><rect x="612.6" y="452" width="0.4" height="15.0" fill="rgb(207,38,35)" rx="2" ry="2" />
<text x="615.57" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallNoArg (164 samples, 0.10%)</title><rect x="57.5" y="964" width="1.1" height="15.0" fill="rgb(205,32,51)" rx="2" ry="2" />
<text x="60.46" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_13get_current_job_id (1,295 samples, 0.76%)</title><rect x="71.9" y="996" width="9.0" height="15.0" fill="rgb(246,14,52)" rx="2" ry="2" />
<text x="74.86" y="1006.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_unlock (43 samples, 0.03%)</title><rect x="545.9" y="404" width="0.3" height="15.0" fill="rgb(208,40,17)" rx="2" ry="2" />
<text x="548.86" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (488 samples, 0.29%)</title><rect x="567.3" y="420" width="3.4" height="15.0" fill="rgb(225,55,21)" rx="2" ry="2" />
<text x="570.27" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (465 samples, 0.27%)</title><rect x="510.5" y="916" width="3.2" height="15.0" fill="rgb(229,207,40)" rx="2" ry="2" />
<text x="513.50" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::ByteSizeLong (303 samples, 0.18%)</title><rect x="964.5" y="436" width="2.1" height="15.0" fill="rgb(224,220,51)" rx="2" ry="2" />
<text x="967.45" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (17 samples, 0.01%)</title><rect x="855.8" y="292" width="0.1" height="15.0" fill="rgb(243,168,35)" rx="2" ry="2" />
<text x="858.79" y="302.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`poll (1,903 samples, 1.12%)</title><rect x="1007.1" y="164" width="13.3" height="15.0" fill="rgb(221,110,39)" rx="2" ry="2" />
<text x="1010.14" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (3,142 samples, 1.86%)</title><rect x="352.3" y="964" width="21.9" height="15.0" fill="rgb(216,225,16)" rx="2" ry="2" />
<text x="355.26" y="974.5" >_..</text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (585 samples, 0.35%)</title><rect x="479.6" y="980" width="4.1" height="15.0" fill="rgb(247,140,42)" rx="2" ry="2" />
<text x="482.65" y="990.5" ></text>
</g>
<g >
<title>python`pymain_run_python (116,701 samples, 68.93%)</title><rect x="16.4" y="148" width="813.3" height="15.0" fill="rgb(240,83,31)" rx="2" ry="2" />
<text x="19.36" y="158.5" >python`pymain_run_python</text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (25 samples, 0.01%)</title><rect x="1189.4" y="372" width="0.1" height="15.0" fill="rgb(253,51,48)" rx="2" ry="2" />
<text x="1192.35" y="382.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (22 samples, 0.01%)</title><rect x="1189.4" y="436" width="0.1" height="15.0" fill="rgb(235,51,34)" rx="2" ry="2" />
<text x="1192.37" y="446.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (475 samples, 0.28%)</title><rect x="1027.6" y="244" width="3.3" height="15.0" fill="rgb(252,90,31)" rx="2" ry="2" />
<text x="1030.60" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (31 samples, 0.02%)</title><rect x="951.8" y="324" width="0.2" height="15.0" fill="rgb(222,134,43)" rx="2" ry="2" />
<text x="954.80" y="334.5" ></text>
</g>
<g >
<title>python`lookdict_unicode (24 samples, 0.01%)</title><rect x="396.0" y="932" width="0.2" height="15.0" fill="rgb(226,204,31)" rx="2" ry="2" />
<text x="399.05" y="942.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (32 samples, 0.02%)</title><rect x="550.0" y="372" width="0.3" height="15.0" fill="rgb(225,155,28)" rx="2" ry="2" />
<text x="553.03" y="382.5" ></text>
</g>
<g >
<title>python`call_function (74,157 samples, 43.80%)</title><rect x="16.5" y="628" width="516.8" height="15.0" fill="rgb(245,151,32)" rx="2" ry="2" />
<text x="19.47" y="638.5" >python`call_function</text>
</g>
<g >
<title>libsystem_kernel.dylib`kevent (266 samples, 0.16%)</title><rect x="988.3" y="180" width="1.8" height="15.0" fill="rgb(236,40,9)" rx="2" ry="2" />
<text x="991.29" y="190.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (325 samples, 0.19%)</title><rect x="59.7" y="964" width="2.3" height="15.0" fill="rgb(249,0,23)" rx="2" ry="2" />
<text x="62.73" y="974.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (80 samples, 0.05%)</title><rect x="109.0" y="980" width="0.5" height="15.0" fill="rgb(219,3,44)" rx="2" ry="2" />
<text x="111.97" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (100 samples, 0.06%)</title><rect x="1117.3" y="212" width="0.6" height="15.0" fill="rgb(205,1,22)" rx="2" ry="2" />
<text x="1120.25" y="222.5" ></text>
</g>
<g >
<title>python`_PyFrame_New_NoTrack (83 samples, 0.05%)</title><rect x="96.0" y="884" width="0.6" height="15.0" fill="rgb(239,18,5)" rx="2" ry="2" />
<text x="99.01" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayLog::IsLevelEnabled (27 samples, 0.02%)</title><rect x="611.5" y="420" width="0.2" height="15.0" fill="rgb(218,130,38)" rx="2" ry="2" />
<text x="614.50" y="430.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (168 samples, 0.10%)</title><rect x="908.0" y="260" width="1.1" height="15.0" fill="rgb(239,181,12)" rx="2" ry="2" />
<text x="910.96" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::scheduler::run (15 samples, 0.01%)</title><rect x="830.8" y="132" width="0.1" height="15.0" fill="rgb(234,42,43)" rx="2" ry="2" />
<text x="833.78" y="142.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::to_string (32 samples, 0.02%)</title><rect x="458.1" y="964" width="0.2" height="15.0" fill="rgb(208,102,30)" rx="2" ry="2" />
<text x="461.08" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (162 samples, 0.10%)</title><rect x="952.0" y="308" width="1.1" height="15.0" fill="rgb(232,209,22)" rx="2" ry="2" />
<text x="955.02" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::io_context::run (15 samples, 0.01%)</title><rect x="830.8" y="116" width="0.1" height="15.0" fill="rgb(248,157,53)" rx="2" ry="2" />
<text x="833.78" y="126.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="1189.5" y="372" width="0.2" height="15.0" fill="rgb(209,167,21)" rx="2" ry="2" />
<text x="1192.55" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (24 samples, 0.01%)</title><rect x="716.5" y="548" width="0.2" height="15.0" fill="rgb(254,64,35)" rx="2" ry="2" />
<text x="719.52" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::RepeatedPtrField::~RepeatedPtrField (21 samples, 0.01%)</title><rect x="748.9" y="468" width="0.1" height="15.0" fill="rgb(251,89,19)" rx="2" ry="2" />
<text x="751.85" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (535 samples, 0.32%)</title><rect x="434.1" y="916" width="3.7" height="15.0" fill="rgb(220,67,14)" rx="2" ry="2" />
<text x="437.06" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (407 samples, 0.24%)</title><rect x="1028.0" y="276" width="2.8" height="15.0" fill="rgb(249,159,25)" rx="2" ry="2" />
<text x="1030.99" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,250 samples, 0.74%)</title><rect x="810.9" y="420" width="8.7" height="15.0" fill="rgb(240,216,27)" rx="2" ry="2" />
<text x="813.90" y="430.5" ></text>
</g>
<g >
<title>python`PyGILState_Ensure (28 samples, 0.02%)</title><rect x="239.2" y="964" width="0.2" height="15.0" fill="rgb(222,191,13)" rx="2" ry="2" />
<text x="242.22" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal (10,524 samples, 6.22%)</title><rect x="993.4" y="132" width="73.4" height="15.0" fill="rgb(250,170,24)" rx="2" ry="2" />
<text x="996.43" y="142.5" >_raylet...</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (161 samples, 0.10%)</title><rect x="462.2" y="980" width="1.1" height="15.0" fill="rgb(245,228,6)" rx="2" ry="2" />
<text x="465.16" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::RepeatedPtrField::~RepeatedPtrField (713 samples, 0.42%)</title><rect x="432.9" y="900" width="4.9" height="15.0" fill="rgb(251,179,51)" rx="2" ry="2" />
<text x="435.87" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::scheduler::post_immediate_completion (142 samples, 0.08%)</title><rect x="1067.0" y="180" width="1.0" height="15.0" fill="rgb(246,225,6)" rx="2" ry="2" />
<text x="1070.03" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::InternalExtend (300 samples, 0.18%)</title><rect x="717.7" y="468" width="2.1" height="15.0" fill="rgb(216,12,23)" rx="2" ry="2" />
<text x="720.68" y="478.5" ></text>
</g>
<g >
<title>python`call_function (67,589 samples, 39.92%)</title><rect x="46.1" y="836" width="471.1" height="15.0" fill="rgb(211,60,8)" rx="2" ry="2" />
<text x="49.14" y="846.5" >python`call_function</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (77 samples, 0.05%)</title><rect x="433.5" y="932" width="0.5" height="15.0" fill="rgb(246,217,17)" rx="2" ry="2" />
<text x="436.49" y="942.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (27 samples, 0.02%)</title><rect x="808.3" y="484" width="0.1" height="15.0" fill="rgb(208,41,48)" rx="2" ry="2" />
<text x="811.25" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (19 samples, 0.01%)</title><rect x="998.8" y="324" width="0.1" height="15.0" fill="rgb(230,33,47)" rx="2" ry="2" />
<text x="1001.77" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (368 samples, 0.22%)</title><rect x="492.3" y="916" width="2.6" height="15.0" fill="rgb(206,40,44)" rx="2" ry="2" />
<text x="495.29" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`void boost::asio::io_context::initiate_post::operator() (150 samples, 0.09%)</title><rect x="1067.0" y="164" width="1.0" height="15.0" fill="rgb(210,220,2)" rx="2" ry="2" />
<text x="1069.97" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (876 samples, 0.52%)</title><rect x="950.0" y="292" width="6.1" height="15.0" fill="rgb(223,145,10)" rx="2" ry="2" />
<text x="952.98" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (43 samples, 0.03%)</title><rect x="374.7" y="964" width="0.3" height="15.0" fill="rgb(248,134,15)" rx="2" ry="2" />
<text x="377.73" y="974.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_strlen (70 samples, 0.04%)</title><rect x="161.4" y="1012" width="0.5" height="15.0" fill="rgb(210,32,24)" rx="2" ry="2" />
<text x="164.38" y="1022.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (2,252 samples, 1.33%)</title><rect x="66.1" y="932" width="15.7" height="15.0" fill="rgb(220,101,18)" rx="2" ry="2" />
<text x="69.14" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`void* std::__1::__thread_proxy (51,428 samples, 30.38%)</title><rect x="830.8" y="100" width="358.4" height="15.0" fill="rgb(215,197,28)" rx="2" ry="2" />
<text x="833.77" y="110.5" >_raylet.so`void* std::__1::__thread_proxy</text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::raw_hash_set (594 samples, 0.35%)</title><rect x="613.7" y="452" width="4.1" height="15.0" fill="rgb(251,209,45)" rx="2" ry="2" />
<text x="616.66" y="462.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (1,357 samples, 0.80%)</title><rect x="296.6" y="980" width="9.4" height="15.0" fill="rgb(242,66,16)" rx="2" ry="2" />
<text x="299.59" y="990.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__grow_by_and_replace (544 samples, 0.32%)</title><rect x="1031.2" y="260" width="3.8" height="15.0" fill="rgb(247,72,41)" rx="2" ry="2" />
<text x="1034.21" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`aligned_malloc (814 samples, 0.48%)</title><rect x="447.4" y="964" width="5.7" height="15.0" fill="rgb(226,5,6)" rx="2" ry="2" />
<text x="450.45" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (463 samples, 0.27%)</title><rect x="495.9" y="900" width="3.2" height="15.0" fill="rgb(224,70,53)" rx="2" ry="2" />
<text x="498.91" y="910.5" ></text>
</g>
<g >
<title>python`method_vectorcall_NOARGS (566 samples, 0.33%)</title><rect x="399.0" y="852" width="3.9" height="15.0" fill="rgb(240,96,6)" rx="2" ry="2" />
<text x="401.98" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (39,914 samples, 23.57%)</title><rect x="551.5" y="324" width="278.2" height="15.0" fill="rgb(219,71,0)" rx="2" ry="2" />
<text x="554.49" y="334.5" >_raylet.so`__Pyx_PyObject_CallOneArg</text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (37 samples, 0.02%)</title><rect x="1155.5" y="244" width="0.2" height="15.0" fill="rgb(250,226,29)" rx="2" ry="2" />
<text x="1158.46" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_mu_unlock (16 samples, 0.01%)</title><rect x="995.6" y="196" width="0.1" height="15.0" fill="rgb(252,62,5)" rx="2" ry="2" />
<text x="998.60" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (21 samples, 0.01%)</title><rect x="426.4" y="1028" width="0.1" height="15.0" fill="rgb(250,97,24)" rx="2" ry="2" />
<text x="429.38" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (164 samples, 0.10%)</title><rect x="387.1" y="932" width="1.1" height="15.0" fill="rgb(238,169,48)" rx="2" ry="2" />
<text x="390.10" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference* google::protobuf::Arena::CreateMaybeMessage (204 samples, 0.12%)</title><rect x="1048.3" y="260" width="1.4" height="15.0" fill="rgb(223,92,42)" rx="2" ry="2" />
<text x="1051.26" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`write_action_begin_locked (15 samples, 0.01%)</title><rect x="999.7" y="212" width="0.1" height="15.0" fill="rgb(232,66,14)" rx="2" ry="2" />
<text x="1002.67" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::~ReferenceCounter (348 samples, 0.21%)</title><rect x="12.9" y="356" width="2.4" height="15.0" fill="rgb(253,104,32)" rx="2" ry="2" />
<text x="15.91" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (20 samples, 0.01%)</title><rect x="741.5" y="596" width="0.2" height="15.0" fill="rgb(239,214,4)" rx="2" ry="2" />
<text x="744.53" y="606.5" ></text>
</g>
<g >
<title>python`long_to_decimal_string_internal (478 samples, 0.28%)</title><rect x="320.9" y="1028" width="3.3" height="15.0" fill="rgb(211,106,22)" rx="2" ry="2" />
<text x="323.89" y="1038.5" ></text>
</g>
<g >
<title>python`_PyObject_CallFunction_SizeT (1,191 samples, 0.70%)</title><rect x="523.8" y="804" width="8.3" height="15.0" fill="rgb(211,153,17)" rx="2" ry="2" />
<text x="526.76" y="814.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (428 samples, 0.25%)</title><rect x="665.4" y="484" width="3.0" height="15.0" fill="rgb(246,101,4)" rx="2" ry="2" />
<text x="668.39" y="494.5" ></text>
</g>
<g >
<title>python`meth_dealloc (1,069 samples, 0.63%)</title><rect x="337.7" y="964" width="7.4" height="15.0" fill="rgb(227,118,20)" rx="2" ry="2" />
<text x="340.65" y="974.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_cvwait (30 samples, 0.02%)</title><rect x="829.8" y="148" width="0.2" height="15.0" fill="rgb(225,17,2)" rx="2" ry="2" />
<text x="832.76" y="158.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (74,246 samples, 43.85%)</title><rect x="16.4" y="356" width="517.4" height="15.0" fill="rgb(225,214,4)" rx="2" ry="2" />
<text x="19.38" y="366.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_6BaseID_9__hash__ (27 samples, 0.02%)</title><rect x="56.6" y="916" width="0.2" height="15.0" fill="rgb(218,121,38)" rx="2" ry="2" />
<text x="59.57" y="926.5" ></text>
</g>
<g >
<title>python`MarkupIterator_next (452 samples, 0.27%)</title><rect x="317.3" y="1012" width="3.1" height="15.0" fill="rgb(254,79,1)" rx="2" ry="2" />
<text x="320.28" y="1022.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (9,284 samples, 5.48%)</title><rect x="48.9" y="852" width="64.7" height="15.0" fill="rgb(237,201,20)" rx="2" ry="2" />
<text x="51.91" y="862.5" >python`..</text>
</g>
<g >
<title>python`PyNumber_AsSsize_t (45 samples, 0.03%)</title><rect x="111.2" y="900" width="0.4" height="15.0" fill="rgb(222,83,10)" rx="2" ry="2" />
<text x="114.24" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (266 samples, 0.16%)</title><rect x="756.2" y="500" width="1.8" height="15.0" fill="rgb(225,65,8)" rx="2" ry="2" />
<text x="759.15" y="510.5" ></text>
</g>
<g >
<title>python`frame_dealloc (16 samples, 0.01%)</title><rect x="106.6" y="916" width="0.1" height="15.0" fill="rgb(235,16,27)" rx="2" ry="2" />
<text x="109.63" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (16 samples, 0.01%)</title><rect x="767.3" y="516" width="0.1" height="15.0" fill="rgb(227,137,53)" rx="2" ry="2" />
<text x="770.26" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (95 samples, 0.06%)</title><rect x="650.2" y="484" width="0.7" height="15.0" fill="rgb(207,138,3)" rx="2" ry="2" />
<text x="653.23" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::Reference::~Reference (1,971 samples, 1.16%)</title><rect x="645.1" y="420" width="13.7" height="15.0" fill="rgb(248,161,20)" rx="2" ry="2" />
<text x="648.08" y="430.5" ></text>
</g>
<g >
<title>_raylet.so`request_matcher_kill_requests(grpc_server*, (17 samples, 0.01%)</title><rect x="15.8" y="436" width="0.1" height="15.0" fill="rgb(246,71,33)" rx="2" ry="2" />
<text x="18.83" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_start_batch (542 samples, 0.32%)</title><rect x="957.3" y="292" width="3.8" height="15.0" fill="rgb(216,47,5)" rx="2" ry="2" />
<text x="960.33" y="302.5" ></text>
</g>
<g >
<title>python`builtin_getattr (438 samples, 0.26%)</title><rect x="107.2" y="916" width="3.1" height="15.0" fill="rgb(239,223,24)" rx="2" ry="2" />
<text x="110.20" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (15 samples, 0.01%)</title><rect x="985.1" y="244" width="0.1" height="15.0" fill="rgb(245,163,42)" rx="2" ry="2" />
<text x="988.06" y="254.5" ></text>
</g>
<g >
<title>python`PyCMethod_New (92 samples, 0.05%)</title><rect x="392.7" y="916" width="0.7" height="15.0" fill="rgb(236,117,1)" rx="2" ry="2" />
<text x="395.75" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert (466 samples, 0.28%)</title><rect x="641.6" y="452" width="3.2" height="15.0" fill="rgb(216,63,46)" rx="2" ry="2" />
<text x="644.56" y="462.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_cond_signal (32 samples, 0.02%)</title><rect x="89.9" y="980" width="0.3" height="15.0" fill="rgb(209,96,34)" rx="2" ry="2" />
<text x="92.93" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`tcp_handle_read (45 samples, 0.03%)</title><rect x="1001.4" y="196" width="0.4" height="15.0" fill="rgb(244,39,31)" rx="2" ry="2" />
<text x="1004.44" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`AbslInternalPerThreadSemWait_lts_20210324 (1,941 samples, 1.15%)</title><rect x="683.3" y="516" width="13.6" height="15.0" fill="rgb(239,157,48)" rx="2" ry="2" />
<text x="686.32" y="526.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::basic_string (19 samples, 0.01%)</title><rect x="641.0" y="452" width="0.1" height="15.0" fill="rgb(208,86,27)" rx="2" ry="2" />
<text x="644.01" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (116 samples, 0.07%)</title><rect x="1159.1" y="228" width="0.8" height="15.0" fill="rgb(235,107,47)" rx="2" ry="2" />
<text x="1162.10" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (16 samples, 0.01%)</title><rect x="468.0" y="1028" width="0.2" height="15.0" fill="rgb(224,146,6)" rx="2" ry="2" />
<text x="471.04" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (80 samples, 0.05%)</title><rect x="903.8" y="308" width="0.5" height="15.0" fill="rgb(251,113,49)" rx="2" ry="2" />
<text x="906.77" y="318.5" ></text>
</g>
<g >
<title>python`call_function (37 samples, 0.02%)</title><rect x="1189.7" y="404" width="0.3" height="15.0" fill="rgb(213,19,26)" rx="2" ry="2" />
<text x="1192.74" y="414.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`poll (185 samples, 0.11%)</title><rect x="991.7" y="164" width="1.3" height="15.0" fill="rgb(245,113,46)" rx="2" ry="2" />
<text x="994.71" y="174.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (199 samples, 0.12%)</title><rect x="469.7" y="916" width="1.4" height="15.0" fill="rgb(213,80,35)" rx="2" ry="2" />
<text x="472.73" y="926.5" ></text>
</g>
<g >
<title>python`_Py_Dealloc (64 samples, 0.04%)</title><rect x="380.4" y="948" width="0.4" height="15.0" fill="rgb(226,177,42)" rx="2" ry="2" />
<text x="383.37" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (60 samples, 0.04%)</title><rect x="376.4" y="980" width="0.5" height="15.0" fill="rgb(251,126,40)" rx="2" ry="2" />
<text x="379.45" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (39 samples, 0.02%)</title><rect x="951.7" y="308" width="0.3" height="15.0" fill="rgb(237,127,16)" rx="2" ry="2" />
<text x="954.74" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::LockSlow (2,134 samples, 1.26%)</title><rect x="682.1" y="452" width="14.9" height="15.0" fill="rgb(217,4,43)" rx="2" ry="2" />
<text x="685.13" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (39 samples, 0.02%)</title><rect x="891.9" y="292" width="0.3" height="15.0" fill="rgb(214,69,6)" rx="2" ry="2" />
<text x="894.93" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_89deserialize_and_register_object_ref (15,917 samples, 9.40%)</title><rect x="403.7" y="868" width="110.9" height="15.0" fill="rgb(249,53,22)" rx="2" ry="2" />
<text x="406.68" y="878.5" >_raylet.so`__..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (272 samples, 0.16%)</title><rect x="417.2" y="1012" width="1.9" height="15.0" fill="rgb(214,217,49)" rx="2" ry="2" />
<text x="420.17" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_malloc (16 samples, 0.01%)</title><rect x="891.5" y="292" width="0.2" height="15.0" fill="rgb(249,135,14)" rx="2" ry="2" />
<text x="894.54" y="302.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (405 samples, 0.24%)</title><rect x="476.6" y="980" width="2.8" height="15.0" fill="rgb(206,130,19)" rx="2" ry="2" />
<text x="479.61" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`posix_memalign (783 samples, 0.46%)</title><rect x="447.7" y="980" width="5.4" height="15.0" fill="rgb(225,91,8)" rx="2" ry="2" />
<text x="450.66" y="990.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (51 samples, 0.03%)</title><rect x="56.0" y="916" width="0.3" height="15.0" fill="rgb(209,219,50)" rx="2" ry="2" />
<text x="58.95" y="926.5" ></text>
</g>
<g >
<title>python`do_mkvalue (37 samples, 0.02%)</title><rect x="531.8" y="852" width="0.2" height="15.0" fill="rgb(206,37,25)" rx="2" ry="2" />
<text x="534.76" y="862.5" ></text>
</g>
<g >
<title>python`PyThread_acquire_lock_timed (16 samples, 0.01%)</title><rect x="1189.8" y="532" width="0.1" height="15.0" fill="rgb(211,96,7)" rx="2" ry="2" />
<text x="1192.78" y="542.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (589 samples, 0.35%)</title><rect x="631.7" y="484" width="4.1" height="15.0" fill="rgb(236,223,52)" rx="2" ry="2" />
<text x="634.67" y="494.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (28 samples, 0.02%)</title><rect x="819.3" y="468" width="0.2" height="15.0" fill="rgb(252,169,22)" rx="2" ry="2" />
<text x="822.32" y="478.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memcmp (23 samples, 0.01%)</title><rect x="59.2" y="996" width="0.1" height="15.0" fill="rgb(245,205,23)" rx="2" ry="2" />
<text x="62.18" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (155 samples, 0.09%)</title><rect x="1115.6" y="228" width="1.1" height="15.0" fill="rgb(234,85,18)" rx="2" ry="2" />
<text x="1118.63" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (29 samples, 0.02%)</title><rect x="765.7" y="500" width="0.2" height="15.0" fill="rgb(233,161,18)" rx="2" ry="2" />
<text x="768.70" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (464 samples, 0.27%)</title><rect x="500.2" y="948" width="3.3" height="15.0" fill="rgb(208,111,42)" rx="2" ry="2" />
<text x="503.22" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_combiner_continue_exec_ctx (386 samples, 0.23%)</title><rect x="958.2" y="324" width="2.7" height="15.0" fill="rgb(244,91,35)" rx="2" ry="2" />
<text x="961.19" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (304 samples, 0.18%)</title><rect x="647.7" y="484" width="2.1" height="15.0" fill="rgb(250,129,18)" rx="2" ry="2" />
<text x="650.67" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (83 samples, 0.05%)</title><rect x="741.7" y="596" width="0.6" height="15.0" fill="rgb(243,102,5)" rx="2" ry="2" />
<text x="744.69" y="606.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (34 samples, 0.02%)</title><rect x="786.4" y="468" width="0.3" height="15.0" fill="rgb(239,13,5)" rx="2" ry="2" />
<text x="789.45" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`hs_recv_initial_metadata_ready (95 samples, 0.06%)</title><rect x="999.8" y="196" width="0.7" height="15.0" fill="rgb(253,24,24)" rx="2" ry="2" />
<text x="1002.83" y="206.5" ></text>
</g>
<g >
<title>python`PyTuple_New (20 samples, 0.01%)</title><rect x="76.1" y="1060" width="0.2" height="15.0" fill="rgb(242,133,30)" rx="2" ry="2" />
<text x="79.11" y="1070.5" ></text>
</g>
<g >
<title>python`countformat (24 samples, 0.01%)</title><rect x="530.8" y="852" width="0.1" height="15.0" fill="rgb(214,136,12)" rx="2" ry="2" />
<text x="533.76" y="862.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (26 samples, 0.02%)</title><rect x="61.2" y="1028" width="0.2" height="15.0" fill="rgb(209,216,17)" rx="2" ry="2" />
<text x="64.20" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (52 samples, 0.03%)</title><rect x="1114.8" y="212" width="0.4" height="15.0" fill="rgb(205,131,33)" rx="2" ry="2" />
<text x="1117.83" y="222.5" ></text>
</g>
<g >
<title>python`call_function (17 samples, 0.01%)</title><rect x="1189.2" y="452" width="0.1" height="15.0" fill="rgb(235,200,44)" rx="2" ry="2" />
<text x="1192.23" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (39 samples, 0.02%)</title><rect x="924.2" y="420" width="0.3" height="15.0" fill="rgb(224,135,35)" rx="2" ry="2" />
<text x="927.20" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (524 samples, 0.31%)</title><rect x="1055.3" y="324" width="3.6" height="15.0" fill="rgb(245,114,10)" rx="2" ry="2" />
<text x="1058.26" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (156 samples, 0.09%)</title><rect x="747.2" y="468" width="1.1" height="15.0" fill="rgb(239,196,18)" rx="2" ry="2" />
<text x="750.22" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_malloc (19 samples, 0.01%)</title><rect x="643.9" y="500" width="0.2" height="15.0" fill="rgb(221,45,47)" rx="2" ry="2" />
<text x="646.95" y="510.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (195 samples, 0.12%)</title><rect x="461.9" y="932" width="1.4" height="15.0" fill="rgb(217,6,46)" rx="2" ry="2" />
<text x="464.95" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerContext::Clear (51 samples, 0.03%)</title><rect x="1069.7" y="164" width="0.4" height="15.0" fill="rgb(244,194,40)" rx="2" ry="2" />
<text x="1072.72" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallNoArg (113 samples, 0.07%)</title><rect x="91.6" y="964" width="0.8" height="15.0" fill="rgb(221,52,38)" rx="2" ry="2" />
<text x="94.61" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::Status std::__1::__invoke_void_return_wrapper::__call (2,617 samples, 1.55%)</title><rect x="962.0" y="340" width="18.2" height="15.0" fill="rgb(232,113,22)" rx="2" ry="2" />
<text x="965.00" y="350.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (23 samples, 0.01%)</title><rect x="56.1" y="948" width="0.2" height="15.0" fill="rgb(211,48,7)" rx="2" ry="2" />
<text x="59.12" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::UTF8GenericScanFastAscii (61 samples, 0.04%)</title><rect x="969.7" y="516" width="0.4" height="15.0" fill="rgb(247,105,21)" rx="2" ry="2" />
<text x="972.68" y="526.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (18 samples, 0.01%)</title><rect x="550.7" y="324" width="0.1" height="15.0" fill="rgb(205,34,35)" rx="2" ry="2" />
<text x="553.68" y="334.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (74,246 samples, 43.85%)</title><rect x="16.4" y="340" width="517.4" height="15.0" fill="rgb(254,65,10)" rx="2" ry="2" />
<text x="19.38" y="350.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>_raylet.so`void std::__1::__invoke_void_return_wrapper::__call (3,160 samples, 1.87%)</title><rect x="961.9" y="260" width="22.0" height="15.0" fill="rgb(210,190,19)" rx="2" ry="2" />
<text x="964.89" y="270.5" >_..</text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (47 samples, 0.03%)</title><rect x="911.6" y="276" width="0.3" height="15.0" fill="rgb(226,26,47)" rx="2" ry="2" />
<text x="914.62" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (139 samples, 0.08%)</title><rect x="494.9" y="900" width="1.0" height="15.0" fill="rgb(207,63,13)" rx="2" ry="2" />
<text x="497.94" y="910.5" ></text>
</g>
<g >
<title>python`do_string_format (17 samples, 0.01%)</title><rect x="335.9" y="964" width="0.1" height="15.0" fill="rgb(214,6,6)" rx="2" ry="2" />
<text x="338.86" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (468 samples, 0.28%)</title><rect x="904.4" y="276" width="3.2" height="15.0" fill="rgb(227,140,27)" rx="2" ry="2" />
<text x="907.37" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`malloc (25 samples, 0.01%)</title><rect x="225.3" y="980" width="0.2" height="15.0" fill="rgb(221,144,1)" rx="2" ry="2" />
<text x="228.30" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyFunction_FastCallNoKw (1,144 samples, 0.68%)</title><rect x="129.1" y="980" width="8.0" height="15.0" fill="rgb(246,198,12)" rx="2" ry="2" />
<text x="132.10" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (255 samples, 0.15%)</title><rect x="715.6" y="516" width="1.8" height="15.0" fill="rgb(224,56,54)" rx="2" ry="2" />
<text x="718.65" y="526.5" ></text>
</g>
<g >
<title>libdyld.dylib`start (117,614 samples, 69.47%)</title><rect x="10.0" y="84" width="819.7" height="15.0" fill="rgb(208,211,14)" rx="2" ry="2" />
<text x="13.00" y="94.5" >libdyld.dylib`start</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (184 samples, 0.11%)</title><rect x="1037.4" y="292" width="1.3" height="15.0" fill="rgb(216,33,22)" rx="2" ry="2" />
<text x="1040.43" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (780 samples, 0.46%)</title><rect x="730.2" y="548" width="5.4" height="15.0" fill="rgb(240,202,20)" rx="2" ry="2" />
<text x="733.16" y="558.5" ></text>
</g>
<g >
<title>python`tupledealloc (32 samples, 0.02%)</title><rect x="530.4" y="836" width="0.2" height="15.0" fill="rgb(205,198,16)" rx="2" ry="2" />
<text x="533.36" y="846.5" ></text>
</g>
<g >
<title>python`PyCMethod_New (124 samples, 0.07%)</title><rect x="93.6" y="980" width="0.8" height="15.0" fill="rgb(221,26,16)" rx="2" ry="2" />
<text x="96.57" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (202 samples, 0.12%)</title><rect x="746.9" y="452" width="1.4" height="15.0" fill="rgb(249,30,31)" rx="2" ry="2" />
<text x="749.89" y="462.5" ></text>
</g>
<g >
<title>python`insertdict (15 samples, 0.01%)</title><rect x="12.7" y="196" width="0.1" height="15.0" fill="rgb(229,36,46)" rx="2" ry="2" />
<text x="15.73" y="206.5" ></text>
</g>
<g >
<title>python`tupledealloc (809 samples, 0.48%)</title><rect x="215.2" y="980" width="5.6" height="15.0" fill="rgb(229,211,6)" rx="2" ry="2" />
<text x="218.20" y="990.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (144 samples, 0.09%)</title><rect x="970.1" y="484" width="1.0" height="15.0" fill="rgb(227,31,1)" rx="2" ry="2" />
<text x="973.12" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (265 samples, 0.16%)</title><rect x="1107.5" y="228" width="1.8" height="15.0" fill="rgb(245,174,14)" rx="2" ry="2" />
<text x="1110.48" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (3,422 samples, 2.02%)</title><rect x="580.1" y="388" width="23.8" height="15.0" fill="rgb(247,146,50)" rx="2" ry="2" />
<text x="583.06" y="398.5" >_..</text>
</g>
<g >
<title>libsystem_malloc.dylib`free (106 samples, 0.06%)</title><rect x="491.5" y="916" width="0.8" height="15.0" fill="rgb(230,194,54)" rx="2" ry="2" />
<text x="494.55" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (173 samples, 0.10%)</title><rect x="780.3" y="420" width="1.2" height="15.0" fill="rgb(224,5,27)" rx="2" ry="2" />
<text x="783.29" y="430.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (230 samples, 0.14%)</title><rect x="616.0" y="484" width="1.6" height="15.0" fill="rgb(249,8,34)" rx="2" ry="2" />
<text x="619.01" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (21 samples, 0.01%)</title><rect x="676.2" y="516" width="0.1" height="15.0" fill="rgb(216,199,19)" rx="2" ry="2" />
<text x="679.18" y="526.5" ></text>
</g>
<g >
<title>python`_PyUnicodeWriter_PrepareInternal (18 samples, 0.01%)</title><rect x="329.6" y="1028" width="0.1" height="15.0" fill="rgb(217,60,26)" rx="2" ry="2" />
<text x="332.60" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (54 samples, 0.03%)</title><rect x="746.5" y="484" width="0.4" height="15.0" fill="rgb(231,4,39)" rx="2" ry="2" />
<text x="749.51" y="494.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (123 samples, 0.07%)</title><rect x="323.3" y="1060" width="0.9" height="15.0" fill="rgb(207,108,12)" rx="2" ry="2" />
<text x="326.31" y="1070.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (199 samples, 0.12%)</title><rect x="1037.3" y="276" width="1.4" height="15.0" fill="rgb(233,104,9)" rx="2" ry="2" />
<text x="1040.32" y="286.5" ></text>
</g>
<g >
<title>python`PyGILState_Release (22 samples, 0.01%)</title><rect x="239.4" y="964" width="0.2" height="15.0" fill="rgb(235,138,53)" rx="2" ry="2" />
<text x="242.41" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (368 samples, 0.22%)</title><rect x="900.7" y="276" width="2.6" height="15.0" fill="rgb(250,114,27)" rx="2" ry="2" />
<text x="903.72" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (59 samples, 0.03%)</title><rect x="765.5" y="484" width="0.4" height="15.0" fill="rgb(230,91,24)" rx="2" ry="2" />
<text x="768.52" y="494.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_cvwait (122 samples, 0.07%)</title><rect x="927.0" y="372" width="0.8" height="15.0" fill="rgb(208,26,31)" rx="2" ry="2" />
<text x="929.95" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (19 samples, 0.01%)</title><rect x="661.9" y="532" width="0.2" height="15.0" fill="rgb(210,127,45)" rx="2" ry="2" />
<text x="664.92" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (46 samples, 0.03%)</title><rect x="630.4" y="564" width="0.3" height="15.0" fill="rgb(237,197,14)" rx="2" ry="2" />
<text x="633.40" y="574.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::SendReply (3,152 samples, 1.86%)</title><rect x="961.9" y="276" width="22.0" height="15.0" fill="rgb(225,23,45)" rx="2" ry="2" />
<text x="964.94" y="286.5" >_..</text>
</g>
<g >
<title>python`_PyTuple_FromArray (22 samples, 0.01%)</title><rect x="530.0" y="852" width="0.1" height="15.0" fill="rgb(210,68,32)" rx="2" ry="2" />
<text x="532.97" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount::MergeFrom (2,880 samples, 1.70%)</title><rect x="724.9" y="484" width="20.1" height="15.0" fill="rgb(221,60,21)" rx="2" ry="2" />
<text x="727.91" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (66 samples, 0.04%)</title><rect x="433.6" y="948" width="0.4" height="15.0" fill="rgb(251,218,30)" rx="2" ry="2" />
<text x="436.56" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (16 samples, 0.01%)</title><rect x="986.6" y="212" width="0.1" height="15.0" fill="rgb(238,187,12)" rx="2" ry="2" />
<text x="989.62" y="222.5" ></text>
</g>
<g >
<title>python`_PyImport_Cleanup (57 samples, 0.03%)</title><rect x="12.5" y="164" width="0.4" height="15.0" fill="rgb(217,154,9)" rx="2" ry="2" />
<text x="15.47" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_server_shutdown_and_notify (18 samples, 0.01%)</title><rect x="15.8" y="404" width="0.1" height="15.0" fill="rgb(219,40,36)" rx="2" ry="2" />
<text x="18.82" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl (22,122 samples, 13.07%)</title><rect x="831.1" y="196" width="154.2" height="15.0" fill="rgb(206,46,41)" rx="2" ry="2" />
<text x="834.15" y="206.5" >_raylet.so`ray::rpc..</text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_unlock (33 samples, 0.02%)</title><rect x="83.7" y="980" width="0.2" height="15.0" fill="rgb(225,142,7)" rx="2" ry="2" />
<text x="86.67" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::Publisher::ConnectToSubscriber (3,279 samples, 1.94%)</title><rect x="961.3" y="228" width="22.8" height="15.0" fill="rgb(252,192,43)" rx="2" ry="2" />
<text x="964.25" y="238.5" >_..</text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (38 samples, 0.02%)</title><rect x="634.8" y="548" width="0.2" height="15.0" fill="rgb(232,121,20)" rx="2" ry="2" />
<text x="637.75" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`DYLD-STUB$$_Py_Dealloc (20 samples, 0.01%)</title><rect x="128.6" y="964" width="0.2" height="15.0" fill="rgb(212,95,50)" rx="2" ry="2" />
<text x="131.63" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (24 samples, 0.01%)</title><rect x="1000.3" y="260" width="0.1" height="15.0" fill="rgb(249,130,44)" rx="2" ry="2" />
<text x="1003.27" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (189 samples, 0.11%)</title><rect x="467.5" y="1012" width="1.3" height="15.0" fill="rgb(215,113,27)" rx="2" ry="2" />
<text x="470.50" y="1022.5" ></text>
</g>
<g >
<title>python`resize_compact (390 samples, 0.23%)</title><rect x="324.7" y="1028" width="2.8" height="15.0" fill="rgb(218,93,42)" rx="2" ry="2" />
<text x="327.74" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`void std::__1::__invoke_void_return_wrapper::__call (55 samples, 0.03%)</title><rect x="708.2" y="452" width="0.4" height="15.0" fill="rgb(229,182,35)" rx="2" ry="2" />
<text x="711.23" y="462.5" ></text>
</g>
<g >
<title>_cmsgpack.cpython-39-darwin.so`__pyx_pw_7msgpack_9_cmsgpack_3unpackb (243 samples, 0.14%)</title><rect x="527.5" y="900" width="1.6" height="15.0" fill="rgb(205,58,0)" rx="2" ry="2" />
<text x="530.45" y="910.5" ></text>
</g>
<g >
<title>python`_copy_characters (232 samples, 0.14%)</title><rect x="333.2" y="1044" width="1.6" height="15.0" fill="rgb(218,44,26)" rx="2" ry="2" />
<text x="336.23" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (450 samples, 0.27%)</title><rect x="1044.2" y="340" width="3.1" height="15.0" fill="rgb(252,147,32)" rx="2" ry="2" />
<text x="1047.18" y="350.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`DYLD-STUB$$_platform_memset (16 samples, 0.01%)</title><rect x="644.6" y="468" width="0.1" height="15.0" fill="rgb(237,108,1)" rx="2" ry="2" />
<text x="647.59" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (19 samples, 0.01%)</title><rect x="1187.3" y="180" width="0.2" height="15.0" fill="rgb(214,220,13)" rx="2" ry="2" />
<text x="1190.32" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (235 samples, 0.14%)</title><rect x="1051.3" y="276" width="1.7" height="15.0" fill="rgb(213,74,29)" rx="2" ry="2" />
<text x="1054.32" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (40 samples, 0.02%)</title><rect x="418.4" y="1028" width="0.2" height="15.0" fill="rgb(215,176,12)" rx="2" ry="2" />
<text x="421.36" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::RegisterOwnershipInfoAndResolveFuture (9,871 samples, 5.83%)</title><rect x="421.2" y="884" width="68.8" height="15.0" fill="rgb(208,171,25)" rx="2" ry="2" />
<text x="424.23" y="894.5" >_raylet..</text>
</g>
<g >
<title>libc++abi.dylib`operator new (451 samples, 0.27%)</title><rect x="1023.6" y="228" width="3.1" height="15.0" fill="rgb(206,113,5)" rx="2" ry="2" />
<text x="1026.55" y="238.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (422 samples, 0.25%)</title><rect x="476.5" y="964" width="3.0" height="15.0" fill="rgb(231,45,53)" rx="2" ry="2" />
<text x="479.54" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (394 samples, 0.23%)</title><rect x="1031.9" y="324" width="2.8" height="15.0" fill="rgb(205,9,28)" rx="2" ry="2" />
<text x="1034.94" y="334.5" ></text>
</g>
<g >
<title>python`lookdict_split (35 samples, 0.02%)</title><rect x="105.7" y="964" width="0.2" height="15.0" fill="rgb(224,222,48)" rx="2" ry="2" />
<text x="108.69" y="974.5" ></text>
</g>
<g >
<title>python`tupledealloc (27 samples, 0.02%)</title><rect x="384.9" y="916" width="0.2" height="15.0" fill="rgb(241,60,17)" rx="2" ry="2" />
<text x="387.93" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`finish_batch_step (70 samples, 0.04%)</title><rect x="957.6" y="404" width="0.5" height="15.0" fill="rgb(236,175,44)" rx="2" ry="2" />
<text x="960.61" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (251 samples, 0.15%)</title><rect x="1073.4" y="196" width="1.7" height="15.0" fill="rgb(231,49,19)" rx="2" ry="2" />
<text x="1076.36" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (679 samples, 0.40%)</title><rect x="524.5" y="868" width="4.8" height="15.0" fill="rgb(213,137,54)" rx="2" ry="2" />
<text x="527.53" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (31 samples, 0.02%)</title><rect x="807.9" y="468" width="0.2" height="15.0" fill="rgb(207,82,26)" rx="2" ry="2" />
<text x="810.92" y="478.5" ></text>
</g>
<g >
<title>python`dict_subscript (628 samples, 0.37%)</title><rect x="90.8" y="900" width="4.4" height="15.0" fill="rgb(217,62,3)" rx="2" ry="2" />
<text x="93.85" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (35 samples, 0.02%)</title><rect x="374.8" y="980" width="0.2" height="15.0" fill="rgb(251,121,4)" rx="2" ry="2" />
<text x="377.78" y="990.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (23 samples, 0.01%)</title><rect x="388.3" y="900" width="0.2" height="15.0" fill="rgb(216,228,4)" rx="2" ry="2" />
<text x="391.33" y="910.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (217 samples, 0.13%)</title><rect x="890.2" y="276" width="1.5" height="15.0" fill="rgb(254,194,28)" rx="2" ry="2" />
<text x="893.17" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount::ByteSizeLong (405 samples, 0.24%)</title><rect x="963.7" y="420" width="2.9" height="15.0" fill="rgb(253,17,0)" rx="2" ry="2" />
<text x="966.74" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (274 samples, 0.16%)</title><rect x="720.1" y="532" width="1.9" height="15.0" fill="rgb(230,173,41)" rx="2" ry="2" />
<text x="723.12" y="542.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (514 samples, 0.30%)</title><rect x="1043.8" y="308" width="3.6" height="15.0" fill="rgb(238,120,39)" rx="2" ry="2" />
<text x="1046.81" y="318.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_lock (15 samples, 0.01%)</title><rect x="696.4" y="548" width="0.1" height="15.0" fill="rgb(235,162,2)" rx="2" ry="2" />
<text x="699.38" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_5JobID_1__init__ (565 samples, 0.33%)</title><rect x="73.6" y="1044" width="4.0" height="15.0" fill="rgb(239,155,54)" rx="2" ry="2" />
<text x="76.65" y="1054.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (28 samples, 0.02%)</title><rect x="329.0" y="1044" width="0.2" height="15.0" fill="rgb(205,222,4)" rx="2" ry="2" />
<text x="331.96" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (1,545 samples, 0.91%)</title><rect x="628.0" y="468" width="10.8" height="15.0" fill="rgb(234,22,36)" rx="2" ry="2" />
<text x="630.99" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (22 samples, 0.01%)</title><rect x="640.3" y="532" width="0.2" height="15.0" fill="rgb(223,148,43)" rx="2" ry="2" />
<text x="643.34" y="542.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (425 samples, 0.25%)</title><rect x="243.4" y="980" width="3.0" height="15.0" fill="rgb(230,190,28)" rx="2" ry="2" />
<text x="246.40" y="990.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (58 samples, 0.03%)</title><rect x="395.6" y="932" width="0.4" height="15.0" fill="rgb(242,191,12)" rx="2" ry="2" />
<text x="398.64" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::erase (2,392 samples, 1.41%)</title><rect x="560.5" y="388" width="16.7" height="15.0" fill="rgb(215,182,43)" rx="2" ry="2" />
<text x="563.51" y="398.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (19 samples, 0.01%)</title><rect x="1189.2" y="420" width="0.1" height="15.0" fill="rgb(240,175,21)" rx="2" ry="2" />
<text x="1192.21" y="430.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (17 samples, 0.01%)</title><rect x="548.3" y="404" width="0.1" height="15.0" fill="rgb(208,3,19)" rx="2" ry="2" />
<text x="551.31" y="414.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (96 samples, 0.06%)</title><rect x="1130.0" y="276" width="0.7" height="15.0" fill="rgb(223,205,30)" rx="2" ry="2" />
<text x="1133.03" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::RayObject::~RayObject (219 samples, 0.13%)</title><rect x="485.3" y="916" width="1.6" height="15.0" fill="rgb(205,187,15)" rx="2" ry="2" />
<text x="488.33" y="926.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__grow_by_and_replace (219 samples, 0.13%)</title><rect x="423.8" y="964" width="1.5" height="15.0" fill="rgb(230,194,32)" rx="2" ry="2" />
<text x="426.82" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (18 samples, 0.01%)</title><rect x="852.6" y="276" width="0.1" height="15.0" fill="rgb(217,221,17)" rx="2" ry="2" />
<text x="855.62" y="286.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (47 samples, 0.03%)</title><rect x="949.6" y="292" width="0.4" height="15.0" fill="rgb(236,124,48)" rx="2" ry="2" />
<text x="952.63" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (265 samples, 0.16%)</title><rect x="615.9" y="468" width="1.8" height="15.0" fill="rgb(245,51,12)" rx="2" ry="2" />
<text x="618.87" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (95 samples, 0.06%)</title><rect x="468.2" y="1028" width="0.6" height="15.0" fill="rgb(210,18,51)" rx="2" ry="2" />
<text x="471.15" y="1038.5" ></text>
</g>
<g >
<title>python`method_vectorcall (67 samples, 0.04%)</title><rect x="1189.5" y="276" width="0.5" height="15.0" fill="rgb(248,207,49)" rx="2" ry="2" />
<text x="1192.53" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`receiving_trailing_metadata_ready (55 samples, 0.03%)</title><rect x="980.5" y="420" width="0.4" height="15.0" fill="rgb(230,185,36)" rx="2" ry="2" />
<text x="983.55" y="430.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (433 samples, 0.26%)</title><rect x="23.6" y="836" width="3.0" height="15.0" fill="rgb(242,43,40)" rx="2" ry="2" />
<text x="26.56" y="846.5" ></text>
</g>
<g >
<title>_raylet.so`release_call (17 samples, 0.01%)</title><rect x="1069.4" y="196" width="0.1" height="15.0" fill="rgb(219,19,39)" rx="2" ry="2" />
<text x="1072.42" y="206.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (586 samples, 0.35%)</title><rect x="725.8" y="532" width="4.1" height="15.0" fill="rgb(231,3,48)" rx="2" ry="2" />
<text x="728.84" y="542.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerProcess::GetCoreWorker (16 samples, 0.01%)</title><rect x="537.1" y="372" width="0.1" height="15.0" fill="rgb(212,113,1)" rx="2" ry="2" />
<text x="540.05" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (167 samples, 0.10%)</title><rect x="1050.1" y="308" width="1.2" height="15.0" fill="rgb(254,0,15)" rx="2" ry="2" />
<text x="1053.12" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (413 samples, 0.24%)</title><rect x="567.8" y="436" width="2.8" height="15.0" fill="rgb(220,60,13)" rx="2" ry="2" />
<text x="570.76" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (351 samples, 0.21%)</title><rect x="762.4" y="532" width="2.4" height="15.0" fill="rgb(221,64,27)" rx="2" ry="2" />
<text x="765.40" y="542.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (158 samples, 0.09%)</title><rect x="332.1" y="1076" width="1.1" height="15.0" fill="rgb(252,75,1)" rx="2" ry="2" />
<text x="335.07" y="1086.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::InternalExtend (230 samples, 0.14%)</title><rect x="425.5" y="948" width="1.6" height="15.0" fill="rgb(217,203,47)" rx="2" ry="2" />
<text x="428.51" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (132 samples, 0.08%)</title><rect x="1119.9" y="228" width="0.9" height="15.0" fill="rgb(220,167,14)" rx="2" ry="2" />
<text x="1122.93" y="238.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (287 samples, 0.17%)</title><rect x="715.5" y="484" width="2.0" height="15.0" fill="rgb(236,41,22)" rx="2" ry="2" />
<text x="718.49" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`cq_next (3,912 samples, 2.31%)</title><rect x="993.6" y="148" width="27.2" height="15.0" fill="rgb(238,31,29)" rx="2" ry="2" />
<text x="996.58" y="158.5" >_..</text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert (343 samples, 0.20%)</title><rect x="466.8" y="932" width="2.4" height="15.0" fill="rgb(210,202,45)" rx="2" ry="2" />
<text x="469.81" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`finish_batch_step (51 samples, 0.03%)</title><rect x="980.6" y="436" width="0.3" height="15.0" fill="rgb(249,111,19)" rx="2" ry="2" />
<text x="983.56" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (150 samples, 0.09%)</title><rect x="1050.2" y="324" width="1.1" height="15.0" fill="rgb(233,115,50)" rx="2" ry="2" />
<text x="1053.24" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (26 samples, 0.02%)</title><rect x="765.7" y="516" width="0.2" height="15.0" fill="rgb(218,25,16)" rx="2" ry="2" />
<text x="768.72" y="526.5" ></text>
</g>
<g >
<title>python`PyGC_Collect (101 samples, 0.06%)</title><rect x="11.4" y="164" width="0.7" height="15.0" fill="rgb(215,8,27)" rx="2" ry="2" />
<text x="14.40" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (2,134 samples, 1.26%)</title><rect x="682.1" y="436" width="14.9" height="15.0" fill="rgb(220,0,2)" rx="2" ry="2" />
<text x="685.13" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`fd_end_poll (122 samples, 0.07%)</title><rect x="994.9" y="180" width="0.9" height="15.0" fill="rgb(229,114,20)" rx="2" ry="2" />
<text x="997.93" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (74 samples, 0.04%)</title><rect x="493.9" y="948" width="0.5" height="15.0" fill="rgb(248,79,45)" rx="2" ry="2" />
<text x="496.86" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_free_definite_size (24 samples, 0.01%)</title><rect x="1154.0" y="228" width="0.2" height="15.0" fill="rgb(231,91,38)" rx="2" ry="2" />
<text x="1157.04" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (351 samples, 0.21%)</title><rect x="665.8" y="532" width="2.5" height="15.0" fill="rgb(244,181,17)" rx="2" ry="2" />
<text x="668.83" y="542.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (51 samples, 0.03%)</title><rect x="284.3" y="996" width="0.3" height="15.0" fill="rgb(246,8,18)" rx="2" ry="2" />
<text x="287.28" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (15 samples, 0.01%)</title><rect x="462.7" y="996" width="0.1" height="15.0" fill="rgb(237,228,44)" rx="2" ry="2" />
<text x="465.72" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_mu_lock (75 samples, 0.04%)</title><rect x="995.1" y="196" width="0.5" height="15.0" fill="rgb(239,216,2)" rx="2" ry="2" />
<text x="998.08" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`realloc (77 samples, 0.05%)</title><rect x="28.4" y="804" width="0.5" height="15.0" fill="rgb(236,158,2)" rx="2" ry="2" />
<text x="31.41" y="814.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (15 samples, 0.01%)</title><rect x="997.1" y="308" width="0.1" height="15.0" fill="rgb(221,185,36)" rx="2" ry="2" />
<text x="1000.12" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (41 samples, 0.02%)</title><rect x="400.7" y="916" width="0.3" height="15.0" fill="rgb(211,17,25)" rx="2" ry="2" />
<text x="403.73" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set&lt;absl::lts_20210324::container_internal::FlatHashMapPolicy&lt;ray::ObjectID, std::__1::vector&lt;std::__1::shared_ptr&lt;ray::core::GetRequest&gt;, std::__1::allocator&lt;std::__1::shared_ptr&lt;ray::core::GetRequest&gt; &gt; &gt; &gt;, absl::lts_20210324::hash_internal::Hash&lt;ray::ObjectID&gt;, std::__1::equal_to&lt;ray::ObjectID&gt;, std::__1::allocator&lt;std::__1::pair&lt;ray::ObjectID const, std::__1::vector&lt;std::__1::shared_ptr&lt;ray::core::GetRequest&gt;, std:� (39 samples, 0.02%)</title><rect x="445.7" y="932" width="0.3" height="15.0" fill="rgb(216,54,14)" rx="2" ry="2" />
<text x="448.70" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (49 samples, 0.03%)</title><rect x="677.8" y="500" width="0.3" height="15.0" fill="rgb(246,58,42)" rx="2" ry="2" />
<text x="680.77" y="510.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (68 samples, 0.04%)</title><rect x="1047.5" y="308" width="0.4" height="15.0" fill="rgb(228,206,33)" rx="2" ry="2" />
<text x="1050.46" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal (333 samples, 0.20%)</title><rect x="990.8" y="132" width="2.3" height="15.0" fill="rgb(210,161,36)" rx="2" ry="2" />
<text x="993.81" y="142.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (18 samples, 0.01%)</title><rect x="419.2" y="964" width="0.1" height="15.0" fill="rgb(243,7,2)" rx="2" ry="2" />
<text x="422.18" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (197 samples, 0.12%)</title><rect x="467.4" y="996" width="1.4" height="15.0" fill="rgb(228,208,21)" rx="2" ry="2" />
<text x="470.44" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (39 samples, 0.02%)</title><rect x="484.6" y="916" width="0.2" height="15.0" fill="rgb(247,52,41)" rx="2" ry="2" />
<text x="487.57" y="926.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`DYLD-STUB$$_platform_memset (15 samples, 0.01%)</title><rect x="469.0" y="948" width="0.1" height="15.0" fill="rgb(253,64,52)" rx="2" ry="2" />
<text x="472.03" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (744 samples, 0.44%)</title><rect x="823.6" y="420" width="5.2" height="15.0" fill="rgb(229,102,7)" rx="2" ry="2" />
<text x="826.58" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (60 samples, 0.04%)</title><rect x="729.4" y="628" width="0.4" height="15.0" fill="rgb(237,13,32)" rx="2" ry="2" />
<text x="732.40" y="638.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (44 samples, 0.03%)</title><rect x="475.6" y="948" width="0.3" height="15.0" fill="rgb(253,19,41)" rx="2" ry="2" />
<text x="478.64" y="958.5" ></text>
</g>
<g >
<title>python`rlock_acquire (485 samples, 0.29%)</title><rect x="82.4" y="932" width="3.4" height="15.0" fill="rgb(254,48,19)" rx="2" ry="2" />
<text x="85.44" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedMessage* google::protobuf::Arena::CreateMaybeMessage (224 samples, 0.13%)</title><rect x="775.4" y="420" width="1.6" height="15.0" fill="rgb(208,128,4)" rx="2" ry="2" />
<text x="778.41" y="430.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert (289 samples, 0.17%)</title><rect x="464.2" y="932" width="2.0" height="15.0" fill="rgb(248,53,35)" rx="2" ry="2" />
<text x="467.22" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (78 samples, 0.05%)</title><rect x="1120.8" y="228" width="0.6" height="15.0" fill="rgb(234,134,47)" rx="2" ry="2" />
<text x="1123.85" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::MergeFrom (1,525 samples, 0.90%)</title><rect x="725.4" y="500" width="10.6" height="15.0" fill="rgb(209,88,42)" rx="2" ry="2" />
<text x="728.36" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::kqueue_reactor::run (178 samples, 0.11%)</title><rect x="986.8" y="180" width="1.2" height="15.0" fill="rgb(216,164,27)" rx="2" ry="2" />
<text x="989.79" y="190.5" ></text>
</g>
<g >
<title>python`frame_dealloc (21 samples, 0.01%)</title><rect x="533.2" y="676" width="0.1" height="15.0" fill="rgb(251,8,38)" rx="2" ry="2" />
<text x="536.15" y="686.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (83 samples, 0.05%)</title><rect x="454.3" y="1012" width="0.5" height="15.0" fill="rgb(205,208,44)" rx="2" ry="2" />
<text x="457.26" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::shared_ptr ray::rpc::ClientCallManager::CreateCall(ray::rpc::NodeManagerService::Stub&amp;, std::__1::unique_ptr (ray::rpc::NodeManagerService::Stub::*) (21 samples, 0.01%)</title><rect x="985.8" y="308" width="0.2" height="15.0" fill="rgb(254,223,25)" rx="2" ry="2" />
<text x="988.83" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (920 samples, 0.54%)</title><rect x="822.4" y="404" width="6.4" height="15.0" fill="rgb(230,162,51)" rx="2" ry="2" />
<text x="825.37" y="414.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (15 samples, 0.01%)</title><rect x="1187.2" y="196" width="0.1" height="15.0" fill="rgb(217,207,20)" rx="2" ry="2" />
<text x="1190.22" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::InternalSwap (30 samples, 0.02%)</title><rect x="490.8" y="884" width="0.2" height="15.0" fill="rgb(234,194,34)" rx="2" ry="2" />
<text x="493.76" y="894.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (364 samples, 0.21%)</title><rect x="1059.5" y="340" width="2.5" height="15.0" fill="rgb(207,26,40)" rx="2" ry="2" />
<text x="1062.49" y="350.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (459 samples, 0.27%)</title><rect x="225.5" y="980" width="3.2" height="15.0" fill="rgb(231,81,6)" rx="2" ry="2" />
<text x="228.47" y="990.5" ></text>
</g>
<g >
<title>python`call_function (114 samples, 0.07%)</title><rect x="1189.2" y="180" width="0.8" height="15.0" fill="rgb(243,15,39)" rx="2" ry="2" />
<text x="1192.21" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (392 samples, 0.23%)</title><rect x="1023.9" y="276" width="2.8" height="15.0" fill="rgb(232,176,32)" rx="2" ry="2" />
<text x="1026.92" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (41 samples, 0.02%)</title><rect x="738.2" y="596" width="0.3" height="15.0" fill="rgb(212,5,46)" rx="2" ry="2" />
<text x="741.18" y="606.5" ></text>
</g>
<g >
<title>python`call_function (26 samples, 0.02%)</title><rect x="1189.5" y="468" width="0.2" height="15.0" fill="rgb(246,166,51)" rx="2" ry="2" />
<text x="1192.55" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (1,014 samples, 0.60%)</title><rect x="812.5" y="436" width="7.1" height="15.0" fill="rgb(212,41,16)" rx="2" ry="2" />
<text x="815.49" y="446.5" ></text>
</g>
<g >
<title>python`list_subscript (160 samples, 0.09%)</title><rect x="110.5" y="884" width="1.1" height="15.0" fill="rgb(225,180,22)" rx="2" ry="2" />
<text x="113.49" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`accept_stream (136 samples, 0.08%)</title><rect x="997.7" y="276" width="0.9" height="15.0" fill="rgb(237,204,27)" rx="2" ry="2" />
<text x="1000.68" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (199 samples, 0.12%)</title><rect x="425.7" y="980" width="1.4" height="15.0" fill="rgb(218,12,1)" rx="2" ry="2" />
<text x="428.67" y="990.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (29 samples, 0.02%)</title><rect x="393.2" y="932" width="0.2" height="15.0" fill="rgb(252,212,10)" rx="2" ry="2" />
<text x="396.18" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (83 samples, 0.05%)</title><rect x="655.7" y="452" width="0.6" height="15.0" fill="rgb(245,225,15)" rx="2" ry="2" />
<text x="658.68" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (245 samples, 0.14%)</title><rect x="389.4" y="900" width="1.7" height="15.0" fill="rgb(247,124,38)" rx="2" ry="2" />
<text x="392.39" y="910.5" ></text>
</g>
<g >
<title>python`object_dealloc (17 samples, 0.01%)</title><rect x="520.2" y="836" width="0.1" height="15.0" fill="rgb(227,204,42)" rx="2" ry="2" />
<text x="523.19" y="846.5" ></text>
</g>
<g >
<title>python`_copy_characters (124 samples, 0.07%)</title><rect x="328.3" y="1028" width="0.9" height="15.0" fill="rgb(236,40,38)" rx="2" ry="2" />
<text x="331.29" y="1038.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::basic_string (17 samples, 0.01%)</title><rect x="631.5" y="484" width="0.2" height="15.0" fill="rgb(214,10,54)" rx="2" ry="2" />
<text x="634.55" y="494.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (116,698 samples, 68.93%)</title><rect x="16.4" y="228" width="813.3" height="15.0" fill="rgb(234,142,36)" rx="2" ry="2" />
<text x="19.37" y="238.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (358 samples, 0.21%)</title><rect x="222.6" y="996" width="2.5" height="15.0" fill="rgb(249,217,36)" rx="2" ry="2" />
<text x="225.57" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (203 samples, 0.12%)</title><rect x="740.9" y="564" width="1.4" height="15.0" fill="rgb(212,102,18)" rx="2" ry="2" />
<text x="743.85" y="574.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_lock (32 samples, 0.02%)</title><rect x="696.0" y="564" width="0.2" height="15.0" fill="rgb(254,60,34)" rx="2" ry="2" />
<text x="698.97" y="574.5" ></text>
</g>
<g >
<title>python`method_vectorcall (25 samples, 0.01%)</title><rect x="1189.4" y="324" width="0.1" height="15.0" fill="rgb(207,25,8)" rx="2" ry="2" />
<text x="1192.35" y="334.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (179 samples, 0.11%)</title><rect x="27.1" y="852" width="1.2" height="15.0" fill="rgb(218,226,34)" rx="2" ry="2" />
<text x="30.09" y="862.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__grow_by_and_replace (442 samples, 0.26%)</title><rect x="1059.2" y="324" width="3.1" height="15.0" fill="rgb(216,125,34)" rx="2" ry="2" />
<text x="1062.24" y="334.5" ></text>
</g>
<g >
<title>python`frame_getlineno (200 samples, 0.12%)</title><rect x="306.0" y="980" width="1.4" height="15.0" fill="rgb(212,89,30)" rx="2" ry="2" />
<text x="309.05" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_3check_id (163 samples, 0.10%)</title><rect x="383.6" y="932" width="1.2" height="15.0" fill="rgb(231,80,13)" rx="2" ry="2" />
<text x="386.65" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (226 samples, 0.13%)</title><rect x="427.3" y="964" width="1.5" height="15.0" fill="rgb(219,189,17)" rx="2" ry="2" />
<text x="430.26" y="974.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (114 samples, 0.07%)</title><rect x="1189.2" y="164" width="0.8" height="15.0" fill="rgb(212,33,11)" rx="2" ry="2" />
<text x="1192.21" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (133 samples, 0.08%)</title><rect x="487.7" y="932" width="0.9" height="15.0" fill="rgb(234,38,29)" rx="2" ry="2" />
<text x="490.67" y="942.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (79 samples, 0.05%)</title><rect x="947.0" y="292" width="0.5" height="15.0" fill="rgb(208,207,44)" rx="2" ry="2" />
<text x="949.96" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (293 samples, 0.17%)</title><rect x="710.5" y="516" width="2.0" height="15.0" fill="rgb(229,26,7)" rx="2" ry="2" />
<text x="713.49" y="526.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (723 samples, 0.43%)</title><rect x="553.4" y="372" width="5.1" height="15.0" fill="rgb(224,44,8)" rx="2" ry="2" />
<text x="556.42" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (53 samples, 0.03%)</title><rect x="382.1" y="932" width="0.4" height="15.0" fill="rgb(226,97,1)" rx="2" ry="2" />
<text x="385.12" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`posix_memalign (46 samples, 0.03%)</title><rect x="453.1" y="964" width="0.3" height="15.0" fill="rgb(218,1,40)" rx="2" ry="2" />
<text x="456.12" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (42 samples, 0.02%)</title><rect x="674.6" y="532" width="0.3" height="15.0" fill="rgb(234,170,25)" rx="2" ry="2" />
<text x="677.63" y="542.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (31 samples, 0.02%)</title><rect x="1034.8" y="276" width="0.2" height="15.0" fill="rgb(226,12,0)" rx="2" ry="2" />
<text x="1037.79" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::DeleteReferenceInternal (32,289 samples, 19.07%)</title><rect x="604.0" y="388" width="225.0" height="15.0" fill="rgb(230,4,6)" rx="2" ry="2" />
<text x="607.00" y="398.5" >_raylet.so`ray::core::Referen..</text>
</g>
<g >
<title>python`PyLong_FromLong (26 samples, 0.02%)</title><rect x="523.6" y="804" width="0.1" height="15.0" fill="rgb(235,196,28)" rx="2" ry="2" />
<text x="526.56" y="814.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (171 samples, 0.10%)</title><rect x="387.1" y="916" width="1.2" height="15.0" fill="rgb(238,84,53)" rx="2" ry="2" />
<text x="390.09" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (300 samples, 0.18%)</title><rect x="710.4" y="500" width="2.1" height="15.0" fill="rgb(240,21,29)" rx="2" ry="2" />
<text x="713.44" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::pub_internal::Subscriber::QueueMessage (5,306 samples, 3.13%)</title><rect x="708.6" y="436" width="37.0" height="15.0" fill="rgb(244,11,54)" rx="2" ry="2" />
<text x="711.65" y="446.5" >_ra..</text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (52 samples, 0.03%)</title><rect x="926.4" y="260" width="0.4" height="15.0" fill="rgb(214,70,29)" rx="2" ry="2" />
<text x="929.43" y="270.5" ></text>
</g>
<g >
<title>python`call_function (45 samples, 0.03%)</title><rect x="1189.2" y="308" width="0.3" height="15.0" fill="rgb(226,101,29)" rx="2" ry="2" />
<text x="1192.21" y="318.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (74,171 samples, 43.81%)</title><rect x="16.4" y="548" width="517.0" height="15.0" fill="rgb(210,158,11)" rx="2" ry="2" />
<text x="19.43" y="558.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (121 samples, 0.07%)</title><rect x="385.5" y="948" width="0.9" height="15.0" fill="rgb(221,13,38)" rx="2" ry="2" />
<text x="388.54" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`tcp_write (15 samples, 0.01%)</title><rect x="999.7" y="228" width="0.1" height="15.0" fill="rgb(223,205,0)" rx="2" ry="2" />
<text x="1002.67" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (20 samples, 0.01%)</title><rect x="718.6" y="548" width="0.2" height="15.0" fill="rgb(228,35,3)" rx="2" ry="2" />
<text x="721.62" y="558.5" ></text>
</g>
<g >
<title>libsystem_c.dylib`gmtsub (75 samples, 0.04%)</title><rect x="987.0" y="244" width="0.6" height="15.0" fill="rgb(219,152,38)" rx="2" ry="2" />
<text x="990.03" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (25 samples, 0.01%)</title><rect x="473.2" y="916" width="0.2" height="15.0" fill="rgb(242,184,4)" rx="2" ry="2" />
<text x="476.21" y="926.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (38 samples, 0.02%)</title><rect x="1189.7" y="372" width="0.3" height="15.0" fill="rgb(218,199,2)" rx="2" ry="2" />
<text x="1192.74" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_start_batch (57 samples, 0.03%)</title><rect x="1021.1" y="212" width="0.3" height="15.0" fill="rgb(214,121,39)" rx="2" ry="2" />
<text x="1024.05" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (208 samples, 0.12%)</title><rect x="765.9" y="484" width="1.5" height="15.0" fill="rgb(222,77,18)" rx="2" ry="2" />
<text x="768.93" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (62 samples, 0.04%)</title><rect x="814.4" y="468" width="0.4" height="15.0" fill="rgb(222,79,21)" rx="2" ry="2" />
<text x="817.36" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (36 samples, 0.02%)</title><rect x="463.0" y="1012" width="0.3" height="15.0" fill="rgb(234,122,4)" rx="2" ry="2" />
<text x="466.03" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (464 samples, 0.27%)</title><rect x="1087.7" y="260" width="3.2" height="15.0" fill="rgb(209,109,3)" rx="2" ry="2" />
<text x="1090.69" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerMemoryStore::Put (3,138 samples, 1.85%)</title><rect x="441.5" y="916" width="21.8" height="15.0" fill="rgb(251,174,8)" rx="2" ry="2" />
<text x="444.45" y="926.5" >_..</text>
</g>
<g >
<title>_raylet.so`bool google::protobuf::MessageLite::ParseFrom (1,554 samples, 0.92%)</title><rect x="422.0" y="900" width="10.9" height="15.0" fill="rgb(220,154,32)" rx="2" ry="2" />
<text x="425.04" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (51 samples, 0.03%)</title><rect x="891.2" y="340" width="0.3" height="15.0" fill="rgb(251,141,18)" rx="2" ry="2" />
<text x="894.17" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (235 samples, 0.14%)</title><rect x="1126.8" y="276" width="1.6" height="15.0" fill="rgb(231,76,45)" rx="2" ry="2" />
<text x="1129.81" y="286.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (34 samples, 0.02%)</title><rect x="16.0" y="388" width="0.2" height="15.0" fill="rgb(215,141,44)" rx="2" ry="2" />
<text x="18.99" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (24 samples, 0.01%)</title><rect x="923.6" y="404" width="0.2" height="15.0" fill="rgb(214,68,42)" rx="2" ry="2" />
<text x="926.59" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (273 samples, 0.16%)</title><rect x="467.1" y="948" width="1.9" height="15.0" fill="rgb(246,32,11)" rx="2" ry="2" />
<text x="470.12" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert (364 samples, 0.21%)</title><rect x="857.8" y="308" width="2.5" height="15.0" fill="rgb(246,153,21)" rx="2" ry="2" />
<text x="860.79" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (124 samples, 0.07%)</title><rect x="771.9" y="468" width="0.9" height="15.0" fill="rgb(213,114,6)" rx="2" ry="2" />
<text x="774.93" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (71 samples, 0.04%)</title><rect x="1166.3" y="196" width="0.5" height="15.0" fill="rgb(205,109,20)" rx="2" ry="2" />
<text x="1169.31" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (171 samples, 0.10%)</title><rect x="926.8" y="260" width="1.2" height="15.0" fill="rgb(236,146,4)" rx="2" ry="2" />
<text x="929.80" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_end_write (20 samples, 0.01%)</title><rect x="960.7" y="356" width="0.2" height="15.0" fill="rgb(246,167,16)" rx="2" ry="2" />
<text x="963.71" y="366.5" ></text>
</g>
<g >
<title>python`PyTuple_New (20 samples, 0.01%)</title><rect x="382.9" y="916" width="0.2" height="15.0" fill="rgb(215,72,0)" rx="2" ry="2" />
<text x="385.95" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (240 samples, 0.14%)</title><rect x="564.8" y="468" width="1.7" height="15.0" fill="rgb(226,71,50)" rx="2" ry="2" />
<text x="567.83" y="478.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (54 samples, 0.03%)</title><rect x="1170.0" y="180" width="0.4" height="15.0" fill="rgb(244,188,13)" rx="2" ry="2" />
<text x="1172.98" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerMemoryStore::Delete (73 samples, 0.04%)</title><rect x="536.5" y="372" width="0.5" height="15.0" fill="rgb(218,134,35)" rx="2" ry="2" />
<text x="539.54" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (695 samples, 0.41%)</title><rect x="760.2" y="516" width="4.8" height="15.0" fill="rgb(254,64,40)" rx="2" ry="2" />
<text x="763.17" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (174 samples, 0.10%)</title><rect x="229.2" y="1044" width="1.3" height="15.0" fill="rgb(234,108,30)" rx="2" ry="2" />
<text x="232.25" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::OwnedByUs (99 samples, 0.06%)</title><rect x="484.2" y="900" width="0.6" height="15.0" fill="rgb(248,224,45)" rx="2" ry="2" />
<text x="487.15" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerProcess::Shutdown (495 samples, 0.29%)</title><rect x="12.9" y="324" width="3.4" height="15.0" fill="rgb(240,98,35)" rx="2" ry="2" />
<text x="15.90" y="334.5" ></text>
</g>
<g >
<title>python`frame_dealloc (39,984 samples, 23.62%)</title><rect x="551.0" y="276" width="278.7" height="15.0" fill="rgb(223,222,6)" rx="2" ry="2" />
<text x="554.03" y="286.5" >python`frame_dealloc</text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (376 samples, 0.22%)</title><rect x="641.9" y="468" width="2.6" height="15.0" fill="rgb(209,107,7)" rx="2" ry="2" />
<text x="644.89" y="478.5" ></text>
</g>
<g >
<title>python`property_descr_get (520 samples, 0.31%)</title><rect x="103.1" y="900" width="3.6" height="15.0" fill="rgb(205,180,22)" rx="2" ry="2" />
<text x="106.11" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`mvm_deallocate_pages (343 samples, 0.20%)</title><rect x="12.9" y="388" width="2.4" height="15.0" fill="rgb(247,94,19)" rx="2" ry="2" />
<text x="15.94" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::~Address (1,380 samples, 0.82%)</title><rect x="645.5" y="436" width="9.6" height="15.0" fill="rgb(222,71,15)" rx="2" ry="2" />
<text x="648.51" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop (157 samples, 0.09%)</title><rect x="926.8" y="308" width="1.1" height="15.0" fill="rgb(247,225,10)" rx="2" ry="2" />
<text x="929.82" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (197 samples, 0.12%)</title><rect x="609.9" y="420" width="1.4" height="15.0" fill="rgb(213,15,3)" rx="2" ry="2" />
<text x="612.94" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (138 samples, 0.08%)</title><rect x="718.8" y="548" width="0.9" height="15.0" fill="rgb(230,56,39)" rx="2" ry="2" />
<text x="721.76" y="558.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (24 samples, 0.01%)</title><rect x="735.7" y="532" width="0.1" height="15.0" fill="rgb(222,56,12)" rx="2" ry="2" />
<text x="738.67" y="542.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception (547 samples, 0.32%)</title><rect x="957.3" y="276" width="3.8" height="15.0" fill="rgb(237,91,39)" rx="2" ry="2" />
<text x="960.30" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (56 samples, 0.03%)</title><rect x="452.4" y="1044" width="0.4" height="15.0" fill="rgb(226,34,12)" rx="2" ry="2" />
<text x="455.44" y="1054.5" ></text>
</g>
<g >
<title>python`method_vectorcall (19 samples, 0.01%)</title><rect x="1189.2" y="388" width="0.1" height="15.0" fill="rgb(228,135,16)" rx="2" ry="2" />
<text x="1192.21" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (511 samples, 0.30%)</title><rect x="1154.8" y="228" width="3.6" height="15.0" fill="rgb(209,167,20)" rx="2" ry="2" />
<text x="1157.79" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`cq_next (314 samples, 0.19%)</title><rect x="990.8" y="148" width="2.2" height="15.0" fill="rgb(253,205,9)" rx="2" ry="2" />
<text x="993.81" y="158.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::ServerInterface::RegisteredAsyncRequest::IssueRequest (27 samples, 0.02%)</title><rect x="984.6" y="244" width="0.2" height="15.0" fill="rgb(232,4,30)" rx="2" ry="2" />
<text x="987.64" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (314 samples, 0.19%)</title><rect x="710.4" y="484" width="2.1" height="15.0" fill="rgb(216,30,39)" rx="2" ry="2" />
<text x="713.36" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (27 samples, 0.02%)</title><rect x="1181.2" y="212" width="0.2" height="15.0" fill="rgb(205,122,29)" rx="2" ry="2" />
<text x="1184.17" y="222.5" ></text>
</g>
<g >
<title>python`pymain_main (117,413 samples, 69.35%)</title><rect x="11.4" y="116" width="818.3" height="15.0" fill="rgb(214,98,50)" rx="2" ry="2" />
<text x="14.40" y="126.5" >python`pymain_main</text>
</g>
<g >
<title>_raylet.so`__pyx_f_3ray_7_raylet_9ObjectRef_native (16 samples, 0.01%)</title><rect x="116.9" y="916" width="0.2" height="15.0" fill="rgb(214,24,19)" rx="2" ry="2" />
<text x="119.94" y="926.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (20 samples, 0.01%)</title><rect x="1189.2" y="340" width="0.2" height="15.0" fill="rgb(251,122,20)" rx="2" ry="2" />
<text x="1192.21" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (145 samples, 0.09%)</title><rect x="1042.1" y="340" width="1.0" height="15.0" fill="rgb(230,34,39)" rx="2" ry="2" />
<text x="1045.08" y="350.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (234 samples, 0.14%)</title><rect x="427.2" y="948" width="1.7" height="15.0" fill="rgb(220,54,28)" rx="2" ry="2" />
<text x="430.24" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable (240 samples, 0.14%)</title><rect x="429.2" y="948" width="1.7" height="15.0" fill="rgb(229,88,9)" rx="2" ry="2" />
<text x="432.20" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (117 samples, 0.07%)</title><rect x="947.9" y="308" width="0.8" height="15.0" fill="rgb(240,167,47)" rx="2" ry="2" />
<text x="950.93" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands (17,981 samples, 10.62%)</title><rect x="831.5" y="228" width="125.3" height="15.0" fill="rgb(231,70,15)" rx="2" ry="2" />
<text x="834.49" y="238.5" >_raylet.so`ray:..</text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedSubMessage::~WorkerRefRemovedSubMessage (4,439 samples, 2.62%)</title><rect x="1083.8" y="212" width="30.9" height="15.0" fill="rgb(253,128,52)" rx="2" ry="2" />
<text x="1086.76" y="222.5" >_r..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (25 samples, 0.01%)</title><rect x="1165.8" y="244" width="0.2" height="15.0" fill="rgb(252,134,23)" rx="2" ry="2" />
<text x="1168.82" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (354 samples, 0.21%)</title><rect x="656.3" y="436" width="2.4" height="15.0" fill="rgb(210,23,13)" rx="2" ry="2" />
<text x="659.26" y="446.5" ></text>
</g>
<g >
<title>python`PyCMethod_New (56 samples, 0.03%)</title><rect x="548.1" y="356" width="0.3" height="15.0" fill="rgb(248,173,31)" rx="2" ry="2" />
<text x="551.06" y="366.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (43 samples, 0.03%)</title><rect x="141.5" y="980" width="0.3" height="15.0" fill="rgb(214,181,34)" rx="2" ry="2" />
<text x="144.50" y="990.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`_kernelrpc_mach_vm_deallocate_trap (223 samples, 0.13%)</title><rect x="888.6" y="340" width="1.6" height="15.0" fill="rgb(235,169,23)" rx="2" ry="2" />
<text x="891.60" y="350.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (226 samples, 0.13%)</title><rect x="26.8" y="820" width="1.6" height="15.0" fill="rgb(243,82,45)" rx="2" ry="2" />
<text x="29.80" y="830.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (214 samples, 0.13%)</title><rect x="775.5" y="436" width="1.5" height="15.0" fill="rgb(218,194,49)" rx="2" ry="2" />
<text x="778.48" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (282 samples, 0.17%)</title><rect x="1171.3" y="196" width="2.0" height="15.0" fill="rgb(227,81,32)" rx="2" ry="2" />
<text x="1174.31" y="206.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (114 samples, 0.07%)</title><rect x="1189.2" y="244" width="0.8" height="15.0" fill="rgb(240,215,50)" rx="2" ry="2" />
<text x="1192.21" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (321 samples, 0.19%)</title><rect x="722.6" y="548" width="2.3" height="15.0" fill="rgb(226,187,5)" rx="2" ry="2" />
<text x="725.65" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::~PubMessage (4,200 samples, 2.48%)</title><rect x="746.1" y="420" width="29.3" height="15.0" fill="rgb(207,135,49)" rx="2" ry="2" />
<text x="749.14" y="430.5" >_r..</text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (22 samples, 0.01%)</title><rect x="808.0" y="484" width="0.1" height="15.0" fill="rgb(213,50,3)" rx="2" ry="2" />
<text x="810.98" y="494.5" ></text>
</g>
<g >
<title>python`sys__getframe (91 samples, 0.05%)</title><rect x="135.9" y="1044" width="0.6" height="15.0" fill="rgb(208,226,53)" rx="2" ry="2" />
<text x="138.86" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (165 samples, 0.10%)</title><rect x="677.0" y="468" width="1.1" height="15.0" fill="rgb(207,74,20)" rx="2" ry="2" />
<text x="679.96" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (222 samples, 0.13%)</title><rect x="642.4" y="516" width="1.5" height="15.0" fill="rgb(244,197,29)" rx="2" ry="2" />
<text x="645.37" y="526.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (70,573 samples, 41.68%)</title><rect x="29.8" y="804" width="491.9" height="15.0" fill="rgb(213,152,10)" rx="2" ry="2" />
<text x="32.80" y="814.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>_raylet.so`hs_start_transport_stream_op_batch (17 samples, 0.01%)</title><rect x="960.9" y="324" width="0.1" height="15.0" fill="rgb(248,62,38)" rx="2" ry="2" />
<text x="963.90" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_f_3ray_7_raylet_9ObjectRef_native (32 samples, 0.02%)</title><rect x="403.5" y="868" width="0.2" height="15.0" fill="rgb(250,27,52)" rx="2" ry="2" />
<text x="406.45" y="878.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (23 samples, 0.01%)</title><rect x="835.1" y="260" width="0.1" height="15.0" fill="rgb(236,175,11)" rx="2" ry="2" />
<text x="838.08" y="270.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (48 samples, 0.03%)</title><rect x="838.1" y="276" width="0.4" height="15.0" fill="rgb(234,153,7)" rx="2" ry="2" />
<text x="841.15" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (155 samples, 0.09%)</title><rect x="858.8" y="372" width="1.1" height="15.0" fill="rgb(213,57,8)" rx="2" ry="2" />
<text x="861.77" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference* google::protobuf::Arena::CreateMaybeMessage (193 samples, 0.11%)</title><rect x="673.6" y="452" width="1.4" height="15.0" fill="rgb(253,92,19)" rx="2" ry="2" />
<text x="676.62" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_start_batch (20 samples, 0.01%)</title><rect x="985.4" y="356" width="0.2" height="15.0" fill="rgb(208,33,5)" rx="2" ry="2" />
<text x="988.44" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`void google::protobuf::internal::RepeatedPtrFieldBase::MergeFromInnerLoop (3,292 samples, 1.94%)</title><rect x="722.1" y="468" width="22.9" height="15.0" fill="rgb(220,23,5)" rx="2" ry="2" />
<text x="725.05" y="478.5" >_..</text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (55 samples, 0.03%)</title><rect x="133.2" y="1044" width="0.4" height="15.0" fill="rgb(241,210,30)" rx="2" ry="2" />
<text x="136.23" y="1054.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_self (21 samples, 0.01%)</title><rect x="322.8" y="1060" width="0.1" height="15.0" fill="rgb(232,215,38)" rx="2" ry="2" />
<text x="325.77" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait (138 samples, 0.08%)</title><rect x="926.9" y="356" width="1.0" height="15.0" fill="rgb(240,71,50)" rx="2" ry="2" />
<text x="929.94" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (1,016 samples, 0.60%)</title><rect x="72.2" y="1012" width="7.1" height="15.0" fill="rgb(213,117,25)" rx="2" ry="2" />
<text x="75.21" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (221 samples, 0.13%)</title><rect x="922.9" y="372" width="1.6" height="15.0" fill="rgb(218,204,0)" rx="2" ry="2" />
<text x="925.93" y="382.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (471 samples, 0.28%)</title><rect x="628.3" y="484" width="3.2" height="15.0" fill="rgb(238,96,15)" rx="2" ry="2" />
<text x="631.27" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (15 samples, 0.01%)</title><rect x="428.2" y="1012" width="0.1" height="15.0" fill="rgb(243,26,50)" rx="2" ry="2" />
<text x="431.18" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (68 samples, 0.04%)</title><rect x="732.8" y="596" width="0.5" height="15.0" fill="rgb(224,107,34)" rx="2" ry="2" />
<text x="735.80" y="606.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (44 samples, 0.03%)</title><rect x="400.7" y="900" width="0.3" height="15.0" fill="rgb(207,138,10)" rx="2" ry="2" />
<text x="403.71" y="910.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (179 samples, 0.11%)</title><rect x="1035.4" y="244" width="1.3" height="15.0" fill="rgb(244,226,49)" rx="2" ry="2" />
<text x="1038.43" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`aligned_malloc (24 samples, 0.01%)</title><rect x="447.1" y="948" width="0.2" height="15.0" fill="rgb(225,79,28)" rx="2" ry="2" />
<text x="450.10" y="958.5" ></text>
</g>
<g >
<title>python`stringlib_parse_args_finds.2927 (5,364 samples, 3.17%)</title><rect x="171.4" y="1012" width="37.4" height="15.0" fill="rgb(219,219,47)" rx="2" ry="2" />
<text x="174.43" y="1022.5" >pyt..</text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (30 samples, 0.02%)</title><rect x="1020.5" y="164" width="0.2" height="15.0" fill="rgb(217,72,13)" rx="2" ry="2" />
<text x="1023.45" y="174.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (17 samples, 0.01%)</title><rect x="985.1" y="228" width="0.1" height="15.0" fill="rgb(205,156,32)" rx="2" ry="2" />
<text x="988.05" y="238.5" ></text>
</g>
<g >
<title>python`PyTuple_New (37 samples, 0.02%)</title><rect x="72.6" y="1028" width="0.3" height="15.0" fill="rgb(238,66,47)" rx="2" ry="2" />
<text x="75.63" y="1038.5" ></text>
</g>
<g >
<title>python`dict_traverse (19 samples, 0.01%)</title><rect x="245.0" y="1012" width="0.1" height="15.0" fill="rgb(253,157,51)" rx="2" ry="2" />
<text x="248.01" y="1022.5" ></text>
</g>
<g >
<title>python`PyLong_FromLong (49 samples, 0.03%)</title><rect x="528.7" y="932" width="0.3" height="15.0" fill="rgb(221,228,33)" rx="2" ry="2" />
<text x="531.67" y="942.5" ></text>
</g>
<g >
<title>python`lookdict_unicode (77 samples, 0.05%)</title><rect x="45.4" y="884" width="0.6" height="15.0" fill="rgb(228,37,30)" rx="2" ry="2" />
<text x="48.42" y="894.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (37 samples, 0.02%)</title><rect x="1161.0" y="228" width="0.3" height="15.0" fill="rgb(249,184,4)" rx="2" ry="2" />
<text x="1163.99" y="238.5" ></text>
</g>
<g >
<title>python`PyObject_IsTrue (49 samples, 0.03%)</title><rect x="241.4" y="964" width="0.3" height="15.0" fill="rgb(220,81,14)" rx="2" ry="2" />
<text x="244.40" y="974.5" ></text>
</g>
<g >
<title>python`_PyLong_FormatAdvancedWriter (586 samples, 0.35%)</title><rect x="320.4" y="1012" width="4.1" height="15.0" fill="rgb(218,84,18)" rx="2" ry="2" />
<text x="323.43" y="1022.5" ></text>
</g>
<g >
<title>python`call_function (419 samples, 0.25%)</title><rect x="133.6" y="1012" width="2.9" height="15.0" fill="rgb(220,219,24)" rx="2" ry="2" />
<text x="136.61" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (17 samples, 0.01%)</title><rect x="348.0" y="948" width="0.1" height="15.0" fill="rgb(213,65,43)" rx="2" ry="2" />
<text x="350.96" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (153 samples, 0.09%)</title><rect x="756.9" y="532" width="1.0" height="15.0" fill="rgb(220,139,8)" rx="2" ry="2" />
<text x="759.87" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (408 samples, 0.24%)</title><rect x="1031.8" y="308" width="2.9" height="15.0" fill="rgb(237,154,37)" rx="2" ry="2" />
<text x="1034.85" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::RayObject::_InternalParse (309 samples, 0.18%)</title><rect x="428.9" y="932" width="2.1" height="15.0" fill="rgb(221,147,18)" rx="2" ry="2" />
<text x="431.89" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address* google::protobuf::Arena::CreateMaybeMessage (188 samples, 0.11%)</title><rect x="1053.0" y="276" width="1.4" height="15.0" fill="rgb(221,149,46)" rx="2" ry="2" />
<text x="1056.05" y="286.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_getspecific (62 samples, 0.04%)</title><rect x="237.8" y="964" width="0.4" height="15.0" fill="rgb(221,125,28)" rx="2" ry="2" />
<text x="240.76" y="974.5" ></text>
</g>
<g >
<title>python`PyGILState_Release (24 samples, 0.01%)</title><rect x="377.3" y="948" width="0.1" height="15.0" fill="rgb(243,226,27)" rx="2" ry="2" />
<text x="380.28" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_start_batch (515 samples, 0.30%)</title><rect x="980.3" y="324" width="3.6" height="15.0" fill="rgb(222,136,40)" rx="2" ry="2" />
<text x="983.28" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`write_action_end_locked (25 samples, 0.01%)</title><rect x="960.7" y="340" width="0.2" height="15.0" fill="rgb(226,166,10)" rx="2" ry="2" />
<text x="963.71" y="350.5" ></text>
</g>
<g >
<title>python`PyRun_FileExFlags (116,699 samples, 68.93%)</title><rect x="16.4" y="196" width="813.3" height="15.0" fill="rgb(239,204,38)" rx="2" ry="2" />
<text x="19.36" y="206.5" >python`PyRun_FileExFlags</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (58 samples, 0.03%)</title><rect x="746.5" y="468" width="0.4" height="15.0" fill="rgb(244,164,32)" rx="2" ry="2" />
<text x="749.48" y="478.5" ></text>
</g>
<g >
<title>python`module_getattro (362 samples, 0.21%)</title><rect x="517.7" y="836" width="2.5" height="15.0" fill="rgb(224,209,17)" rx="2" ry="2" />
<text x="520.66" y="846.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (479 samples, 0.28%)</title><rect x="980.5" y="340" width="3.3" height="15.0" fill="rgb(253,194,35)" rx="2" ry="2" />
<text x="983.49" y="350.5" ></text>
</g>
<g >
<title>python`method_get (36 samples, 0.02%)</title><rect x="345.1" y="964" width="0.3" height="15.0" fill="rgb(228,19,22)" rx="2" ry="2" />
<text x="348.10" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::destroy_deallocate (37 samples, 0.02%)</title><rect x="820.4" y="404" width="0.2" height="15.0" fill="rgb(244,92,36)" rx="2" ry="2" />
<text x="823.39" y="414.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (114 samples, 0.07%)</title><rect x="1189.2" y="260" width="0.8" height="15.0" fill="rgb(216,46,26)" rx="2" ry="2" />
<text x="1192.21" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubsubLongPollingRequest::~PubsubLongPollingRequest (16 samples, 0.01%)</title><rect x="1187.9" y="164" width="0.1" height="15.0" fill="rgb(218,128,47)" rx="2" ry="2" />
<text x="1190.86" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (246 samples, 0.15%)</title><rect x="715.7" y="532" width="1.7" height="15.0" fill="rgb(227,43,15)" rx="2" ry="2" />
<text x="718.71" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (522 samples, 0.31%)</title><rect x="480.1" y="1012" width="3.6" height="15.0" fill="rgb(242,158,24)" rx="2" ry="2" />
<text x="483.08" y="1022.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (214 samples, 0.13%)</title><rect x="525.2" y="932" width="1.5" height="15.0" fill="rgb(205,72,39)" rx="2" ry="2" />
<text x="528.24" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (177 samples, 0.10%)</title><rect x="610.0" y="452" width="1.3" height="15.0" fill="rgb(206,117,33)" rx="2" ry="2" />
<text x="613.04" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`boost::_bi::bind_t boost::bind(void (ray::core::ReferenceCounter::*) (158 samples, 0.09%)</title><rect x="835.3" y="260" width="1.1" height="15.0" fill="rgb(239,35,39)" rx="2" ry="2" />
<text x="838.25" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`kill_pending_work_locked (17 samples, 0.01%)</title><rect x="15.8" y="420" width="0.1" height="15.0" fill="rgb(253,72,36)" rx="2" ry="2" />
<text x="18.83" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (44 samples, 0.03%)</title><rect x="1147.5" y="292" width="0.3" height="15.0" fill="rgb(251,11,26)" rx="2" ry="2" />
<text x="1150.51" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (22 samples, 0.01%)</title><rect x="488.4" y="948" width="0.2" height="15.0" fill="rgb(216,16,33)" rx="2" ry="2" />
<text x="491.45" y="958.5" ></text>
</g>
<g >
<title>python`call_function (18 samples, 0.01%)</title><rect x="1189.6" y="676" width="0.1" height="15.0" fill="rgb(226,90,14)" rx="2" ry="2" />
<text x="1192.59" y="686.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (164 samples, 0.10%)</title><rect x="1057.8" y="372" width="1.1" height="15.0" fill="rgb(250,59,24)" rx="2" ry="2" />
<text x="1060.75" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (24 samples, 0.01%)</title><rect x="566.5" y="468" width="0.2" height="15.0" fill="rgb(205,49,12)" rx="2" ry="2" />
<text x="569.54" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (603 samples, 0.36%)</title><rect x="645.6" y="452" width="4.2" height="15.0" fill="rgb(223,201,43)" rx="2" ry="2" />
<text x="648.61" y="462.5" ></text>
</g>
<g >
<title>python`list_traverse (27 samples, 0.02%)</title><rect x="245.3" y="1012" width="0.1" height="15.0" fill="rgb(223,10,39)" rx="2" ry="2" />
<text x="248.25" y="1022.5" ></text>
</g>
<g >
<title>python`visit_decref (67 samples, 0.04%)</title><rect x="245.6" y="1028" width="0.5" height="15.0" fill="rgb(210,201,18)" rx="2" ry="2" />
<text x="248.59" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (65 samples, 0.04%)</title><rect x="551.0" y="308" width="0.5" height="15.0" fill="rgb(243,59,25)" rx="2" ry="2" />
<text x="554.03" y="318.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (54 samples, 0.03%)</title><rect x="547.2" y="340" width="0.4" height="15.0" fill="rgb(252,96,6)" rx="2" ry="2" />
<text x="550.24" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerMemoryStore::~CoreWorkerMemoryStore (37 samples, 0.02%)</title><rect x="16.0" y="372" width="0.2" height="15.0" fill="rgb(243,8,8)" rx="2" ry="2" />
<text x="18.97" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_3shutdown (495 samples, 0.29%)</title><rect x="12.9" y="308" width="3.4" height="15.0" fill="rgb(213,75,6)" rx="2" ry="2" />
<text x="15.90" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (347 samples, 0.20%)</title><rect x="826.2" y="436" width="2.4" height="15.0" fill="rgb(232,41,15)" rx="2" ry="2" />
<text x="829.18" y="446.5" ></text>
</g>
<g >
<title>python`PyUnicode_Join (31 samples, 0.02%)</title><rect x="379.0" y="948" width="0.2" height="15.0" fill="rgb(234,130,30)" rx="2" ry="2" />
<text x="381.98" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (150 samples, 0.09%)</title><rect x="399.4" y="900" width="1.0" height="15.0" fill="rgb(235,37,21)" rx="2" ry="2" />
<text x="402.37" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception (52 samples, 0.03%)</title><rect x="708.3" y="500" width="0.3" height="15.0" fill="rgb(207,24,41)" rx="2" ry="2" />
<text x="711.26" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (20 samples, 0.01%)</title><rect x="1049.2" y="340" width="0.1" height="15.0" fill="rgb(242,106,36)" rx="2" ry="2" />
<text x="1052.15" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (203 samples, 0.12%)</title><rect x="661.0" y="484" width="1.4" height="15.0" fill="rgb(246,220,14)" rx="2" ry="2" />
<text x="664.01" y="494.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (22 samples, 0.01%)</title><rect x="550.4" y="372" width="0.1" height="15.0" fill="rgb(230,206,4)" rx="2" ry="2" />
<text x="553.38" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable (591 samples, 0.35%)</title><rect x="1039.1" y="260" width="4.2" height="15.0" fill="rgb(214,45,26)" rx="2" ry="2" />
<text x="1042.14" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_large (223 samples, 0.13%)</title><rect x="888.6" y="308" width="1.6" height="15.0" fill="rgb(214,1,12)" rx="2" ry="2" />
<text x="891.60" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (25 samples, 0.01%)</title><rect x="1052.3" y="388" width="0.1" height="15.0" fill="rgb(228,94,31)" rx="2" ry="2" />
<text x="1055.27" y="398.5" ></text>
</g>
<g >
<title>python`_PyModule_ClearDict (18 samples, 0.01%)</title><rect x="12.7" y="180" width="0.1" height="15.0" fill="rgb(240,91,41)" rx="2" ry="2" />
<text x="15.72" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyFunction_FastCallDict (1,246 samples, 0.74%)</title><rect x="128.8" y="964" width="8.7" height="15.0" fill="rgb(214,157,22)" rx="2" ry="2" />
<text x="131.82" y="974.5" ></text>
</g>
<g >
<title>python`PyObject_RichCompare (68 samples, 0.04%)</title><rect x="76.6" y="1092" width="0.5" height="15.0" fill="rgb(248,116,44)" rx="2" ry="2" />
<text x="79.59" y="1102.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (166 samples, 0.10%)</title><rect x="673.8" y="500" width="1.1" height="15.0" fill="rgb(246,49,31)" rx="2" ry="2" />
<text x="676.78" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (416 samples, 0.25%)</title><rect x="1170.5" y="180" width="2.9" height="15.0" fill="rgb(246,159,5)" rx="2" ry="2" />
<text x="1173.50" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (40 samples, 0.02%)</title><rect x="773.3" y="452" width="0.3" height="15.0" fill="rgb(217,64,11)" rx="2" ry="2" />
<text x="776.29" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (130 samples, 0.08%)</title><rect x="1164.9" y="244" width="0.9" height="15.0" fill="rgb(231,155,42)" rx="2" ry="2" />
<text x="1167.87" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (532 samples, 0.31%)</title><rect x="405.3" y="916" width="3.7" height="15.0" fill="rgb(232,156,13)" rx="2" ry="2" />
<text x="408.27" y="926.5" ></text>
</g>
<g >
<title>python`_PyTuple_FromArray (54 samples, 0.03%)</title><rect x="88.5" y="932" width="0.4" height="15.0" fill="rgb(242,0,50)" rx="2" ry="2" />
<text x="91.53" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (109 samples, 0.06%)</title><rect x="898.8" y="356" width="0.7" height="15.0" fill="rgb(230,3,6)" rx="2" ry="2" />
<text x="901.75" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (80 samples, 0.05%)</title><rect x="957.6" y="340" width="0.5" height="15.0" fill="rgb(213,39,49)" rx="2" ry="2" />
<text x="960.59" y="350.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (565 samples, 0.33%)</title><rect x="726.0" y="548" width="3.9" height="15.0" fill="rgb(240,8,22)" rx="2" ry="2" />
<text x="728.96" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (52 samples, 0.03%)</title><rect x="573.2" y="436" width="0.3" height="15.0" fill="rgb(208,24,12)" rx="2" ry="2" />
<text x="576.17" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__shared_ptr_pointer::__on_zero_shared (54 samples, 0.03%)</title><rect x="16.0" y="356" width="0.3" height="15.0" fill="rgb(226,102,35)" rx="2" ry="2" />
<text x="18.97" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::~ObjectReference (4,327 samples, 2.56%)</title><rect x="1123.7" y="228" width="30.1" height="15.0" fill="rgb(233,157,9)" rx="2" ry="2" />
<text x="1126.69" y="238.5" >_r..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (34 samples, 0.02%)</title><rect x="724.6" y="580" width="0.3" height="15.0" fill="rgb(234,26,26)" rx="2" ry="2" />
<text x="727.65" y="590.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (19 samples, 0.01%)</title><rect x="986.6" y="196" width="0.1" height="15.0" fill="rgb(234,92,29)" rx="2" ry="2" />
<text x="989.60" y="206.5" ></text>
</g>
<g >
<title>python`_PyObject_MakeTpCall (334 samples, 0.20%)</title><rect x="88.4" y="916" width="2.3" height="15.0" fill="rgb(228,47,5)" rx="2" ry="2" />
<text x="91.37" y="926.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (15 samples, 0.01%)</title><rect x="634.6" y="548" width="0.1" height="15.0" fill="rgb(208,197,31)" rx="2" ry="2" />
<text x="637.62" y="558.5" ></text>
</g>
<g >
<title>python`Py_EnterRecursiveCall (56 samples, 0.03%)</title><rect x="248.8" y="964" width="0.4" height="15.0" fill="rgb(251,227,39)" rx="2" ry="2" />
<text x="251.81" y="974.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (21 samples, 0.01%)</title><rect x="784.3" y="452" width="0.2" height="15.0" fill="rgb(253,146,38)" rx="2" ry="2" />
<text x="787.31" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (103 samples, 0.06%)</title><rect x="716.7" y="548" width="0.7" height="15.0" fill="rgb(226,114,45)" rx="2" ry="2" />
<text x="719.70" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (29 samples, 0.02%)</title><rect x="1052.5" y="388" width="0.2" height="15.0" fill="rgb(249,97,27)" rx="2" ry="2" />
<text x="1055.46" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (54 samples, 0.03%)</title><rect x="772.4" y="484" width="0.3" height="15.0" fill="rgb(251,71,26)" rx="2" ry="2" />
<text x="775.36" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (16 samples, 0.01%)</title><rect x="475.9" y="932" width="0.2" height="15.0" fill="rgb(210,73,34)" rx="2" ry="2" />
<text x="478.94" y="942.5" ></text>
</g>
<g >
<title>python`_PyFrame_New_NoTrack (182 samples, 0.11%)</title><rect x="129.2" y="1012" width="1.3" height="15.0" fill="rgb(233,115,14)" rx="2" ry="2" />
<text x="132.24" y="1022.5" ></text>
</g>
<g >
<title>python`method_vectorcall_NOARGS (1,362 samples, 0.80%)</title><rect x="71.8" y="980" width="9.5" height="15.0" fill="rgb(240,145,36)" rx="2" ry="2" />
<text x="74.76" y="990.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (27 samples, 0.02%)</title><rect x="1189.5" y="340" width="0.2" height="15.0" fill="rgb(235,102,4)" rx="2" ry="2" />
<text x="1192.55" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_start_batch (51 samples, 0.03%)</title><rect x="708.3" y="516" width="0.3" height="15.0" fill="rgb(243,141,47)" rx="2" ry="2" />
<text x="711.26" y="526.5" ></text>
</g>
<g >
<title>python`_PyObject_MakeTpCall (892 samples, 0.53%)</title><rect x="524.1" y="836" width="6.2" height="15.0" fill="rgb(216,215,9)" rx="2" ry="2" />
<text x="527.07" y="846.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (16 samples, 0.01%)</title><rect x="1189.2" y="500" width="0.1" height="15.0" fill="rgb(241,109,0)" rx="2" ry="2" />
<text x="1192.23" y="510.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (227 samples, 0.13%)</title><rect x="675.2" y="452" width="1.6" height="15.0" fill="rgb(217,56,34)" rx="2" ry="2" />
<text x="678.18" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (85 samples, 0.05%)</title><rect x="471.1" y="916" width="0.6" height="15.0" fill="rgb(248,14,23)" rx="2" ry="2" />
<text x="474.12" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Command::clear_command_message_one_of (5,532 samples, 3.27%)</title><rect x="1083.0" y="180" width="38.5" height="15.0" fill="rgb(238,171,51)" rx="2" ry="2" />
<text x="1085.95" y="190.5" >_ra..</text>
</g>
<g >
<title>libc++abi.dylib`operator new (569 samples, 0.34%)</title><rect x="412.3" y="932" width="4.0" height="15.0" fill="rgb(231,123,35)" rx="2" ry="2" />
<text x="415.28" y="942.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (107 samples, 0.06%)</title><rect x="899.7" y="292" width="0.7" height="15.0" fill="rgb(228,204,16)" rx="2" ry="2" />
<text x="902.67" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (546 samples, 0.32%)</title><rect x="479.9" y="996" width="3.8" height="15.0" fill="rgb(226,92,0)" rx="2" ry="2" />
<text x="482.91" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (595 samples, 0.35%)</title><rect x="1031.0" y="228" width="4.1" height="15.0" fill="rgb(245,175,15)" rx="2" ry="2" />
<text x="1033.98" y="238.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (227 samples, 0.13%)</title><rect x="431.1" y="932" width="1.6" height="15.0" fill="rgb(216,0,5)" rx="2" ry="2" />
<text x="434.09" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (31 samples, 0.02%)</title><rect x="478.0" y="1044" width="0.3" height="15.0" fill="rgb(222,173,45)" rx="2" ry="2" />
<text x="481.05" y="1054.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`_pthread_start (51,691 samples, 30.53%)</title><rect x="829.7" y="84" width="360.3" height="15.0" fill="rgb(239,88,50)" rx="2" ry="2" />
<text x="832.74" y="94.5" >libsystem_pthread.dylib`_pthread_start</text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (17 samples, 0.01%)</title><rect x="230.0" y="1060" width="0.2" height="15.0" fill="rgb(230,120,6)" rx="2" ry="2" />
<text x="233.04" y="1070.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (24 samples, 0.01%)</title><rect x="548.5" y="356" width="0.1" height="15.0" fill="rgb(206,207,11)" rx="2" ry="2" />
<text x="551.47" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (43 samples, 0.03%)</title><rect x="485.5" y="932" width="0.3" height="15.0" fill="rgb(237,26,45)" rx="2" ry="2" />
<text x="488.51" y="942.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`thread_start (51,691 samples, 30.53%)</title><rect x="829.7" y="68" width="360.3" height="15.0" fill="rgb(242,229,37)" rx="2" ry="2" />
<text x="832.74" y="78.5" >libsystem_pthread.dylib`thread_start</text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_header_parser_parse (74 samples, 0.04%)</title><rect x="998.7" y="260" width="0.5" height="15.0" fill="rgb(217,208,45)" rx="2" ry="2" />
<text x="1001.73" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (230 samples, 0.14%)</title><rect x="739.0" y="564" width="1.6" height="15.0" fill="rgb(229,106,4)" rx="2" ry="2" />
<text x="741.96" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (501 samples, 0.30%)</title><rect x="632.2" y="516" width="3.5" height="15.0" fill="rgb(248,101,51)" rx="2" ry="2" />
<text x="635.17" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (376 samples, 0.22%)</title><rect x="1118.8" y="212" width="2.6" height="15.0" fill="rgb(206,54,3)" rx="2" ry="2" />
<text x="1121.80" y="222.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_lock (74 samples, 0.04%)</title><rect x="995.1" y="212" width="0.5" height="15.0" fill="rgb(205,210,10)" rx="2" ry="2" />
<text x="998.09" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (105 samples, 0.06%)</title><rect x="650.2" y="468" width="0.7" height="15.0" fill="rgb(228,145,10)" rx="2" ry="2" />
<text x="653.16" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (58 samples, 0.03%)</title><rect x="901.1" y="308" width="0.4" height="15.0" fill="rgb(231,181,44)" rx="2" ry="2" />
<text x="904.10" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (42 samples, 0.02%)</title><rect x="1034.4" y="356" width="0.3" height="15.0" fill="rgb(217,122,39)" rx="2" ry="2" />
<text x="1037.40" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerMemoryStore::EmplaceObjectAndUpdateStats (911 samples, 0.54%)</title><rect x="455.0" y="932" width="6.4" height="15.0" fill="rgb(225,164,17)" rx="2" ry="2" />
<text x="458.02" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (119 samples, 0.07%)</title><rect x="750.4" y="548" width="0.9" height="15.0" fill="rgb(227,7,41)" rx="2" ry="2" />
<text x="753.44" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (46 samples, 0.03%)</title><rect x="420.9" y="884" width="0.3" height="15.0" fill="rgb(224,83,43)" rx="2" ry="2" />
<text x="423.91" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_5JobID_11binary (115 samples, 0.07%)</title><rect x="57.6" y="980" width="0.8" height="15.0" fill="rgb(221,120,12)" rx="2" ry="2" />
<text x="60.63" y="990.5" ></text>
</g>
<g >
<title>python`func_traverse (15 samples, 0.01%)</title><rect x="245.1" y="1012" width="0.2" height="15.0" fill="rgb(245,207,5)" rx="2" ry="2" />
<text x="248.15" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (110 samples, 0.06%)</title><rect x="1159.1" y="244" width="0.8" height="15.0" fill="rgb(221,29,46)" rx="2" ry="2" />
<text x="1162.14" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (51 samples, 0.03%)</title><rect x="426.7" y="1044" width="0.4" height="15.0" fill="rgb(239,145,34)" rx="2" ry="2" />
<text x="429.70" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (131 samples, 0.08%)</title><rect x="1051.7" y="356" width="1.0" height="15.0" fill="rgb(245,150,12)" rx="2" ry="2" />
<text x="1054.74" y="366.5" ></text>
</g>
<g >
<title>python`PyEval_RestoreThread (186 samples, 0.11%)</title><rect x="544.9" y="372" width="1.3" height="15.0" fill="rgb(216,210,7)" rx="2" ry="2" />
<text x="547.86" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_unref (184 samples, 0.11%)</title><rect x="1068.4" y="164" width="1.3" height="15.0" fill="rgb(226,88,36)" rx="2" ry="2" />
<text x="1071.40" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`perform_stream_op_locked (43 samples, 0.03%)</title><rect x="997.0" y="212" width="0.3" height="15.0" fill="rgb(229,49,44)" rx="2" ry="2" />
<text x="1000.04" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubsubLongPollingReply::_InternalSerialize (809 samples, 0.48%)</title><rect x="966.6" y="388" width="5.6" height="15.0" fill="rgb(237,146,50)" rx="2" ry="2" />
<text x="969.56" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (80 samples, 0.05%)</title><rect x="957.6" y="356" width="0.5" height="15.0" fill="rgb(224,22,14)" rx="2" ry="2" />
<text x="960.59" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (269 samples, 0.16%)</title><rect x="858.2" y="324" width="1.9" height="15.0" fill="rgb(247,198,26)" rx="2" ry="2" />
<text x="861.21" y="334.5" ></text>
</g>
<g >
<title>python`meth_dealloc (41 samples, 0.02%)</title><rect x="381.2" y="948" width="0.2" height="15.0" fill="rgb(232,211,32)" rx="2" ry="2" />
<text x="384.16" y="958.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_trylock (102 samples, 0.06%)</title><rect x="82.9" y="964" width="0.7" height="15.0" fill="rgb(222,124,5)" rx="2" ry="2" />
<text x="85.92" y="974.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (17 samples, 0.01%)</title><rect x="75.5" y="1076" width="0.1" height="15.0" fill="rgb(218,102,11)" rx="2" ry="2" />
<text x="78.48" y="1086.5" ></text>
</g>
<g >
<title>_raylet.so`server_on_recv_initial_metadata (72 samples, 0.04%)</title><rect x="999.9" y="244" width="0.5" height="15.0" fill="rgb(222,54,32)" rx="2" ry="2" />
<text x="1002.94" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (99 samples, 0.06%)</title><rect x="784.8" y="468" width="0.7" height="15.0" fill="rgb(222,33,13)" rx="2" ry="2" />
<text x="787.81" y="478.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (443 samples, 0.26%)</title><rect x="896.5" y="292" width="3.1" height="15.0" fill="rgb(221,123,20)" rx="2" ry="2" />
<text x="899.55" y="302.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (38 samples, 0.02%)</title><rect x="1189.7" y="388" width="0.3" height="15.0" fill="rgb(235,165,16)" rx="2" ry="2" />
<text x="1192.74" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (224 samples, 0.13%)</title><rect x="639.4" y="500" width="1.5" height="15.0" fill="rgb(234,37,49)" rx="2" ry="2" />
<text x="642.38" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (39 samples, 0.02%)</title><rect x="773.3" y="468" width="0.3" height="15.0" fill="rgb(216,144,39)" rx="2" ry="2" />
<text x="776.30" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (27 samples, 0.02%)</title><rect x="715.2" y="580" width="0.2" height="15.0" fill="rgb(234,59,8)" rx="2" ry="2" />
<text x="718.22" y="590.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (125 samples, 0.07%)</title><rect x="1051.8" y="372" width="0.9" height="15.0" fill="rgb(213,203,35)" rx="2" ry="2" />
<text x="1054.79" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_mark_stream_closed (16 samples, 0.01%)</title><rect x="958.6" y="372" width="0.1" height="15.0" fill="rgb(232,117,19)" rx="2" ry="2" />
<text x="961.63" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::GetObjectStatusReply::~GetObjectStatusReply (497 samples, 0.29%)</title><rect x="485.2" y="900" width="3.4" height="15.0" fill="rgb(208,132,53)" rx="2" ry="2" />
<text x="488.18" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (28 samples, 0.02%)</title><rect x="829.4" y="388" width="0.2" height="15.0" fill="rgb(230,63,17)" rx="2" ry="2" />
<text x="832.37" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::Address (1,147 samples, 0.68%)</title><rect x="476.1" y="932" width="8.0" height="15.0" fill="rgb(224,97,10)" rx="2" ry="2" />
<text x="479.10" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_5JobID_11binary (82 samples, 0.05%)</title><rect x="91.7" y="980" width="0.6" height="15.0" fill="rgb(254,14,49)" rx="2" ry="2" />
<text x="94.70" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (200 samples, 0.12%)</title><rect x="1073.7" y="228" width="1.4" height="15.0" fill="rgb(218,120,36)" rx="2" ry="2" />
<text x="1076.70" y="238.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_cond_signal (35 samples, 0.02%)</title><rect x="546.3" y="404" width="0.3" height="15.0" fill="rgb(222,77,14)" rx="2" ry="2" />
<text x="549.34" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (195 samples, 0.12%)</title><rect x="1098.9" y="260" width="1.4" height="15.0" fill="rgb(209,36,54)" rx="2" ry="2" />
<text x="1101.95" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::CoreWorkerService::WithAsyncMethod_PubsubLongPolling&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_PubsubCommandBatch&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_AddObjectLocationOwner&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RemoveObjectLocationOwner&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_GetObjectLocationsOwner&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_KillActor&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_CancelTask&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RemoteCancelTask&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_GetCoreWorkerStats&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_LocalGC&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_SpillObjects&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RestoreSpilledObjects&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_DeleteSpilledObjects&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_AddSpilledUrl&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_PlasmaObjectReady&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RunOnUtilWorker&lt;ray::rpc::CoreWorkerServi� (42 samples, 0.02%)</title><rect x="984.6" y="228" width="0.3" height="15.0" fill="rgb(227,125,35)" rx="2" ry="2" />
<text x="987.61" y="238.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (116,698 samples, 68.93%)</title><rect x="16.4" y="212" width="813.3" height="15.0" fill="rgb(225,81,40)" rx="2" ry="2" />
<text x="19.37" y="222.5" >python`_PyEval_EvalCode</text>
</g>
<g >
<title>python`_PyType_Lookup (31 samples, 0.02%)</title><rect x="135.0" y="1108" width="0.2" height="15.0" fill="rgb(228,94,18)" rx="2" ry="2" />
<text x="138.01" y="1118.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (183 samples, 0.11%)</title><rect x="1108.0" y="244" width="1.3" height="15.0" fill="rgb(238,67,27)" rx="2" ry="2" />
<text x="1111.00" y="254.5" ></text>
</g>
<g >
<title>python`atexit_callfuncs (501 samples, 0.30%)</title><rect x="12.9" y="164" width="3.5" height="15.0" fill="rgb(211,113,23)" rx="2" ry="2" />
<text x="15.86" y="174.5" ></text>
</g>
<g >
<title>_pickle.cpython-39-darwin.so`load (72,307 samples, 42.71%)</title><rect x="18.3" y="788" width="504.0" height="15.0" fill="rgb(223,196,41)" rx="2" ry="2" />
<text x="21.35" y="798.5" >_pickle.cpython-39-darwin.so`load</text>
</g>
<g >
<title>_raylet.so`ray::rpc::SubMessage* google::protobuf::Arena::CreateMaybeMessage (194 samples, 0.11%)</title><rect x="1035.3" y="228" width="1.4" height="15.0" fill="rgb(246,188,53)" rx="2" ry="2" />
<text x="1038.32" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (18 samples, 0.01%)</title><rect x="721.0" y="548" width="0.1" height="15.0" fill="rgb(220,198,48)" rx="2" ry="2" />
<text x="723.96" y="558.5" ></text>
</g>
<g >
<title>python`main (117,413 samples, 69.35%)</title><rect x="11.4" y="100" width="818.3" height="15.0" fill="rgb(247,47,13)" rx="2" ry="2" />
<text x="14.40" y="110.5" >python`main</text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (182 samples, 0.11%)</title><rect x="387.0" y="900" width="1.3" height="15.0" fill="rgb(235,130,39)" rx="2" ry="2" />
<text x="390.05" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (22 samples, 0.01%)</title><rect x="828.6" y="436" width="0.2" height="15.0" fill="rgb(254,55,30)" rx="2" ry="2" />
<text x="831.61" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (149 samples, 0.09%)</title><rect x="1035.6" y="292" width="1.0" height="15.0" fill="rgb(226,210,31)" rx="2" ry="2" />
<text x="1038.59" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (163 samples, 0.10%)</title><rect x="223.9" y="1044" width="1.1" height="15.0" fill="rgb(253,105,50)" rx="2" ry="2" />
<text x="226.91" y="1054.5" ></text>
</g>
<g >
<title>python`PyBytes_AsStringAndSize (16 samples, 0.01%)</title><rect x="409.9" y="900" width="0.1" height="15.0" fill="rgb(209,226,30)" rx="2" ry="2" />
<text x="412.85" y="910.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (350 samples, 0.21%)</title><rect x="103.5" y="932" width="2.5" height="15.0" fill="rgb(242,172,51)" rx="2" ry="2" />
<text x="106.52" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (16 samples, 0.01%)</title><rect x="643.3" y="548" width="0.1" height="15.0" fill="rgb(252,160,27)" rx="2" ry="2" />
<text x="646.30" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::~Address (3,556 samples, 2.10%)</title><rect x="783.9" y="420" width="24.8" height="15.0" fill="rgb(249,74,44)" rx="2" ry="2" />
<text x="786.94" y="430.5" >_..</text>
</g>
<g >
<title>python`lookdict (866 samples, 0.51%)</title><rect x="56.8" y="916" width="6.0" height="15.0" fill="rgb(218,226,19)" rx="2" ry="2" />
<text x="59.77" y="926.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (16 samples, 0.01%)</title><rect x="78.1" y="1092" width="0.2" height="15.0" fill="rgb(249,168,10)" rx="2" ry="2" />
<text x="81.14" y="1102.5" ></text>
</g>
<g >
<title>_raylet.so`fd_end_poll (26 samples, 0.02%)</title><rect x="990.9" y="180" width="0.2" height="15.0" fill="rgb(247,112,0)" rx="2" ry="2" />
<text x="993.87" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (22 samples, 0.01%)</title><rect x="795.7" y="484" width="0.1" height="15.0" fill="rgb(223,20,54)" rx="2" ry="2" />
<text x="798.66" y="494.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (224 samples, 0.13%)</title><rect x="467.3" y="964" width="1.5" height="15.0" fill="rgb(219,95,30)" rx="2" ry="2" />
<text x="470.28" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (157 samples, 0.09%)</title><rect x="387.1" y="948" width="1.1" height="15.0" fill="rgb(223,158,36)" rx="2" ry="2" />
<text x="390.14" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (214 samples, 0.13%)</title><rect x="474.5" y="932" width="1.4" height="15.0" fill="rgb(223,61,22)" rx="2" ry="2" />
<text x="477.45" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`DYLD-STUB$$PyTuple_New (34 samples, 0.02%)</title><rect x="128.1" y="964" width="0.2" height="15.0" fill="rgb(217,4,34)" rx="2" ry="2" />
<text x="131.08" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (478 samples, 0.28%)</title><rect x="405.6" y="932" width="3.4" height="15.0" fill="rgb(249,172,35)" rx="2" ry="2" />
<text x="408.64" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (174 samples, 0.10%)</title><rect x="985.3" y="196" width="1.3" height="15.0" fill="rgb(221,229,32)" rx="2" ry="2" />
<text x="988.34" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (163 samples, 0.10%)</title><rect x="1053.2" y="308" width="1.1" height="15.0" fill="rgb(212,166,24)" rx="2" ry="2" />
<text x="1056.21" y="318.5" ></text>
</g>
<g >
<title>python`call_function (29 samples, 0.02%)</title><rect x="1189.7" y="468" width="0.3" height="15.0" fill="rgb(234,178,3)" rx="2" ry="2" />
<text x="1192.75" y="478.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (115 samples, 0.07%)</title><rect x="837.1" y="276" width="0.8" height="15.0" fill="rgb(218,195,49)" rx="2" ry="2" />
<text x="840.12" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (1,474 samples, 0.87%)</title><rect x="1143.2" y="260" width="10.3" height="15.0" fill="rgb(239,39,47)" rx="2" ry="2" />
<text x="1146.19" y="270.5" ></text>
</g>
<g >
<title>_cmsgpack.cpython-39-darwin.so`__pyx_f_7msgpack_9_cmsgpack_init_ctx (19 samples, 0.01%)</title><rect x="528.3" y="916" width="0.1" height="15.0" fill="rgb(247,195,4)" rx="2" ry="2" />
<text x="531.25" y="926.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_unlock (16 samples, 0.01%)</title><rect x="995.6" y="212" width="0.1" height="15.0" fill="rgb(207,76,7)" rx="2" ry="2" />
<text x="998.60" y="222.5" ></text>
</g>
<g >
<title>libsystem_c.dylib`gmtsub (26 samples, 0.02%)</title><rect x="987.7" y="244" width="0.2" height="15.0" fill="rgb(243,71,2)" rx="2" ry="2" />
<text x="990.74" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::MessageLite::ParseFromString (20 samples, 0.01%)</title><rect x="514.6" y="868" width="0.2" height="15.0" fill="rgb(248,144,45)" rx="2" ry="2" />
<text x="517.64" y="878.5" ></text>
</g>
<g >
<title>python`_PyObject_GetMethod (18 samples, 0.01%)</title><rect x="520.6" y="820" width="0.1" height="15.0" fill="rgb(253,95,22)" rx="2" ry="2" />
<text x="523.56" y="830.5" ></text>
</g>
<g >
<title>python`lookdict_split (56 samples, 0.03%)</title><rect x="517.2" y="836" width="0.4" height="15.0" fill="rgb(211,202,30)" rx="2" ry="2" />
<text x="520.21" y="846.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (56 samples, 0.03%)</title><rect x="980.5" y="404" width="0.4" height="15.0" fill="rgb(217,202,16)" rx="2" ry="2" />
<text x="983.54" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (748 samples, 0.44%)</title><rect x="508.6" y="900" width="5.2" height="15.0" fill="rgb(211,16,26)" rx="2" ry="2" />
<text x="511.56" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (879 samples, 0.52%)</title><rect x="749.7" y="500" width="6.1" height="15.0" fill="rgb(245,185,25)" rx="2" ry="2" />
<text x="752.72" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (25 samples, 0.01%)</title><rect x="717.2" y="564" width="0.2" height="15.0" fill="rgb(243,85,46)" rx="2" ry="2" />
<text x="720.24" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (120 samples, 0.07%)</title><rect x="947.9" y="292" width="0.8" height="15.0" fill="rgb(248,204,24)" rx="2" ry="2" />
<text x="950.90" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`void std::__1::__invoke_void_return_wrapper::__call (22 samples, 0.01%)</title><rect x="831.2" y="228" width="0.2" height="15.0" fill="rgb(251,101,36)" rx="2" ry="2" />
<text x="834.23" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (16 samples, 0.01%)</title><rect x="1079.2" y="228" width="0.1" height="15.0" fill="rgb(205,147,52)" rx="2" ry="2" />
<text x="1082.23" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (80 samples, 0.05%)</title><rect x="617.0" y="548" width="0.6" height="15.0" fill="rgb(216,139,19)" rx="2" ry="2" />
<text x="620.02" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline (167 samples, 0.10%)</title><rect x="926.8" y="292" width="1.2" height="15.0" fill="rgb(232,170,14)" rx="2" ry="2" />
<text x="929.81" y="302.5" ></text>
</g>
<g >
<title>python`_PyObject_GetMethod (70 samples, 0.04%)</title><rect x="133.1" y="1012" width="0.5" height="15.0" fill="rgb(224,92,23)" rx="2" ry="2" />
<text x="136.12" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (607 samples, 0.36%)</title><rect x="713.4" y="468" width="4.2" height="15.0" fill="rgb(247,154,10)" rx="2" ry="2" />
<text x="716.40" y="478.5" ></text>
</g>
<g >
<title>python`FieldNameIterator_next (39 samples, 0.02%)</title><rect x="317.0" y="1012" width="0.3" height="15.0" fill="rgb(252,5,44)" rx="2" ry="2" />
<text x="320.00" y="1022.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (74,170 samples, 43.81%)</title><rect x="16.4" y="564" width="517.0" height="15.0" fill="rgb(236,193,19)" rx="2" ry="2" />
<text x="19.43" y="574.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>_raylet.so`unref_by (22 samples, 0.01%)</title><rect x="1006.4" y="180" width="0.2" height="15.0" fill="rgb(212,43,49)" rx="2" ry="2" />
<text x="1009.44" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::destroy_deallocate (21 samples, 0.01%)</title><rect x="956.6" y="244" width="0.1" height="15.0" fill="rgb(233,193,40)" rx="2" ry="2" />
<text x="959.58" y="254.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (29 samples, 0.02%)</title><rect x="94.4" y="980" width="0.2" height="15.0" fill="rgb(232,218,15)" rx="2" ry="2" />
<text x="97.43" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (27 samples, 0.02%)</title><rect x="1036.1" y="308" width="0.2" height="15.0" fill="rgb(228,41,2)" rx="2" ry="2" />
<text x="1039.08" y="318.5" ></text>
</g>
<g >
<title>python`call_function (499 samples, 0.29%)</title><rect x="12.9" y="276" width="3.4" height="15.0" fill="rgb(229,197,23)" rx="2" ry="2" />
<text x="15.87" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerContext::BeginCompletionOp (71 samples, 0.04%)</title><rect x="1021.0" y="180" width="0.5" height="15.0" fill="rgb(236,78,54)" rx="2" ry="2" />
<text x="1023.97" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`void ray::rpc::GrpcClient::CallMethod(std::__1::unique_ptr (ray::rpc::NodeManagerService::Stub::*) (19 samples, 0.01%)</title><rect x="986.1" y="324" width="0.1" height="15.0" fill="rgb(228,49,30)" rx="2" ry="2" />
<text x="989.06" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_free_definite_size (15 samples, 0.01%)</title><rect x="821.1" y="404" width="0.1" height="15.0" fill="rgb(205,74,35)" rx="2" ry="2" />
<text x="824.10" y="414.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (43 samples, 0.03%)</title><rect x="92.9" y="964" width="0.3" height="15.0" fill="rgb(228,112,27)" rx="2" ry="2" />
<text x="95.92" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::SubMessage::clear_sub_message_one_of (4,757 samples, 2.81%)</title><rect x="1083.7" y="196" width="33.1" height="15.0" fill="rgb(238,62,43)" rx="2" ry="2" />
<text x="1086.69" y="206.5" >_r..</text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (386 samples, 0.23%)</title><rect x="476.6" y="996" width="2.7" height="15.0" fill="rgb(215,164,42)" rx="2" ry="2" />
<text x="479.63" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (107 samples, 0.06%)</title><rect x="830.0" y="148" width="0.8" height="15.0" fill="rgb(244,13,48)" rx="2" ry="2" />
<text x="833.01" y="158.5" ></text>
</g>
<g >
<title>python`PyTuple_New (31 samples, 0.02%)</title><rect x="522.5" y="788" width="0.2" height="15.0" fill="rgb(249,45,10)" rx="2" ry="2" />
<text x="525.52" y="798.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (499 samples, 0.29%)</title><rect x="12.9" y="196" width="3.4" height="15.0" fill="rgb(232,73,52)" rx="2" ry="2" />
<text x="15.87" y="206.5" ></text>
</g>
<g >
<title>_cmsgpack.cpython-39-darwin.so`__pyx_pw_7msgpack_9_cmsgpack_3unpackb (1,450 samples, 0.86%)</title><rect x="522.9" y="772" width="10.1" height="15.0" fill="rgb(235,40,37)" rx="2" ry="2" />
<text x="525.93" y="782.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (151 samples, 0.09%)</title><rect x="134.6" y="1092" width="1.1" height="15.0" fill="rgb(254,71,17)" rx="2" ry="2" />
<text x="137.60" y="1102.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (213 samples, 0.13%)</title><rect x="427.3" y="980" width="1.5" height="15.0" fill="rgb(245,142,42)" rx="2" ry="2" />
<text x="430.35" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception (519 samples, 0.31%)</title><rect x="980.3" y="308" width="3.6" height="15.0" fill="rgb(229,185,42)" rx="2" ry="2" />
<text x="983.26" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_f_3ray_7_raylet_5JobID_hash (19 samples, 0.01%)</title><rect x="56.4" y="916" width="0.2" height="15.0" fill="rgb(224,155,26)" rx="2" ry="2" />
<text x="59.44" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (92 samples, 0.05%)</title><rect x="235.2" y="964" width="0.6" height="15.0" fill="rgb(246,117,51)" rx="2" ry="2" />
<text x="238.19" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (27 samples, 0.02%)</title><rect x="1000.0" y="260" width="0.2" height="15.0" fill="rgb(234,188,26)" rx="2" ry="2" />
<text x="1002.97" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait (1,885 samples, 1.11%)</title><rect x="683.5" y="532" width="13.1" height="15.0" fill="rgb(249,91,47)" rx="2" ry="2" />
<text x="686.46" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (129 samples, 0.08%)</title><rect x="766.5" y="500" width="0.9" height="15.0" fill="rgb(213,54,23)" rx="2" ry="2" />
<text x="769.47" y="510.5" ></text>
</g>
<g >
<title>python`call_function (21 samples, 0.01%)</title><rect x="1189.6" y="596" width="0.1" height="15.0" fill="rgb(241,189,9)" rx="2" ry="2" />
<text x="1192.57" y="606.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_byte_buffer_destroy (18 samples, 0.01%)</title><rect x="1066.1" y="180" width="0.1" height="15.0" fill="rgb(248,218,2)" rx="2" ry="2" />
<text x="1069.05" y="190.5" ></text>
</g>
<g >
<title>python`PyType_GenericAlloc (145 samples, 0.09%)</title><rect x="397.1" y="900" width="1.1" height="15.0" fill="rgb(233,126,47)" rx="2" ry="2" />
<text x="400.15" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (38 samples, 0.02%)</title><rect x="352.0" y="964" width="0.3" height="15.0" fill="rgb(214,40,29)" rx="2" ry="2" />
<text x="354.99" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (101 samples, 0.06%)</title><rect x="923.8" y="404" width="0.7" height="15.0" fill="rgb(245,213,49)" rx="2" ry="2" />
<text x="926.77" y="414.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`write (55 samples, 0.03%)</title><rect x="957.7" y="452" width="0.4" height="15.0" fill="rgb(253,45,30)" rx="2" ry="2" />
<text x="960.69" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (183 samples, 0.11%)</title><rect x="453.6" y="964" width="1.2" height="15.0" fill="rgb(215,36,37)" rx="2" ry="2" />
<text x="456.57" y="974.5" ></text>
</g>
<g >
<title>python`lookdict_unicode (49 samples, 0.03%)</title><rect x="44.2" y="852" width="0.4" height="15.0" fill="rgb(222,23,48)" rx="2" ry="2" />
<text x="47.25" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::DeleteReferenceInternal (55 samples, 0.03%)</title><rect x="551.1" y="356" width="0.4" height="15.0" fill="rgb(249,144,47)" rx="2" ry="2" />
<text x="554.10" y="366.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (74,247 samples, 43.85%)</title><rect x="16.4" y="324" width="517.5" height="15.0" fill="rgb(233,147,35)" rx="2" ry="2" />
<text x="19.38" y="334.5" >python`_PyEval_EvalCode</text>
</g>
<g >
<title>python`tupledealloc (44 samples, 0.03%)</title><rect x="516.7" y="868" width="0.3" height="15.0" fill="rgb(247,65,11)" rx="2" ry="2" />
<text x="519.69" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (1,238 samples, 0.73%)</title><rect x="799.8" y="452" width="8.7" height="15.0" fill="rgb(238,83,11)" rx="2" ry="2" />
<text x="802.83" y="462.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (87 samples, 0.05%)</title><rect x="87.3" y="916" width="0.6" height="15.0" fill="rgb(241,159,13)" rx="2" ry="2" />
<text x="90.29" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_malloc (25 samples, 0.01%)</title><rect x="225.1" y="996" width="0.1" height="15.0" fill="rgb(239,104,44)" rx="2" ry="2" />
<text x="228.07" y="1006.5" ></text>
</g>
<g >
<title>python`cfunction_vectorcall_FASTCALL (457 samples, 0.27%)</title><rect x="107.1" y="900" width="3.2" height="15.0" fill="rgb(233,13,43)" rx="2" ry="2" />
<text x="110.07" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::IsStructurallyValidUTF8 (118 samples, 0.07%)</title><rect x="419.6" y="932" width="0.9" height="15.0" fill="rgb(245,95,4)" rx="2" ry="2" />
<text x="422.64" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (149 samples, 0.09%)</title><rect x="711.5" y="532" width="1.0" height="15.0" fill="rgb(212,212,3)" rx="2" ry="2" />
<text x="714.48" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (63 samples, 0.04%)</title><rect x="400.6" y="884" width="0.4" height="15.0" fill="rgb(225,196,4)" rx="2" ry="2" />
<text x="403.59" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (613 samples, 0.36%)</title><rect x="791.3" y="484" width="4.3" height="15.0" fill="rgb(244,128,33)" rx="2" ry="2" />
<text x="794.32" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::Reference::ToProto (1,785 samples, 1.05%)</title><rect x="662.6" y="436" width="12.4" height="15.0" fill="rgb(247,101,27)" rx="2" ry="2" />
<text x="665.58" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (63 samples, 0.04%)</title><rect x="609.3" y="420" width="0.5" height="15.0" fill="rgb(245,211,26)" rx="2" ry="2" />
<text x="612.34" y="430.5" ></text>
</g>
<g >
<title>python`lookdict_split (22 samples, 0.01%)</title><rect x="394.4" y="900" width="0.2" height="15.0" fill="rgb(253,26,20)" rx="2" ry="2" />
<text x="397.41" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (159 samples, 0.09%)</title><rect x="385.3" y="932" width="1.1" height="15.0" fill="rgb(205,12,4)" rx="2" ry="2" />
<text x="388.27" y="942.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (61 samples, 0.04%)</title><rect x="135.2" y="1108" width="0.5" height="15.0" fill="rgb(216,202,12)" rx="2" ry="2" />
<text x="138.23" y="1118.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (136 samples, 0.08%)</title><rect x="908.1" y="308" width="1.0" height="15.0" fill="rgb(247,212,40)" rx="2" ry="2" />
<text x="911.13" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::pub_internal::Subscriber::PublishIfPossible (83 samples, 0.05%)</title><rect x="708.1" y="436" width="0.5" height="15.0" fill="rgb(252,196,11)" rx="2" ry="2" />
<text x="711.07" y="446.5" ></text>
</g>
<g >
<title>python`rlock_release (208 samples, 0.12%)</title><rect x="89.1" y="948" width="1.4" height="15.0" fill="rgb(243,209,11)" rx="2" ry="2" />
<text x="92.08" y="958.5" ></text>
</g>
<g >
<title>python`list_ass_slice (43 samples, 0.03%)</title><rect x="22.5" y="820" width="0.3" height="15.0" fill="rgb(231,35,10)" rx="2" ry="2" />
<text x="25.55" y="830.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (127 samples, 0.08%)</title><rect x="612.1" y="436" width="0.9" height="15.0" fill="rgb(220,159,22)" rx="2" ry="2" />
<text x="615.09" y="446.5" ></text>
</g>
<g >
<title>python`PyCMethod_New (113 samples, 0.07%)</title><rect x="55.5" y="900" width="0.8" height="15.0" fill="rgb(233,28,42)" rx="2" ry="2" />
<text x="58.52" y="910.5" ></text>
</g>
<g >
<title>python`module_getattro (209 samples, 0.12%)</title><rect x="44.6" y="852" width="1.4" height="15.0" fill="rgb(239,110,11)" rx="2" ry="2" />
<text x="47.59" y="862.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (112 samples, 0.07%)</title><rect x="573.5" y="436" width="0.8" height="15.0" fill="rgb(239,17,48)" rx="2" ry="2" />
<text x="576.53" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (29 samples, 0.02%)</title><rect x="461.7" y="948" width="0.2" height="15.0" fill="rgb(238,227,54)" rx="2" ry="2" />
<text x="464.71" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert (3,598 samples, 2.13%)</title><rect x="865.1" y="292" width="25.1" height="15.0" fill="rgb(210,143,0)" rx="2" ry="2" />
<text x="868.08" y="302.5" >_..</text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (30 samples, 0.02%)</title><rect x="808.8" y="420" width="0.2" height="15.0" fill="rgb(214,166,39)" rx="2" ry="2" />
<text x="811.77" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (25 samples, 0.01%)</title><rect x="895.6" y="372" width="0.2" height="15.0" fill="rgb(242,193,36)" rx="2" ry="2" />
<text x="898.58" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,532 samples, 0.90%)</title><rect x="785.5" y="452" width="10.7" height="15.0" fill="rgb(234,78,2)" rx="2" ry="2" />
<text x="788.51" y="462.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::basic_string (17 samples, 0.01%)</title><rect x="745.0" y="468" width="0.1" height="15.0" fill="rgb(215,107,38)" rx="2" ry="2" />
<text x="748.01" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (146 samples, 0.09%)</title><rect x="1085.6" y="260" width="1.0" height="15.0" fill="rgb(209,26,53)" rx="2" ry="2" />
<text x="1088.63" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (19 samples, 0.01%)</title><rect x="223.8" y="1044" width="0.1" height="15.0" fill="rgb(221,69,8)" rx="2" ry="2" />
<text x="226.78" y="1054.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (31 samples, 0.02%)</title><rect x="528.8" y="948" width="0.2" height="15.0" fill="rgb(233,6,10)" rx="2" ry="2" />
<text x="531.77" y="958.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (15 samples, 0.01%)</title><rect x="828.9" y="404" width="0.1" height="15.0" fill="rgb(252,19,12)" rx="2" ry="2" />
<text x="831.93" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::MergeFrom (4,664 samples, 2.75%)</title><rect x="712.8" y="452" width="32.5" height="15.0" fill="rgb(225,10,20)" rx="2" ry="2" />
<text x="715.77" y="462.5" >_r..</text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_free_definite_size (15 samples, 0.01%)</title><rect x="1114.7" y="212" width="0.1" height="15.0" fill="rgb(206,54,14)" rx="2" ry="2" />
<text x="1117.72" y="222.5" ></text>
</g>
<g >
<title>python`PyTuple_New (27 samples, 0.02%)</title><rect x="531.4" y="868" width="0.2" height="15.0" fill="rgb(247,52,35)" rx="2" ry="2" />
<text x="534.40" y="878.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (15 samples, 0.01%)</title><rect x="820.8" y="404" width="0.2" height="15.0" fill="rgb(216,40,17)" rx="2" ry="2" />
<text x="823.85" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Block (145 samples, 0.09%)</title><rect x="926.9" y="324" width="1.0" height="15.0" fill="rgb(221,64,2)" rx="2" ry="2" />
<text x="929.91" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`instrumented_io_context::post (157 samples, 0.09%)</title><rect x="1066.9" y="148" width="1.1" height="15.0" fill="rgb(206,175,38)" rx="2" ry="2" />
<text x="1069.92" y="158.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (122 samples, 0.07%)</title><rect x="415.3" y="996" width="0.8" height="15.0" fill="rgb(205,123,7)" rx="2" ry="2" />
<text x="418.29" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (38 samples, 0.02%)</title><rect x="1116.1" y="244" width="0.2" height="15.0" fill="rgb(230,152,26)" rx="2" ry="2" />
<text x="1119.07" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (77 samples, 0.05%)</title><rect x="697.7" y="436" width="0.5" height="15.0" fill="rgb(223,208,38)" rx="2" ry="2" />
<text x="700.70" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ClientAsyncResponseReader::Finish (20 samples, 0.01%)</title><rect x="985.4" y="324" width="0.2" height="15.0" fill="rgb(224,19,51)" rx="2" ry="2" />
<text x="988.44" y="334.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (32 samples, 0.02%)</title><rect x="61.2" y="1012" width="0.2" height="15.0" fill="rgb(246,48,50)" rx="2" ry="2" />
<text x="64.16" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (455 samples, 0.27%)</title><rect x="416.3" y="916" width="3.2" height="15.0" fill="rgb(206,36,33)" rx="2" ry="2" />
<text x="419.31" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (119 samples, 0.07%)</title><rect x="472.2" y="932" width="0.9" height="15.0" fill="rgb(216,92,28)" rx="2" ry="2" />
<text x="475.22" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (208 samples, 0.12%)</title><rect x="429.4" y="996" width="1.4" height="15.0" fill="rgb(233,120,35)" rx="2" ry="2" />
<text x="432.38" y="1006.5" ></text>
</g>
<g >
<title>libsystem_c.dylib`notify_check_tz (59 samples, 0.03%)</title><rect x="987.0" y="260" width="0.4" height="15.0" fill="rgb(214,17,36)" rx="2" ry="2" />
<text x="990.04" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (15 samples, 0.01%)</title><rect x="674.5" y="532" width="0.1" height="15.0" fill="rgb(253,221,0)" rx="2" ry="2" />
<text x="677.53" y="542.5" ></text>
</g>
<g >
<title>python`_PyFrame_New_NoTrack (34 samples, 0.02%)</title><rect x="526.7" y="932" width="0.3" height="15.0" fill="rgb(241,177,13)" rx="2" ry="2" />
<text x="529.73" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (101 samples, 0.06%)</title><rect x="486.1" y="948" width="0.7" height="15.0" fill="rgb(253,142,15)" rx="2" ry="2" />
<text x="489.14" y="958.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (48 samples, 0.03%)</title><rect x="68.5" y="964" width="0.3" height="15.0" fill="rgb(213,156,29)" rx="2" ry="2" />
<text x="71.46" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (62 samples, 0.04%)</title><rect x="491.8" y="948" width="0.5" height="15.0" fill="rgb(211,49,31)" rx="2" ry="2" />
<text x="494.83" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_tp_new_3ray_7_raylet_JobID (100 samples, 0.06%)</title><rect x="77.6" y="1044" width="0.7" height="15.0" fill="rgb(245,99,10)" rx="2" ry="2" />
<text x="80.58" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`hs_start_transport_stream_op_batch (19 samples, 0.01%)</title><rect x="1000.5" y="196" width="0.1" height="15.0" fill="rgb(215,109,51)" rx="2" ry="2" />
<text x="1003.50" y="206.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (20 samples, 0.01%)</title><rect x="71.2" y="1044" width="0.1" height="15.0" fill="rgb(246,138,34)" rx="2" ry="2" />
<text x="74.17" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,118 samples, 0.66%)</title><rect x="1128.5" y="260" width="7.8" height="15.0" fill="rgb(234,62,0)" rx="2" ry="2" />
<text x="1131.47" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`call_start_batch (23 samples, 0.01%)</title><rect x="957.4" y="308" width="0.1" height="15.0" fill="rgb(247,229,53)" rx="2" ry="2" />
<text x="960.36" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (89 samples, 0.05%)</title><rect x="1117.3" y="228" width="0.6" height="15.0" fill="rgb(232,155,23)" rx="2" ry="2" />
<text x="1120.33" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ParseContext::ReadSizeAndPushLimitAndDepth (17 samples, 0.01%)</title><rect x="1036.9" y="244" width="0.1" height="15.0" fill="rgb(205,56,46)" rx="2" ry="2" />
<text x="1039.92" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (79 samples, 0.05%)</title><rect x="561.5" y="468" width="0.6" height="15.0" fill="rgb(245,166,49)" rx="2" ry="2" />
<text x="564.55" y="478.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (22 samples, 0.01%)</title><rect x="652.2" y="468" width="0.1" height="15.0" fill="rgb(235,60,51)" rx="2" ry="2" />
<text x="655.17" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (135 samples, 0.08%)</title><rect x="1046.4" y="372" width="0.9" height="15.0" fill="rgb(216,152,15)" rx="2" ry="2" />
<text x="1049.37" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (132 samples, 0.08%)</title><rect x="750.3" y="532" width="1.0" height="15.0" fill="rgb(225,19,12)" rx="2" ry="2" />
<text x="753.34" y="542.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (20 samples, 0.01%)</title><rect x="941.5" y="292" width="0.1" height="15.0" fill="rgb(206,44,50)" rx="2" ry="2" />
<text x="944.49" y="302.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__assign_external (222 samples, 0.13%)</title><rect x="1051.4" y="292" width="1.6" height="15.0" fill="rgb(247,133,45)" rx="2" ry="2" />
<text x="1054.40" y="302.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (501 samples, 0.30%)</title><rect x="12.9" y="180" width="3.5" height="15.0" fill="rgb(225,5,4)" rx="2" ry="2" />
<text x="15.86" y="190.5" ></text>
</g>
<g >
<title>python`_PyUnicode_JoinArray (282 samples, 0.17%)</title><rect x="246.8" y="980" width="2.0" height="15.0" fill="rgb(221,180,3)" rx="2" ry="2" />
<text x="249.85" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (30 samples, 0.02%)</title><rect x="1021.2" y="228" width="0.2" height="15.0" fill="rgb(250,176,40)" rx="2" ry="2" />
<text x="1024.19" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Command::_InternalParse (5,599 samples, 3.31%)</title><rect x="1026.7" y="212" width="39.0" height="15.0" fill="rgb(208,130,7)" rx="2" ry="2" />
<text x="1029.71" y="222.5" >_ra..</text>
</g>
<g >
<title>python`cfunction_call (524 samples, 0.31%)</title><rect x="82.2" y="916" width="3.6" height="15.0" fill="rgb(228,43,20)" rx="2" ry="2" />
<text x="85.17" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (65 samples, 0.04%)</title><rect x="640.5" y="532" width="0.4" height="15.0" fill="rgb(254,16,39)" rx="2" ry="2" />
<text x="643.49" y="542.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__recvmsg (27 samples, 0.02%)</title><rect x="991.4" y="196" width="0.2" height="15.0" fill="rgb(206,227,32)" rx="2" ry="2" />
<text x="994.44" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (442 samples, 0.26%)</title><rect x="646.7" y="468" width="3.1" height="15.0" fill="rgb(236,213,37)" rx="2" ry="2" />
<text x="649.71" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (72 samples, 0.04%)</title><rect x="374.5" y="948" width="0.5" height="15.0" fill="rgb(234,105,43)" rx="2" ry="2" />
<text x="377.53" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (38 samples, 0.02%)</title><rect x="891.9" y="308" width="0.3" height="15.0" fill="rgb(231,84,46)" rx="2" ry="2" />
<text x="894.94" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (142 samples, 0.08%)</title><rect x="1053.3" y="340" width="1.0" height="15.0" fill="rgb(228,16,20)" rx="2" ry="2" />
<text x="1056.35" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (47 samples, 0.03%)</title><rect x="910.3" y="292" width="0.3" height="15.0" fill="rgb(248,74,0)" rx="2" ry="2" />
<text x="913.30" y="302.5" ></text>
</g>
<g >
<title>python`visit_reachable (25 samples, 0.01%)</title><rect x="246.1" y="1028" width="0.1" height="15.0" fill="rgb(220,168,11)" rx="2" ry="2" />
<text x="249.06" y="1038.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (8,334 samples, 4.92%)</title><rect x="252.8" y="964" width="58.0" height="15.0" fill="rgb(250,156,38)" rx="2" ry="2" />
<text x="255.76" y="974.5" >python..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (160 samples, 0.09%)</title><rect x="737.4" y="580" width="1.1" height="15.0" fill="rgb(249,73,54)" rx="2" ry="2" />
<text x="740.35" y="590.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (28 samples, 0.02%)</title><rect x="536.9" y="388" width="0.1" height="15.0" fill="rgb(248,179,45)" rx="2" ry="2" />
<text x="539.85" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (138 samples, 0.08%)</title><rect x="502.5" y="964" width="1.0" height="15.0" fill="rgb(207,144,19)" rx="2" ry="2" />
<text x="505.49" y="974.5" ></text>
</g>
<g >
<title>python`collect (52 samples, 0.03%)</title><rect x="12.1" y="180" width="0.4" height="15.0" fill="rgb(245,167,36)" rx="2" ry="2" />
<text x="15.10" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (15 samples, 0.01%)</title><rect x="997.1" y="276" width="0.1" height="15.0" fill="rgb(248,207,51)" rx="2" ry="2" />
<text x="1000.12" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`publish_call(grpc_server*, (anonymous namespace)::call_data*, unsigned long, (44 samples, 0.03%)</title><rect x="1000.7" y="196" width="0.3" height="15.0" fill="rgb(219,166,1)" rx="2" ry="2" />
<text x="1003.68" y="206.5" ></text>
</g>
<g >
<title>python`_PyUnicodeWriter_Finish (423 samples, 0.25%)</title><rect x="324.5" y="1012" width="3.0" height="15.0" fill="rgb(245,158,25)" rx="2" ry="2" />
<text x="327.51" y="1022.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_cvsignal (560 samples, 0.33%)</title><rect x="928.5" y="292" width="3.9" height="15.0" fill="rgb(209,84,17)" rx="2" ry="2" />
<text x="931.49" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::__clone (205 samples, 0.12%)</title><rect x="863.4" y="276" width="1.5" height="15.0" fill="rgb(222,171,44)" rx="2" ry="2" />
<text x="866.45" y="286.5" ></text>
</g>
<g >
<title>python`_PyUnicodeWriter_PrepareInternal (377 samples, 0.22%)</title><rect x="330.6" y="1044" width="2.6" height="15.0" fill="rgb(206,74,26)" rx="2" ry="2" />
<text x="333.60" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (86 samples, 0.05%)</title><rect x="564.2" y="468" width="0.6" height="15.0" fill="rgb(223,141,41)" rx="2" ry="2" />
<text x="567.23" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (105 samples, 0.06%)</title><rect x="780.7" y="436" width="0.8" height="15.0" fill="rgb(237,156,9)" rx="2" ry="2" />
<text x="783.74" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (106 samples, 0.06%)</title><rect x="714.7" y="564" width="0.7" height="15.0" fill="rgb(205,220,28)" rx="2" ry="2" />
<text x="717.67" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (180 samples, 0.11%)</title><rect x="663.4" y="516" width="1.3" height="15.0" fill="rgb(212,81,15)" rx="2" ry="2" />
<text x="666.44" y="526.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::ServerInterface::PayloadAsyncRequest::FinalizeResult (6,525 samples, 3.85%)</title><rect x="1020.9" y="148" width="45.5" height="15.0" fill="rgb(230,160,52)" rx="2" ry="2" />
<text x="1023.88" y="158.5" >_ray..</text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (74,134 samples, 43.79%)</title><rect x="16.5" y="676" width="516.7" height="15.0" fill="rgb(224,74,25)" rx="2" ry="2" />
<text x="19.47" y="686.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>python`PyErr_CheckSignals (65 samples, 0.04%)</title><rect x="322.5" y="1044" width="0.4" height="15.0" fill="rgb(222,211,25)" rx="2" ry="2" />
<text x="325.47" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (175 samples, 0.10%)</title><rect x="425.8" y="1012" width="1.3" height="15.0" fill="rgb(232,218,20)" rx="2" ry="2" />
<text x="428.83" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (300 samples, 0.18%)</title><rect x="1167.6" y="212" width="2.1" height="15.0" fill="rgb(238,169,10)" rx="2" ry="2" />
<text x="1170.64" y="222.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (49 samples, 0.03%)</title><rect x="393.4" y="916" width="0.3" height="15.0" fill="rgb(214,150,25)" rx="2" ry="2" />
<text x="396.40" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (225 samples, 0.13%)</title><rect x="657.2" y="452" width="1.5" height="15.0" fill="rgb(232,155,10)" rx="2" ry="2" />
<text x="660.15" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage (2,122 samples, 1.25%)</title><rect x="910.8" y="244" width="14.8" height="15.0" fill="rgb(251,216,10)" rx="2" ry="2" />
<text x="913.81" y="254.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (242 samples, 0.14%)</title><rect x="394.9" y="916" width="1.7" height="15.0" fill="rgb(231,16,28)" rx="2" ry="2" />
<text x="397.93" y="926.5" ></text>
</g>
<g >
<title>python`PyList_New (61 samples, 0.04%)</title><rect x="101.4" y="884" width="0.4" height="15.0" fill="rgb(251,206,29)" rx="2" ry="2" />
<text x="104.41" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (367 samples, 0.22%)</title><rect x="768.4" y="468" width="2.5" height="15.0" fill="rgb(235,103,15)" rx="2" ry="2" />
<text x="771.37" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubsubLongPollingReply::ByteSizeLong (647 samples, 0.38%)</title><rect x="962.1" y="388" width="4.5" height="15.0" fill="rgb(227,37,53)" rx="2" ry="2" />
<text x="965.05" y="398.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (77 samples, 0.05%)</title><rect x="238.4" y="980" width="0.6" height="15.0" fill="rgb(240,184,32)" rx="2" ry="2" />
<text x="241.41" y="990.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (25 samples, 0.01%)</title><rect x="1189.4" y="356" width="0.1" height="15.0" fill="rgb(239,188,35)" rx="2" ry="2" />
<text x="1192.35" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::vector ray::IdVectorFromProtobuf (19 samples, 0.01%)</title><rect x="469.5" y="916" width="0.1" height="15.0" fill="rgb(237,139,2)" rx="2" ry="2" />
<text x="472.48" y="926.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (194 samples, 0.11%)</title><rect x="385.2" y="916" width="1.4" height="15.0" fill="rgb(230,113,25)" rx="2" ry="2" />
<text x="388.24" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (40 samples, 0.02%)</title><rect x="899.2" y="372" width="0.3" height="15.0" fill="rgb(232,133,16)" rx="2" ry="2" />
<text x="902.24" y="382.5" ></text>
</g>
<g >
<title>python`PyTuple_New (644 samples, 0.38%)</title><rect x="241.9" y="964" width="4.5" height="15.0" fill="rgb(227,156,32)" rx="2" ry="2" />
<text x="244.88" y="974.5" ></text>
</g>
<g >
<title>python`func_traverse (27 samples, 0.02%)</title><rect x="11.9" y="196" width="0.1" height="15.0" fill="rgb(239,121,54)" rx="2" ry="2" />
<text x="14.86" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::Reference::Reference (435 samples, 0.26%)</title><rect x="860.3" y="276" width="3.1" height="15.0" fill="rgb(216,225,37)" rx="2" ry="2" />
<text x="863.34" y="286.5" ></text>
</g>
<g >
<title>python`builtin_hasattr (19 samples, 0.01%)</title><rect x="70.3" y="980" width="0.2" height="15.0" fill="rgb(244,148,40)" rx="2" ry="2" />
<text x="73.35" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (483 samples, 0.29%)</title><rect x="500.1" y="932" width="3.4" height="15.0" fill="rgb(249,187,43)" rx="2" ry="2" />
<text x="503.09" y="942.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (192 samples, 0.11%)</title><rect x="547.6" y="340" width="1.4" height="15.0" fill="rgb(249,79,50)" rx="2" ry="2" />
<text x="550.62" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::RemoveLocalReference (55 samples, 0.03%)</title><rect x="551.1" y="340" width="0.4" height="15.0" fill="rgb(250,63,39)" rx="2" ry="2" />
<text x="554.10" y="350.5" ></text>
</g>
<g >
<title>python`acquire_timed (24 samples, 0.01%)</title><rect x="1189.8" y="516" width="0.2" height="15.0" fill="rgb(237,115,26)" rx="2" ry="2" />
<text x="1192.78" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (90 samples, 0.05%)</title><rect x="1061.4" y="404" width="0.6" height="15.0" fill="rgb(251,14,25)" rx="2" ry="2" />
<text x="1064.38" y="414.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_cvsignal (39 samples, 0.02%)</title><rect x="961.4" y="276" width="0.2" height="15.0" fill="rgb(242,194,3)" rx="2" ry="2" />
<text x="964.37" y="286.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (180 samples, 0.11%)</title><rect x="1048.4" y="276" width="1.3" height="15.0" fill="rgb(218,25,16)" rx="2" ry="2" />
<text x="1051.42" y="286.5" ></text>
</g>
<g >
<title>python`visit_decref (16 samples, 0.01%)</title><rect x="245.3" y="1028" width="0.1" height="15.0" fill="rgb(250,82,12)" rx="2" ry="2" />
<text x="248.26" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (129 samples, 0.08%)</title><rect x="388.5" y="900" width="0.9" height="15.0" fill="rgb(246,42,33)" rx="2" ry="2" />
<text x="391.49" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayLog::IsLevelEnabled (16 samples, 0.01%)</title><rect x="607.9" y="404" width="0.1" height="15.0" fill="rgb(209,39,49)" rx="2" ry="2" />
<text x="610.91" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`tcp_write (25 samples, 0.01%)</title><rect x="708.4" y="580" width="0.2" height="15.0" fill="rgb(207,126,26)" rx="2" ry="2" />
<text x="711.42" y="590.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (477 samples, 0.28%)</title><rect x="632.3" y="532" width="3.4" height="15.0" fill="rgb(238,196,22)" rx="2" ry="2" />
<text x="635.34" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (354 samples, 0.21%)</title><rect x="814.8" y="452" width="2.5" height="15.0" fill="rgb(205,9,36)" rx="2" ry="2" />
<text x="817.79" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::CoreWorkerClient::PushNormalTask (27 samples, 0.02%)</title><rect x="985.4" y="276" width="0.2" height="15.0" fill="rgb(226,175,31)" rx="2" ry="2" />
<text x="988.44" y="286.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (16 samples, 0.01%)</title><rect x="523.6" y="820" width="0.1" height="15.0" fill="rgb(251,104,50)" rx="2" ry="2" />
<text x="526.62" y="830.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (207 samples, 0.12%)</title><rect x="464.7" y="980" width="1.4" height="15.0" fill="rgb(230,44,15)" rx="2" ry="2" />
<text x="467.70" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_memalign (32 samples, 0.02%)</title><rect x="452.8" y="996" width="0.3" height="15.0" fill="rgb(223,158,20)" rx="2" ry="2" />
<text x="455.83" y="1006.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (322 samples, 0.19%)</title><rect x="894.2" y="308" width="2.2" height="15.0" fill="rgb(221,186,34)" rx="2" ry="2" />
<text x="897.18" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (153 samples, 0.09%)</title><rect x="908.0" y="276" width="1.1" height="15.0" fill="rgb(246,33,44)" rx="2" ry="2" />
<text x="911.02" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`malloc_zone_realloc (73 samples, 0.04%)</title><rect x="28.4" y="820" width="0.5" height="15.0" fill="rgb(252,23,27)" rx="2" ry="2" />
<text x="31.41" y="830.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (16 samples, 0.01%)</title><rect x="770.8" y="500" width="0.1" height="15.0" fill="rgb(234,199,8)" rx="2" ry="2" />
<text x="773.80" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`pollset_work (125 samples, 0.07%)</title><rect x="990.8" y="164" width="0.9" height="15.0" fill="rgb(230,190,36)" rx="2" ry="2" />
<text x="993.84" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (36 samples, 0.02%)</title><rect x="488.2" y="948" width="0.2" height="15.0" fill="rgb(224,108,22)" rx="2" ry="2" />
<text x="491.20" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (63 samples, 0.04%)</title><rect x="462.8" y="996" width="0.5" height="15.0" fill="rgb(223,151,19)" rx="2" ry="2" />
<text x="465.84" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert (919 samples, 0.54%)</title><rect x="918.8" y="308" width="6.4" height="15.0" fill="rgb(250,109,1)" rx="2" ry="2" />
<text x="921.83" y="318.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (114 samples, 0.07%)</title><rect x="1189.2" y="148" width="0.8" height="15.0" fill="rgb(217,219,3)" rx="2" ry="2" />
<text x="1192.21" y="158.5" ></text>
</g>
<g >
<title>python`local_getattro (377 samples, 0.22%)</title><rect x="107.4" y="948" width="2.6" height="15.0" fill="rgb(218,82,14)" rx="2" ry="2" />
<text x="110.36" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_resource_quota_get_memory_pressure (29 samples, 0.02%)</title><rect x="1001.5" y="212" width="0.2" height="15.0" fill="rgb(209,126,14)" rx="2" ry="2" />
<text x="1004.49" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::CopyFrom (15 samples, 0.01%)</title><rect x="712.7" y="452" width="0.1" height="15.0" fill="rgb(211,207,29)" rx="2" ry="2" />
<text x="715.67" y="462.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (17 samples, 0.01%)</title><rect x="234.7" y="980" width="0.1" height="15.0" fill="rgb(232,84,24)" rx="2" ry="2" />
<text x="237.68" y="990.5" ></text>
</g>
<g >
<title>python`local_getattro (15 samples, 0.01%)</title><rect x="110.2" y="932" width="0.1" height="15.0" fill="rgb(219,105,45)" rx="2" ry="2" />
<text x="113.15" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (142 samples, 0.08%)</title><rect x="390.1" y="916" width="1.0" height="15.0" fill="rgb(242,185,30)" rx="2" ry="2" />
<text x="393.11" y="926.5" ></text>
</g>
<g >
<title>python`pythread_wrapper (114 samples, 0.07%)</title><rect x="1189.2" y="100" width="0.8" height="15.0" fill="rgb(208,212,8)" rx="2" ry="2" />
<text x="1192.21" y="110.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (21 samples, 0.01%)</title><rect x="1158.4" y="228" width="0.1" height="15.0" fill="rgb(222,155,35)" rx="2" ry="2" />
<text x="1161.35" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (398 samples, 0.24%)</title><rect x="628.7" y="532" width="2.8" height="15.0" fill="rgb(253,7,51)" rx="2" ry="2" />
<text x="631.69" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (561 samples, 0.33%)</title><rect x="669.1" y="532" width="3.9" height="15.0" fill="rgb(231,225,28)" rx="2" ry="2" />
<text x="672.08" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (453 samples, 0.27%)</title><rect x="405.8" y="948" width="3.2" height="15.0" fill="rgb(244,77,37)" rx="2" ry="2" />
<text x="408.81" y="958.5" ></text>
</g>
<g >
<title>python`_PyLong_FormatAdvancedWriter (20 samples, 0.01%)</title><rect x="313.1" y="996" width="0.2" height="15.0" fill="rgb(238,119,35)" rx="2" ry="2" />
<text x="316.13" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (206 samples, 0.12%)</title><rect x="809.4" y="452" width="1.5" height="15.0" fill="rgb(247,218,43)" rx="2" ry="2" />
<text x="812.44" y="462.5" ></text>
</g>
<g >
<title>python`PyLong_FromSsize_t (40 samples, 0.02%)</title><rect x="383.8" y="948" width="0.3" height="15.0" fill="rgb(234,29,21)" rx="2" ry="2" />
<text x="386.81" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (206 samples, 0.12%)</title><rect x="739.1" y="596" width="1.5" height="15.0" fill="rgb(216,100,37)" rx="2" ry="2" />
<text x="742.12" y="606.5" ></text>
</g>
<g >
<title>python`PyType_IsSubtype (18 samples, 0.01%)</title><rect x="410.0" y="900" width="0.1" height="15.0" fill="rgb(228,141,37)" rx="2" ry="2" />
<text x="412.96" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount::~ObjectReferenceCount (15 samples, 0.01%)</title><rect x="748.5" y="452" width="0.1" height="15.0" fill="rgb(224,102,10)" rx="2" ry="2" />
<text x="751.48" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (56 samples, 0.03%)</title><rect x="235.4" y="996" width="0.4" height="15.0" fill="rgb(227,196,46)" rx="2" ry="2" />
<text x="238.43" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (112 samples, 0.07%)</title><rect x="1090.1" y="276" width="0.8" height="15.0" fill="rgb(217,28,39)" rx="2" ry="2" />
<text x="1093.15" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (162 samples, 0.10%)</title><rect x="782.4" y="436" width="1.1" height="15.0" fill="rgb(208,54,42)" rx="2" ry="2" />
<text x="785.41" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable (22 samples, 0.01%)</title><rect x="410.5" y="900" width="0.2" height="15.0" fill="rgb(215,26,25)" rx="2" ry="2" />
<text x="413.54" y="910.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (37 samples, 0.02%)</title><rect x="1062.1" y="340" width="0.2" height="15.0" fill="rgb(212,18,15)" rx="2" ry="2" />
<text x="1065.06" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (716 samples, 0.42%)</title><rect x="730.6" y="580" width="5.0" height="15.0" fill="rgb(250,210,22)" rx="2" ry="2" />
<text x="733.56" y="590.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_server_request_registered_call (21 samples, 0.01%)</title><rect x="984.7" y="260" width="0.1" height="15.0" fill="rgb(231,207,0)" rx="2" ry="2" />
<text x="987.68" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::LocalMemoryBuffer::OwnsData (37 samples, 0.02%)</title><rect x="446.1" y="932" width="0.3" height="15.0" fill="rgb(247,220,0)" rx="2" ry="2" />
<text x="449.15" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (157 samples, 0.09%)</title><rect x="677.0" y="484" width="1.1" height="15.0" fill="rgb(220,196,14)" rx="2" ry="2" />
<text x="680.02" y="494.5" ></text>
</g>
<g >
<title>python`PyLong_AsSsize_t (20 samples, 0.01%)</title><rect x="111.4" y="916" width="0.1" height="15.0" fill="rgb(215,68,44)" rx="2" ry="2" />
<text x="114.36" y="926.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (97 samples, 0.06%)</title><rect x="57.7" y="996" width="0.7" height="15.0" fill="rgb(216,173,49)" rx="2" ry="2" />
<text x="60.71" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (547 samples, 0.32%)</title><rect x="726.0" y="564" width="3.8" height="15.0" fill="rgb(236,123,34)" rx="2" ry="2" />
<text x="729.03" y="574.5" ></text>
</g>
<g >
<title>python`tupledealloc (91 samples, 0.05%)</title><rect x="17.7" y="804" width="0.6" height="15.0" fill="rgb(207,97,33)" rx="2" ry="2" />
<text x="20.71" y="814.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (168 samples, 0.10%)</title><rect x="453.7" y="980" width="1.1" height="15.0" fill="rgb(246,202,30)" rx="2" ry="2" />
<text x="456.66" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (424 samples, 0.25%)</title><rect x="1044.4" y="356" width="2.9" height="15.0" fill="rgb(249,163,22)" rx="2" ry="2" />
<text x="1047.36" y="366.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (48 samples, 0.03%)</title><rect x="518.7" y="868" width="0.3" height="15.0" fill="rgb(213,110,40)" rx="2" ry="2" />
<text x="521.67" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (114 samples, 0.07%)</title><rect x="1157.4" y="260" width="0.8" height="15.0" fill="rgb(233,19,35)" rx="2" ry="2" />
<text x="1160.44" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (429 samples, 0.25%)</title><rect x="628.5" y="516" width="3.0" height="15.0" fill="rgb(215,60,20)" rx="2" ry="2" />
<text x="631.47" y="526.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert (3,616 samples, 2.14%)</title><rect x="865.0" y="276" width="25.2" height="15.0" fill="rgb(221,141,37)" rx="2" ry="2" />
<text x="867.95" y="286.5" >_..</text>
</g>
<g >
<title>_raylet.so`tcp_write (307 samples, 0.18%)</title><rect x="981.5" y="388" width="2.1" height="15.0" fill="rgb(208,69,40)" rx="2" ry="2" />
<text x="984.50" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (29 samples, 0.02%)</title><rect x="428.6" y="1028" width="0.2" height="15.0" fill="rgb(220,30,10)" rx="2" ry="2" />
<text x="431.63" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (81 samples, 0.05%)</title><rect x="773.0" y="436" width="0.6" height="15.0" fill="rgb(209,74,35)" rx="2" ry="2" />
<text x="776.02" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (21 samples, 0.01%)</title><rect x="609.2" y="420" width="0.1" height="15.0" fill="rgb(216,226,1)" rx="2" ry="2" />
<text x="612.16" y="430.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::AddOutOfLineHelper (262 samples, 0.15%)</title><rect x="660.7" y="436" width="1.8" height="15.0" fill="rgb(226,73,3)" rx="2" ry="2" />
<text x="663.72" y="446.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__grow_by_and_replace (201 samples, 0.12%)</title><rect x="1051.5" y="308" width="1.4" height="15.0" fill="rgb(220,166,46)" rx="2" ry="2" />
<text x="1054.46" y="318.5" ></text>
</g>
<g >
<title>python`_PyUnicodeWriter_WriteSubstring (234 samples, 0.14%)</title><rect x="327.5" y="1012" width="1.7" height="15.0" fill="rgb(219,58,22)" rx="2" ry="2" />
<text x="330.53" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (95 samples, 0.06%)</title><rect x="561.4" y="436" width="0.7" height="15.0" fill="rgb(224,199,15)" rx="2" ry="2" />
<text x="564.44" y="446.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (126 samples, 0.07%)</title><rect x="401.7" y="884" width="0.9" height="15.0" fill="rgb(232,76,5)" rx="2" ry="2" />
<text x="404.73" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`boost::date_time::microsec_clock::create_time(tm* (*) (32 samples, 0.02%)</title><rect x="987.7" y="212" width="0.2" height="15.0" fill="rgb(235,196,37)" rx="2" ry="2" />
<text x="990.72" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::Status grpc::internal::CallOpSendMessage::SendMessage (2,622 samples, 1.55%)</title><rect x="962.0" y="308" width="18.3" height="15.0" fill="rgb(242,63,34)" rx="2" ry="2" />
<text x="964.98" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`boost::date_time::microsec_clock::create_time(tm* (*) (95 samples, 0.06%)</title><rect x="987.0" y="212" width="0.7" height="15.0" fill="rgb(241,78,39)" rx="2" ry="2" />
<text x="990.00" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_malloc (15 samples, 0.01%)</title><rect x="997.1" y="260" width="0.1" height="15.0" fill="rgb(221,44,43)" rx="2" ry="2" />
<text x="1000.12" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (184 samples, 0.11%)</title><rect x="661.1" y="500" width="1.3" height="15.0" fill="rgb(205,78,44)" rx="2" ry="2" />
<text x="664.13" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (32 samples, 0.02%)</title><rect x="448.1" y="1012" width="0.2" height="15.0" fill="rgb(247,4,0)" rx="2" ry="2" />
<text x="451.12" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (178 samples, 0.11%)</title><rect x="653.7" y="484" width="1.2" height="15.0" fill="rgb(244,223,44)" rx="2" ry="2" />
<text x="656.70" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (102 samples, 0.06%)</title><rect x="734.8" y="612" width="0.7" height="15.0" fill="rgb(238,112,30)" rx="2" ry="2" />
<text x="737.79" y="622.5" ></text>
</g>
<g >
<title>python`meth_dealloc (31 samples, 0.02%)</title><rect x="394.6" y="900" width="0.2" height="15.0" fill="rgb(217,63,45)" rx="2" ry="2" />
<text x="397.56" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (637 samples, 0.38%)</title><rect x="751.3" y="516" width="4.4" height="15.0" fill="rgb(234,209,23)" rx="2" ry="2" />
<text x="754.31" y="526.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (115 samples, 0.07%)</title><rect x="397.4" y="932" width="0.8" height="15.0" fill="rgb(213,2,52)" rx="2" ry="2" />
<text x="400.36" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (246 samples, 0.15%)</title><rect x="1081.1" y="228" width="1.7" height="15.0" fill="rgb(221,215,13)" rx="2" ry="2" />
<text x="1084.07" y="238.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (27 samples, 0.02%)</title><rect x="92.1" y="1028" width="0.2" height="15.0" fill="rgb(221,132,25)" rx="2" ry="2" />
<text x="95.07" y="1038.5" ></text>
</g>
<g >
<title>python`_PyGC_CollectNoFail (34 samples, 0.02%)</title><rect x="12.5" y="180" width="0.2" height="15.0" fill="rgb(236,95,48)" rx="2" ry="2" />
<text x="15.47" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (76 samples, 0.04%)</title><rect x="1038.2" y="324" width="0.5" height="15.0" fill="rgb(248,203,52)" rx="2" ry="2" />
<text x="1041.18" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_combiner_continue_exec_ctx (395 samples, 0.23%)</title><rect x="981.0" y="356" width="2.7" height="15.0" fill="rgb(243,24,39)" rx="2" ry="2" />
<text x="983.98" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_create (119 samples, 0.07%)</title><rect x="997.8" y="292" width="0.8" height="15.0" fill="rgb(240,3,0)" rx="2" ry="2" />
<text x="1000.76" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (375 samples, 0.22%)</title><rect x="503.9" y="884" width="2.6" height="15.0" fill="rgb(248,120,42)" rx="2" ry="2" />
<text x="506.86" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::UnsubscribeMessage* google::protobuf::Arena::CreateMaybeMessage (299 samples, 0.18%)</title><rect x="1063.4" y="228" width="2.1" height="15.0" fill="rgb(229,183,42)" rx="2" ry="2" />
<text x="1066.44" y="238.5" ></text>
</g>
<g >
<title>python`PyNumber_AsSsize_t (20 samples, 0.01%)</title><rect x="526.6" y="964" width="0.1" height="15.0" fill="rgb(241,190,34)" rx="2" ry="2" />
<text x="529.59" y="974.5" ></text>
</g>
<g >
<title>python`method_get (35 samples, 0.02%)</title><rect x="95.8" y="900" width="0.2" height="15.0" fill="rgb(222,50,17)" rx="2" ry="2" />
<text x="98.75" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_malloc (20 samples, 0.01%)</title><rect x="998.8" y="292" width="0.1" height="15.0" fill="rgb(242,197,10)" rx="2" ry="2" />
<text x="1001.77" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`read_action_locked (22 samples, 0.01%)</title><rect x="830.2" y="180" width="0.1" height="15.0" fill="rgb(243,76,44)" rx="2" ry="2" />
<text x="833.20" y="190.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (66 samples, 0.04%)</title><rect x="79.9" y="1028" width="0.5" height="15.0" fill="rgb(239,136,53)" rx="2" ry="2" />
<text x="82.89" y="1038.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (279 samples, 0.16%)</title><rect x="517.8" y="852" width="2.0" height="15.0" fill="rgb(209,186,8)" rx="2" ry="2" />
<text x="520.84" y="862.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (466 samples, 0.28%)</title><rect x="1031.5" y="276" width="3.2" height="15.0" fill="rgb(224,95,21)" rx="2" ry="2" />
<text x="1034.49" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal (629 samples, 0.37%)</title><rect x="856.0" y="276" width="4.3" height="15.0" fill="rgb(243,44,41)" rx="2" ry="2" />
<text x="858.95" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (48 samples, 0.03%)</title><rect x="727.9" y="612" width="0.3" height="15.0" fill="rgb(230,97,54)" rx="2" ry="2" />
<text x="730.87" y="622.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_tp_dealloc_3ray_7_raylet_JobID (19 samples, 0.01%)</title><rect x="50.2" y="884" width="0.2" height="15.0" fill="rgb(245,16,53)" rx="2" ry="2" />
<text x="53.25" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (39 samples, 0.02%)</title><rect x="421.8" y="900" width="0.2" height="15.0" fill="rgb(236,11,0)" rx="2" ry="2" />
<text x="424.76" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::HandleAddObjectLocationOwner (24 samples, 0.01%)</title><rect x="831.2" y="212" width="0.2" height="15.0" fill="rgb(226,103,48)" rx="2" ry="2" />
<text x="834.22" y="222.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (204 samples, 0.12%)</title><rect x="148.8" y="996" width="1.4" height="15.0" fill="rgb(236,184,4)" rx="2" ry="2" />
<text x="151.83" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (340 samples, 0.20%)</title><rect x="777.7" y="452" width="2.4" height="15.0" fill="rgb(211,49,10)" rx="2" ry="2" />
<text x="780.74" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (295 samples, 0.17%)</title><rect x="781.5" y="420" width="2.1" height="15.0" fill="rgb(246,157,33)" rx="2" ry="2" />
<text x="784.50" y="430.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (586 samples, 0.35%)</title><rect x="279.8" y="1012" width="4.1" height="15.0" fill="rgb(220,91,49)" rx="2" ry="2" />
<text x="282.84" y="1022.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (30 samples, 0.02%)</title><rect x="345.8" y="996" width="0.2" height="15.0" fill="rgb(227,64,29)" rx="2" ry="2" />
<text x="348.82" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (288 samples, 0.17%)</title><rect x="1098.4" y="244" width="2.0" height="15.0" fill="rgb(219,82,29)" rx="2" ry="2" />
<text x="1101.36" y="254.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (196 samples, 0.12%)</title><rect x="424.0" y="980" width="1.3" height="15.0" fill="rgb(224,65,8)" rx="2" ry="2" />
<text x="426.95" y="990.5" ></text>
</g>
<g >
<title>python`PyType_IsSubtype (16 samples, 0.01%)</title><rect x="228.7" y="980" width="0.1" height="15.0" fill="rgb(238,4,10)" rx="2" ry="2" />
<text x="231.69" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (24 samples, 0.01%)</title><rect x="1114.4" y="228" width="0.2" height="15.0" fill="rgb(220,58,36)" rx="2" ry="2" />
<text x="1117.43" y="238.5" ></text>
</g>
<g >
<title>python`PyType_GenericAlloc (49 samples, 0.03%)</title><rect x="77.9" y="1060" width="0.4" height="15.0" fill="rgb(235,211,35)" rx="2" ry="2" />
<text x="80.93" y="1070.5" ></text>
</g>
<g >
<title>python`method_vectorcall_VARARGS_KEYWORDS (16,367 samples, 9.67%)</title><rect x="402.9" y="852" width="114.1" height="15.0" fill="rgb(237,105,35)" rx="2" ry="2" />
<text x="405.92" y="862.5" >python`method_..</text>
</g>
<g >
<title>python`PyUnicode_New (119 samples, 0.07%)</title><rect x="248.0" y="996" width="0.8" height="15.0" fill="rgb(205,140,11)" rx="2" ry="2" />
<text x="250.98" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (45 samples, 0.03%)</title><rect x="1025.2" y="292" width="0.3" height="15.0" fill="rgb(227,52,43)" rx="2" ry="2" />
<text x="1028.16" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::Publisher::RegisterSubscription (2,060 samples, 1.22%)</title><rect x="911.2" y="260" width="14.4" height="15.0" fill="rgb(220,154,35)" rx="2" ry="2" />
<text x="914.20" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (880 samples, 0.52%)</title><rect x="1159.9" y="212" width="6.2" height="15.0" fill="rgb(238,185,16)" rx="2" ry="2" />
<text x="1162.93" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::SendReply (609 samples, 0.36%)</title><rect x="956.9" y="244" width="4.3" height="15.0" fill="rgb(207,46,1)" rx="2" ry="2" />
<text x="959.94" y="254.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (499 samples, 0.29%)</title><rect x="12.9" y="260" width="3.4" height="15.0" fill="rgb(226,100,47)" rx="2" ry="2" />
<text x="15.87" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::shared_ptr ray::rpc::ClientCallManager::CreateCall(ray::rpc::CoreWorkerService::Stub&amp;, std::__1::unique_ptr (ray::rpc::CoreWorkerService::Stub::*) (27 samples, 0.02%)</title><rect x="985.4" y="308" width="0.2" height="15.0" fill="rgb(220,44,13)" rx="2" ry="2" />
<text x="988.44" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::EpsCopyInputStream::NextBuffer (16 samples, 0.01%)</title><rect x="423.6" y="932" width="0.1" height="15.0" fill="rgb(234,185,11)" rx="2" ry="2" />
<text x="426.60" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (134 samples, 0.08%)</title><rect x="797.0" y="452" width="0.9" height="15.0" fill="rgb(208,210,1)" rx="2" ry="2" />
<text x="799.96" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (59 samples, 0.03%)</title><rect x="980.5" y="388" width="0.4" height="15.0" fill="rgb(224,99,38)" rx="2" ry="2" />
<text x="983.54" y="398.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (60 samples, 0.04%)</title><rect x="823.1" y="420" width="0.4" height="15.0" fill="rgb(230,178,2)" rx="2" ry="2" />
<text x="826.12" y="430.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (32 samples, 0.02%)</title><rect x="92.0" y="1012" width="0.3" height="15.0" fill="rgb(210,76,47)" rx="2" ry="2" />
<text x="95.04" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference* google::protobuf::Arena::CreateMaybeMessage (368 samples, 0.22%)</title><rect x="736.0" y="500" width="2.6" height="15.0" fill="rgb(245,16,24)" rx="2" ry="2" />
<text x="738.99" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerProcess::GetCoreWorker (24 samples, 0.01%)</title><rect x="381.7" y="932" width="0.2" height="15.0" fill="rgb(248,229,17)" rx="2" ry="2" />
<text x="384.69" y="942.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (355 samples, 0.21%)</title><rect x="168.1" y="1028" width="2.5" height="15.0" fill="rgb(249,222,18)" rx="2" ry="2" />
<text x="171.13" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_tp_dealloc_3ray_7_raylet_ObjectRef (2,174 samples, 1.28%)</title><rect x="535.5" y="324" width="15.1" height="15.0" fill="rgb(212,135,26)" rx="2" ry="2" />
<text x="538.47" y="334.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (74,155 samples, 43.80%)</title><rect x="16.5" y="644" width="516.8" height="15.0" fill="rgb(252,61,30)" rx="2" ry="2" />
<text x="19.47" y="654.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (22 samples, 0.01%)</title><rect x="135.7" y="1092" width="0.1" height="15.0" fill="rgb(236,221,53)" rx="2" ry="2" />
<text x="138.66" y="1102.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (420 samples, 0.25%)</title><rect x="635.8" y="484" width="3.0" height="15.0" fill="rgb(242,169,51)" rx="2" ry="2" />
<text x="638.83" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (438 samples, 0.26%)</title><rect x="1023.6" y="244" width="3.1" height="15.0" fill="rgb(217,140,24)" rx="2" ry="2" />
<text x="1026.62" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (87 samples, 0.05%)</title><rect x="495.3" y="916" width="0.6" height="15.0" fill="rgb(210,87,19)" rx="2" ry="2" />
<text x="498.30" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (98 samples, 0.06%)</title><rect x="910.0" y="276" width="0.7" height="15.0" fill="rgb(238,1,22)" rx="2" ry="2" />
<text x="912.99" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (11,994 samples, 7.08%)</title><rect x="137.5" y="964" width="83.6" height="15.0" fill="rgb(240,29,11)" rx="2" ry="2" />
<text x="140.54" y="974.5" >_raylet.s..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (75 samples, 0.04%)</title><rect x="426.5" y="1028" width="0.6" height="15.0" fill="rgb(205,26,20)" rx="2" ry="2" />
<text x="429.53" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (30 samples, 0.02%)</title><rect x="723.6" y="564" width="0.2" height="15.0" fill="rgb(207,81,29)" rx="2" ry="2" />
<text x="726.62" y="574.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::~Address (1,184 samples, 0.70%)</title><rect x="491.0" y="884" width="8.3" height="15.0" fill="rgb(236,100,35)" rx="2" ry="2" />
<text x="494.01" y="894.5" ></text>
</g>
<g >
<title>python`tupledealloc (109 samples, 0.06%)</title><rect x="347.0" y="964" width="0.7" height="15.0" fill="rgb(229,39,11)" rx="2" ry="2" />
<text x="349.97" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (16 samples, 0.01%)</title><rect x="852.7" y="276" width="0.2" height="15.0" fill="rgb(226,47,9)" rx="2" ry="2" />
<text x="855.74" y="286.5" ></text>
</g>
<g >
<title>python`tupledealloc (25 samples, 0.01%)</title><rect x="77.4" y="1060" width="0.2" height="15.0" fill="rgb(215,193,28)" rx="2" ry="2" />
<text x="80.41" y="1070.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (17 samples, 0.01%)</title><rect x="644.1" y="484" width="0.1" height="15.0" fill="rgb(206,33,7)" rx="2" ry="2" />
<text x="647.12" y="494.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (109 samples, 0.06%)</title><rect x="1176.0" y="196" width="0.8" height="15.0" fill="rgb(221,174,12)" rx="2" ry="2" />
<text x="1179.01" y="206.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (240 samples, 0.14%)</title><rect x="740.6" y="532" width="1.7" height="15.0" fill="rgb(242,3,23)" rx="2" ry="2" />
<text x="743.64" y="542.5" ></text>
</g>
<g >
<title>python`frame_dealloc (123 samples, 0.07%)</title><rect x="520.8" y="820" width="0.8" height="15.0" fill="rgb(229,183,23)" rx="2" ry="2" />
<text x="523.79" y="830.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (30 samples, 0.02%)</title><rect x="1167.4" y="212" width="0.2" height="15.0" fill="rgb(245,197,4)" rx="2" ry="2" />
<text x="1170.41" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (53 samples, 0.03%)</title><rect x="676.3" y="516" width="0.4" height="15.0" fill="rgb(223,93,9)" rx="2" ry="2" />
<text x="679.33" y="526.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (23 samples, 0.01%)</title><rect x="947.6" y="276" width="0.2" height="15.0" fill="rgb(207,70,29)" rx="2" ry="2" />
<text x="950.64" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (25 samples, 0.01%)</title><rect x="707.9" y="436" width="0.1" height="15.0" fill="rgb(219,188,48)" rx="2" ry="2" />
<text x="710.85" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (197 samples, 0.12%)</title><rect x="675.3" y="484" width="1.4" height="15.0" fill="rgb(238,86,17)" rx="2" ry="2" />
<text x="678.34" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (83 samples, 0.05%)</title><rect x="1154.2" y="228" width="0.6" height="15.0" fill="rgb(213,9,41)" rx="2" ry="2" />
<text x="1157.21" y="238.5" ></text>
</g>
<g >
<title>python`cell_dealloc (19 samples, 0.01%)</title><rect x="533.2" y="692" width="0.1" height="15.0" fill="rgb(234,38,39)" rx="2" ry="2" />
<text x="536.17" y="702.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerDirectTaskSubmitter::ReturnWorker (25 samples, 0.01%)</title><rect x="986.1" y="276" width="0.1" height="15.0" fill="rgb(207,212,13)" rx="2" ry="2" />
<text x="989.06" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (204 samples, 0.12%)</title><rect x="229.1" y="1012" width="1.4" height="15.0" fill="rgb(218,203,16)" rx="2" ry="2" />
<text x="232.05" y="1022.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`read (73 samples, 0.04%)</title><rect x="1006.6" y="180" width="0.5" height="15.0" fill="rgb(224,159,6)" rx="2" ry="2" />
<text x="1009.62" y="190.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (499 samples, 0.29%)</title><rect x="12.9" y="212" width="3.4" height="15.0" fill="rgb(225,37,46)" rx="2" ry="2" />
<text x="15.87" y="222.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (499 samples, 0.29%)</title><rect x="12.9" y="244" width="3.4" height="15.0" fill="rgb(244,114,45)" rx="2" ry="2" />
<text x="15.87" y="254.5" ></text>
</g>
<g >
<title>python`_ldict (157 samples, 0.09%)</title><rect x="108.4" y="964" width="1.1" height="15.0" fill="rgb(245,98,17)" rx="2" ry="2" />
<text x="111.43" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (147 samples, 0.09%)</title><rect x="1089.1" y="276" width="1.0" height="15.0" fill="rgb(242,106,32)" rx="2" ry="2" />
<text x="1092.12" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (23 samples, 0.01%)</title><rect x="616.8" y="548" width="0.2" height="15.0" fill="rgb(241,148,33)" rx="2" ry="2" />
<text x="619.85" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (477 samples, 0.28%)</title><rect x="1147.8" y="276" width="3.3" height="15.0" fill="rgb(240,66,50)" rx="2" ry="2" />
<text x="1150.81" y="286.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (26 samples, 0.02%)</title><rect x="1189.5" y="356" width="0.2" height="15.0" fill="rgb(247,109,13)" rx="2" ry="2" />
<text x="1192.55" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*, grpc_core::Thread::Options const&amp;)::'lambda'(void*)::__invoke (149 samples, 0.09%)</title><rect x="829.7" y="100" width="1.1" height="15.0" fill="rgb(212,102,51)" rx="2" ry="2" />
<text x="832.74" y="110.5" ></text>
</g>
<g >
<title>python`list_dealloc (39,919 samples, 23.58%)</title><rect x="551.5" y="292" width="278.2" height="15.0" fill="rgb(228,38,18)" rx="2" ry="2" />
<text x="554.48" y="302.5" >python`list_dealloc</text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (40 samples, 0.02%)</title><rect x="957.0" y="292" width="0.3" height="15.0" fill="rgb(207,169,53)" rx="2" ry="2" />
<text x="960.02" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (59 samples, 0.03%)</title><rect x="235.4" y="980" width="0.4" height="15.0" fill="rgb(244,57,11)" rx="2" ry="2" />
<text x="238.41" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::GetObjectStatusReply::~GetObjectStatusReply (22 samples, 0.01%)</title><rect x="499.3" y="884" width="0.2" height="15.0" fill="rgb(243,13,21)" rx="2" ry="2" />
<text x="502.30" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (208 samples, 0.12%)</title><rect x="616.1" y="516" width="1.5" height="15.0" fill="rgb(244,182,22)" rx="2" ry="2" />
<text x="619.14" y="526.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (2,145 samples, 1.27%)</title><rect x="66.4" y="948" width="14.9" height="15.0" fill="rgb(222,110,31)" rx="2" ry="2" />
<text x="69.37" y="958.5" ></text>
</g>
<g >
<title>python`method_get (19 samples, 0.01%)</title><rect x="94.6" y="980" width="0.2" height="15.0" fill="rgb(253,33,51)" rx="2" ry="2" />
<text x="97.63" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (185 samples, 0.11%)</title><rect x="424.0" y="996" width="1.3" height="15.0" fill="rgb(239,208,3)" rx="2" ry="2" />
<text x="427.00" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (152 samples, 0.09%)</title><rect x="1035.6" y="276" width="1.0" height="15.0" fill="rgb(236,16,47)" rx="2" ry="2" />
<text x="1038.57" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`connected_channel_init_call_elem (28 samples, 0.02%)</title><rect x="998.0" y="324" width="0.2" height="15.0" fill="rgb(228,104,41)" rx="2" ry="2" />
<text x="1000.99" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (58 samples, 0.03%)</title><rect x="766.9" y="516" width="0.4" height="15.0" fill="rgb(222,162,6)" rx="2" ry="2" />
<text x="769.86" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (17 samples, 0.01%)</title><rect x="743.6" y="596" width="0.1" height="15.0" fill="rgb(228,68,28)" rx="2" ry="2" />
<text x="746.61" y="606.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (70,328 samples, 41.54%)</title><rect x="30.2" y="820" width="490.1" height="15.0" fill="rgb(208,100,8)" rx="2" ry="2" />
<text x="33.18" y="830.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>_raylet.so`grpc_call_stack_init(grpc_channel_stack*, int, void (*) (40 samples, 0.02%)</title><rect x="997.9" y="308" width="0.3" height="15.0" fill="rgb(208,31,48)" rx="2" ry="2" />
<text x="1000.94" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::UTF8GenericScanFastAscii (48 samples, 0.03%)</title><rect x="1062.7" y="324" width="0.3" height="15.0" fill="rgb(218,2,19)" rx="2" ry="2" />
<text x="1065.71" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (1,085 samples, 0.64%)</title><rect x="476.4" y="948" width="7.6" height="15.0" fill="rgb(251,68,51)" rx="2" ry="2" />
<text x="479.41" y="958.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (243 samples, 0.14%)</title><rect x="639.3" y="468" width="1.7" height="15.0" fill="rgb(226,203,30)" rx="2" ry="2" />
<text x="642.30" y="478.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_unlock (18 samples, 0.01%)</title><rect x="546.9" y="404" width="0.1" height="15.0" fill="rgb(211,194,46)" rx="2" ry="2" />
<text x="549.88" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (932 samples, 0.55%)</title><rect x="893.9" y="276" width="6.5" height="15.0" fill="rgb(227,162,12)" rx="2" ry="2" />
<text x="896.92" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop (2,113 samples, 1.25%)</title><rect x="682.2" y="484" width="14.7" height="15.0" fill="rgb(218,16,40)" rx="2" ry="2" />
<text x="685.18" y="494.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (74,247 samples, 43.85%)</title><rect x="16.4" y="308" width="517.5" height="15.0" fill="rgb(253,204,2)" rx="2" ry="2" />
<text x="19.38" y="318.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (157 samples, 0.09%)</title><rect x="890.4" y="324" width="1.1" height="15.0" fill="rgb(206,176,8)" rx="2" ry="2" />
<text x="893.43" y="334.5" ></text>
</g>
<g >
<title>python`tupledealloc (25 samples, 0.01%)</title><rect x="90.5" y="932" width="0.2" height="15.0" fill="rgb(237,62,53)" rx="2" ry="2" />
<text x="93.53" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (494 samples, 0.29%)</title><rect x="1043.9" y="324" width="3.4" height="15.0" fill="rgb(221,199,15)" rx="2" ry="2" />
<text x="1046.88" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (21 samples, 0.01%)</title><rect x="742.1" y="612" width="0.2" height="15.0" fill="rgb(228,57,2)" rx="2" ry="2" />
<text x="745.12" y="622.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (44 samples, 0.03%)</title><rect x="721.7" y="564" width="0.3" height="15.0" fill="rgb(242,215,46)" rx="2" ry="2" />
<text x="724.72" y="574.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (74,232 samples, 43.84%)</title><rect x="16.4" y="468" width="517.4" height="15.0" fill="rgb(222,53,21)" rx="2" ry="2" />
<text x="19.41" y="478.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (35 samples, 0.02%)</title><rect x="514.0" y="884" width="0.3" height="15.0" fill="rgb(223,51,39)" rx="2" ry="2" />
<text x="517.05" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerProcess::GetCoreWorker (39 samples, 0.02%)</title><rect x="79.3" y="1012" width="0.3" height="15.0" fill="rgb(234,50,0)" rx="2" ry="2" />
<text x="82.33" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (151 samples, 0.09%)</title><rect x="784.5" y="452" width="1.0" height="15.0" fill="rgb(218,209,2)" rx="2" ry="2" />
<text x="787.46" y="462.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::basic_string (22 samples, 0.01%)</title><rect x="644.8" y="436" width="0.2" height="15.0" fill="rgb(234,182,45)" rx="2" ry="2" />
<text x="647.84" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (74 samples, 0.04%)</title><rect x="999.9" y="228" width="0.5" height="15.0" fill="rgb(243,226,48)" rx="2" ry="2" />
<text x="1002.93" y="238.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (20 samples, 0.01%)</title><rect x="821.0" y="404" width="0.1" height="15.0" fill="rgb(218,169,46)" rx="2" ry="2" />
<text x="823.95" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::AddLocalReference (27 samples, 0.02%)</title><rect x="382.7" y="916" width="0.2" height="15.0" fill="rgb(225,178,7)" rx="2" ry="2" />
<text x="385.71" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (666 samples, 0.39%)</title><rect x="562.1" y="436" width="4.6" height="15.0" fill="rgb(242,215,5)" rx="2" ry="2" />
<text x="565.10" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline (2,126 samples, 1.26%)</title><rect x="682.1" y="468" width="14.9" height="15.0" fill="rgb(227,187,47)" rx="2" ry="2" />
<text x="685.14" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (181 samples, 0.11%)</title><rect x="1134.8" y="292" width="1.2" height="15.0" fill="rgb(243,90,26)" rx="2" ry="2" />
<text x="1137.75" y="302.5" ></text>
</g>
<g >
<title>python`PyList_New (21 samples, 0.01%)</title><rect x="377.7" y="948" width="0.1" height="15.0" fill="rgb(222,55,26)" rx="2" ry="2" />
<text x="380.65" y="958.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (16 samples, 0.01%)</title><rect x="1189.2" y="516" width="0.1" height="15.0" fill="rgb(213,72,36)" rx="2" ry="2" />
<text x="1192.23" y="526.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (18 samples, 0.01%)</title><rect x="63.0" y="900" width="0.1" height="15.0" fill="rgb(226,126,40)" rx="2" ry="2" />
<text x="66.00" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (502 samples, 0.30%)</title><rect x="1181.4" y="212" width="3.5" height="15.0" fill="rgb(206,112,52)" rx="2" ry="2" />
<text x="1184.36" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert (1,430 samples, 0.84%)</title><rect x="915.5" y="292" width="9.9" height="15.0" fill="rgb(226,56,23)" rx="2" ry="2" />
<text x="918.46" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::raylet::RayletClient::RequestWorkerLease (28 samples, 0.02%)</title><rect x="985.8" y="276" width="0.2" height="15.0" fill="rgb(227,76,50)" rx="2" ry="2" />
<text x="988.78" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (25 samples, 0.01%)</title><rect x="740.4" y="628" width="0.2" height="15.0" fill="rgb(222,38,47)" rx="2" ry="2" />
<text x="743.38" y="638.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (91 samples, 0.05%)</title><rect x="900.9" y="292" width="0.6" height="15.0" fill="rgb(239,111,35)" rx="2" ry="2" />
<text x="903.89" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::DeleteReferenceInternal (36,074 samples, 21.31%)</title><rect x="578.2" y="372" width="251.5" height="15.0" fill="rgb(226,134,18)" rx="2" ry="2" />
<text x="581.24" y="382.5" >_raylet.so`ray::core::ReferenceCo..</text>
</g>
<g >
<title>_raylet.so`__pyx_tp_dealloc_3ray_7_raylet_ObjectRef (65 samples, 0.04%)</title><rect x="551.0" y="292" width="0.5" height="15.0" fill="rgb(241,196,26)" rx="2" ry="2" />
<text x="554.03" y="302.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string&amp; std::__1::basic_string::__assign_no_alias (869 samples, 0.51%)</title><rect x="228.8" y="964" width="6.1" height="15.0" fill="rgb(250,165,47)" rx="2" ry="2" />
<text x="231.80" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`ray::NodeID::NodeID (27 samples, 0.02%)</title><rect x="437.8" y="900" width="0.2" height="15.0" fill="rgb(213,226,18)" rx="2" ry="2" />
<text x="440.85" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_malloc_aligned (28 samples, 0.02%)</title><rect x="998.2" y="324" width="0.2" height="15.0" fill="rgb(242,186,37)" rx="2" ry="2" />
<text x="1001.22" y="334.5" ></text>
</g>
<g >
<title>python`PyLong_FromSsize_t (16 samples, 0.01%)</title><rect x="77.2" y="1076" width="0.1" height="15.0" fill="rgb(234,23,43)" rx="2" ry="2" />
<text x="80.17" y="1086.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::__clone (283 samples, 0.17%)</title><rect x="639.0" y="452" width="2.0" height="15.0" fill="rgb(236,107,38)" rx="2" ry="2" />
<text x="642.03" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::InternalExtend (58 samples, 0.03%)</title><rect x="709.8" y="468" width="0.4" height="15.0" fill="rgb(225,6,34)" rx="2" ry="2" />
<text x="712.84" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::ReferenceTableToProto (2,775 samples, 1.64%)</title><rect x="658.8" y="420" width="19.4" height="15.0" fill="rgb(220,80,8)" rx="2" ry="2" />
<text x="661.82" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (183 samples, 0.11%)</title><rect x="469.8" y="932" width="1.3" height="15.0" fill="rgb(239,214,11)" rx="2" ry="2" />
<text x="472.81" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (28 samples, 0.02%)</title><rect x="390.9" y="932" width="0.2" height="15.0" fill="rgb(251,28,33)" rx="2" ry="2" />
<text x="393.90" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::pub_internal::Subscriber::PublishIfPossible (3,191 samples, 1.88%)</title><rect x="961.8" y="244" width="22.2" height="15.0" fill="rgb(245,85,50)" rx="2" ry="2" />
<text x="964.81" y="254.5" >_..</text>
</g>
<g >
<title>libc++abi.dylib`operator new (157 samples, 0.09%)</title><rect x="863.8" y="292" width="1.1" height="15.0" fill="rgb(219,83,29)" rx="2" ry="2" />
<text x="866.78" y="302.5" ></text>
</g>
<g >
<title>python`frame_dealloc (19 samples, 0.01%)</title><rect x="527.0" y="932" width="0.1" height="15.0" fill="rgb(212,113,25)" rx="2" ry="2" />
<text x="529.97" y="942.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (55 samples, 0.03%)</title><rect x="102.7" y="900" width="0.4" height="15.0" fill="rgb(249,131,44)" rx="2" ry="2" />
<text x="105.67" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerDirectTaskSubmitter::PushNormalTask (42 samples, 0.02%)</title><rect x="985.4" y="260" width="0.3" height="15.0" fill="rgb(238,176,17)" rx="2" ry="2" />
<text x="988.42" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (40 samples, 0.02%)</title><rect x="536.6" y="388" width="0.3" height="15.0" fill="rgb(209,153,16)" rx="2" ry="2" />
<text x="539.57" y="398.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (177 samples, 0.10%)</title><rect x="549.3" y="356" width="1.2" height="15.0" fill="rgb(254,148,48)" rx="2" ry="2" />
<text x="552.30" y="366.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator delete (31 samples, 0.02%)</title><rect x="489.4" y="900" width="0.2" height="15.0" fill="rgb(250,53,0)" rx="2" ry="2" />
<text x="492.40" y="910.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__sendmsg (23 samples, 0.01%)</title><rect x="708.4" y="596" width="0.2" height="15.0" fill="rgb(222,172,34)" rx="2" ry="2" />
<text x="711.42" y="606.5" ></text>
</g>
<g >
<title>python`_PyUnicodeWriter_WriteStr (735 samples, 0.43%)</title><rect x="329.7" y="1028" width="5.1" height="15.0" fill="rgb(254,96,0)" rx="2" ry="2" />
<text x="332.72" y="1038.5" ></text>
</g>
<g >
<title>python`lock_PyThread_acquire_lock (24 samples, 0.01%)</title><rect x="1189.8" y="500" width="0.2" height="15.0" fill="rgb(216,112,13)" rx="2" ry="2" />
<text x="1192.78" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (56 samples, 0.03%)</title><rect x="488.7" y="900" width="0.4" height="15.0" fill="rgb(225,35,46)" rx="2" ry="2" />
<text x="491.71" y="910.5" ></text>
</g>
<g >
<title>python`PyRun_SimpleFileExFlags (116,701 samples, 68.93%)</title><rect x="16.4" y="180" width="813.3" height="15.0" fill="rgb(219,141,38)" rx="2" ry="2" />
<text x="19.36" y="190.5" >python`PyRun_SimpleFileExFlags</text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (18 samples, 0.01%)</title><rect x="955.9" y="324" width="0.1" height="15.0" fill="rgb(235,107,48)" rx="2" ry="2" />
<text x="958.89" y="334.5" ></text>
</g>
<g >
<title>python`call_function (23 samples, 0.01%)</title><rect x="1189.6" y="548" width="0.1" height="15.0" fill="rgb(212,129,39)" rx="2" ry="2" />
<text x="1192.55" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (42 samples, 0.02%)</title><rect x="351.7" y="964" width="0.3" height="15.0" fill="rgb(236,168,5)" rx="2" ry="2" />
<text x="354.70" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (20 samples, 0.01%)</title><rect x="515.7" y="868" width="0.2" height="15.0" fill="rgb(205,75,9)" rx="2" ry="2" />
<text x="518.73" y="878.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (6,513 samples, 3.85%)</title><rect x="50.6" y="884" width="45.4" height="15.0" fill="rgb(234,1,43)" rx="2" ry="2" />
<text x="53.62" y="894.5" >pyth..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (69 samples, 0.04%)</title><rect x="494.4" y="948" width="0.5" height="15.0" fill="rgb(247,37,20)" rx="2" ry="2" />
<text x="497.37" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (70 samples, 0.04%)</title><rect x="465.6" y="1044" width="0.5" height="15.0" fill="rgb(225,66,48)" rx="2" ry="2" />
<text x="468.63" y="1054.5" ></text>
</g>
<g >
<title>python`PyObject_RichCompare (561 samples, 0.33%)</title><rect x="91.3" y="932" width="3.9" height="15.0" fill="rgb(253,150,37)" rx="2" ry="2" />
<text x="94.31" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (155 samples, 0.09%)</title><rect x="909.6" y="260" width="1.1" height="15.0" fill="rgb(206,10,4)" rx="2" ry="2" />
<text x="912.59" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (408 samples, 0.24%)</title><rect x="802.8" y="468" width="2.9" height="15.0" fill="rgb(230,70,50)" rx="2" ry="2" />
<text x="805.85" y="478.5" ></text>
</g>
<g >
<title>python`_PyObject_MakeTpCall (40,887 samples, 24.15%)</title><rect x="114.0" y="852" width="284.9" height="15.0" fill="rgb(213,57,20)" rx="2" ry="2" />
<text x="116.96" y="862.5" >python`_PyObject_MakeTpCall</text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (25 samples, 0.01%)</title><rect x="898.6" y="356" width="0.1" height="15.0" fill="rgb(209,196,22)" rx="2" ry="2" />
<text x="901.57" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (354 samples, 0.21%)</title><rect x="458.6" y="980" width="2.5" height="15.0" fill="rgb(210,27,10)" rx="2" ry="2" />
<text x="461.63" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (139 samples, 0.08%)</title><rect x="433.1" y="916" width="1.0" height="15.0" fill="rgb(253,82,18)" rx="2" ry="2" />
<text x="436.09" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (74 samples, 0.04%)</title><rect x="991.1" y="180" width="0.5" height="15.0" fill="rgb(223,4,28)" rx="2" ry="2" />
<text x="994.12" y="190.5" ></text>
</g>
<g >
<title>python`collect (366 samples, 0.22%)</title><rect x="243.8" y="996" width="2.5" height="15.0" fill="rgb(241,10,22)" rx="2" ry="2" />
<text x="246.78" y="1006.5" ></text>
</g>
<g >
<title>python`frame_dealloc (28 samples, 0.02%)</title><rect x="137.3" y="980" width="0.2" height="15.0" fill="rgb(233,212,32)" rx="2" ry="2" />
<text x="140.31" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::Publisher::Publish (9,722 samples, 5.74%)</title><rect x="678.2" y="420" width="67.7" height="15.0" fill="rgb(210,149,8)" rx="2" ry="2" />
<text x="681.16" y="430.5" >_raylet..</text>
</g>
<g >
<title>_raylet.so`ray::rpc::ClientCallImpl::OnReplyReceived (156 samples, 0.09%)</title><rect x="985.3" y="212" width="1.1" height="15.0" fill="rgb(232,177,0)" rx="2" ry="2" />
<text x="988.35" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (25 samples, 0.01%)</title><rect x="1022.9" y="276" width="0.2" height="15.0" fill="rgb(208,225,35)" rx="2" ry="2" />
<text x="1025.92" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (250 samples, 0.15%)</title><rect x="1063.7" y="292" width="1.7" height="15.0" fill="rgb(205,67,21)" rx="2" ry="2" />
<text x="1066.68" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (196 samples, 0.12%)</title><rect x="740.9" y="580" width="1.4" height="15.0" fill="rgb(219,198,50)" rx="2" ry="2" />
<text x="743.90" y="590.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::UnlockSlow (52 samples, 0.03%)</title><rect x="961.3" y="244" width="0.4" height="15.0" fill="rgb(248,21,7)" rx="2" ry="2" />
<text x="964.33" y="254.5" ></text>
</g>
<g >
<title>python`PyObject_GetItem (25 samples, 0.01%)</title><rect x="62.8" y="900" width="0.2" height="15.0" fill="rgb(215,129,26)" rx="2" ry="2" />
<text x="65.83" y="910.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (26 samples, 0.02%)</title><rect x="1189.5" y="452" width="0.2" height="15.0" fill="rgb(254,146,47)" rx="2" ry="2" />
<text x="1192.55" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (86 samples, 0.05%)</title><rect x="903.7" y="292" width="0.6" height="15.0" fill="rgb(222,4,25)" rx="2" ry="2" />
<text x="906.73" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (31 samples, 0.02%)</title><rect x="1065.2" y="324" width="0.2" height="15.0" fill="rgb(224,148,32)" rx="2" ry="2" />
<text x="1068.18" y="334.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (195 samples, 0.12%)</title><rect x="345.4" y="980" width="1.4" height="15.0" fill="rgb(210,100,39)" rx="2" ry="2" />
<text x="348.41" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (27 samples, 0.02%)</title><rect x="925.2" y="308" width="0.2" height="15.0" fill="rgb(217,134,12)" rx="2" ry="2" />
<text x="928.24" y="318.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (121 samples, 0.07%)</title><rect x="70.9" y="1028" width="0.8" height="15.0" fill="rgb(216,45,18)" rx="2" ry="2" />
<text x="73.87" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (499 samples, 0.29%)</title><rect x="957.6" y="308" width="3.4" height="15.0" fill="rgb(207,189,18)" rx="2" ry="2" />
<text x="960.56" y="318.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (107 samples, 0.06%)</title><rect x="346.0" y="996" width="0.8" height="15.0" fill="rgb(208,49,1)" rx="2" ry="2" />
<text x="349.02" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (33 samples, 0.02%)</title><rect x="1115.0" y="244" width="0.2" height="15.0" fill="rgb(242,185,48)" rx="2" ry="2" />
<text x="1117.95" y="254.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (57 samples, 0.03%)</title><rect x="61.4" y="980" width="0.4" height="15.0" fill="rgb(253,142,0)" rx="2" ry="2" />
<text x="64.41" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (152 samples, 0.09%)</title><rect x="723.8" y="564" width="1.1" height="15.0" fill="rgb(227,206,26)" rx="2" ry="2" />
<text x="726.83" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (36 samples, 0.02%)</title><rect x="719.5" y="564" width="0.2" height="15.0" fill="rgb(237,175,6)" rx="2" ry="2" />
<text x="722.47" y="574.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_83add_object_ref_reference (38,102 samples, 22.50%)</title><rect x="117.1" y="916" width="265.5" height="15.0" fill="rgb(234,132,38)" rx="2" ry="2" />
<text x="120.05" y="926.5" >_raylet.so`__pyx_pw_3ray_7_raylet_1..</text>
</g>
<g >
<title>python`pymalloc_alloc (20 samples, 0.01%)</title><rect x="94.3" y="1028" width="0.1" height="15.0" fill="rgb(222,61,42)" rx="2" ry="2" />
<text x="97.26" y="1038.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator delete (19 samples, 0.01%)</title><rect x="765.3" y="484" width="0.1" height="15.0" fill="rgb(228,75,37)" rx="2" ry="2" />
<text x="768.27" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`write_action_begin_locked (29 samples, 0.02%)</title><rect x="708.4" y="564" width="0.2" height="15.0" fill="rgb(226,172,2)" rx="2" ry="2" />
<text x="711.39" y="574.5" ></text>
</g>
<g >
<title>python`_PyArg_ParseTuple_SizeT (3,251 samples, 1.92%)</title><rect x="185.9" y="1028" width="22.7" height="15.0" fill="rgb(239,11,51)" rx="2" ry="2" />
<text x="188.92" y="1038.5" >p..</text>
</g>
<g >
<title>python`bytes_richcompare (22 samples, 0.01%)</title><rect x="92.7" y="980" width="0.2" height="15.0" fill="rgb(221,86,43)" rx="2" ry="2" />
<text x="95.71" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (962 samples, 0.57%)</title><rect x="1100.4" y="244" width="6.7" height="15.0" fill="rgb(238,35,27)" rx="2" ry="2" />
<text x="1103.37" y="254.5" ></text>
</g>
<g >
<title>python`Py_LeaveRecursiveCall (51 samples, 0.03%)</title><rect x="383.2" y="916" width="0.3" height="15.0" fill="rgb(205,74,45)" rx="2" ry="2" />
<text x="386.17" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`destroy_call (29 samples, 0.02%)</title><rect x="1068.5" y="196" width="0.3" height="15.0" fill="rgb(251,23,37)" rx="2" ry="2" />
<text x="1071.55" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (52 samples, 0.03%)</title><rect x="909.2" y="260" width="0.4" height="15.0" fill="rgb(218,56,38)" rx="2" ry="2" />
<text x="912.23" y="270.5" ></text>
</g>
<g >
<title>python`call_function (421 samples, 0.25%)</title><rect x="87.9" y="900" width="2.9" height="15.0" fill="rgb(250,29,7)" rx="2" ry="2" />
<text x="90.91" y="910.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__grow_by_and_replace (833 samples, 0.49%)</title><rect x="228.9" y="980" width="5.8" height="15.0" fill="rgb(210,127,10)" rx="2" ry="2" />
<text x="231.87" y="990.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (20 samples, 0.01%)</title><rect x="1189.6" y="644" width="0.1" height="15.0" fill="rgb(224,104,47)" rx="2" ry="2" />
<text x="1192.57" y="654.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (227 samples, 0.13%)</title><rect x="1137.7" y="276" width="1.6" height="15.0" fill="rgb(253,150,25)" rx="2" ry="2" />
<text x="1140.69" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (78 samples, 0.05%)</title><rect x="646.1" y="484" width="0.6" height="15.0" fill="rgb(217,46,22)" rx="2" ry="2" />
<text x="649.13" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (149 samples, 0.09%)</title><rect x="649.9" y="452" width="1.1" height="15.0" fill="rgb(230,196,26)" rx="2" ry="2" />
<text x="652.93" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set&lt;absl::lts_20210324::container_internal::FlatHashMapPolicy&lt;ray::ObjectID, absl::lts_20210324::flat_hash_set&lt;ray::UniqueID, absl::lts_20210324::hash_internal::Hash&lt;ray::UniqueID&gt;, std::__1::equal_to&lt;ray::UniqueID&gt;, std::__1::allocator&lt;ray::UniqueID&gt; &gt; &gt;, absl::lts_20210324::hash_internal::Hash&lt;ray::ObjectID&gt;, std::__1::equal_� (23 samples, 0.01%)</title><rect x="609.8" y="420" width="0.1" height="15.0" fill="rgb(219,28,13)" rx="2" ry="2" />
<text x="612.77" y="430.5" ></text>
</g>
<g >
<title>python`PyThread_release_lock (101 samples, 0.06%)</title><rect x="89.8" y="964" width="0.7" height="15.0" fill="rgb(253,111,14)" rx="2" ry="2" />
<text x="92.82" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (231 samples, 0.14%)</title><rect x="754.0" y="548" width="1.6" height="15.0" fill="rgb(235,118,1)" rx="2" ry="2" />
<text x="756.99" y="558.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (52 samples, 0.03%)</title><rect x="15.4" y="404" width="0.3" height="15.0" fill="rgb(245,60,2)" rx="2" ry="2" />
<text x="18.37" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::scheduler::do_run_one (15 samples, 0.01%)</title><rect x="830.8" y="148" width="0.1" height="15.0" fill="rgb(250,226,41)" rx="2" ry="2" />
<text x="833.78" y="158.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,995 samples, 1.18%)</title><rect x="1173.4" y="180" width="13.9" height="15.0" fill="rgb(221,184,37)" rx="2" ry="2" />
<text x="1176.42" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (208 samples, 0.12%)</title><rect x="431.2" y="948" width="1.4" height="15.0" fill="rgb(247,159,45)" rx="2" ry="2" />
<text x="434.19" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (381 samples, 0.23%)</title><rect x="665.6" y="516" width="2.7" height="15.0" fill="rgb(251,94,36)" rx="2" ry="2" />
<text x="668.63" y="526.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (31 samples, 0.02%)</title><rect x="469.3" y="932" width="0.2" height="15.0" fill="rgb(254,177,33)" rx="2" ry="2" />
<text x="472.27" y="942.5" ></text>
</g>
<g >
<title>python`cfunction_call (257 samples, 0.15%)</title><rect x="527.4" y="884" width="1.8" height="15.0" fill="rgb(230,115,20)" rx="2" ry="2" />
<text x="530.37" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post (711 samples, 0.42%)</title><rect x="928.4" y="276" width="5.0" height="15.0" fill="rgb(233,119,11)" rx="2" ry="2" />
<text x="931.45" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (38 samples, 0.02%)</title><rect x="571.0" y="436" width="0.3" height="15.0" fill="rgb(235,204,9)" rx="2" ry="2" />
<text x="574.04" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (169 samples, 0.10%)</title><rect x="1035.5" y="260" width="1.1" height="15.0" fill="rgb(243,202,8)" rx="2" ry="2" />
<text x="1038.47" y="270.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::operator= (15 samples, 0.01%)</title><rect x="234.9" y="964" width="0.1" height="15.0" fill="rgb(250,87,19)" rx="2" ry="2" />
<text x="237.92" y="974.5" ></text>
</g>
<g >
<title>python`PyList_New (56 samples, 0.03%)</title><rect x="240.1" y="964" width="0.4" height="15.0" fill="rgb(221,62,29)" rx="2" ry="2" />
<text x="243.08" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (17 samples, 0.01%)</title><rect x="828.8" y="404" width="0.1" height="15.0" fill="rgb(240,207,16)" rx="2" ry="2" />
<text x="831.78" y="414.5" ></text>
</g>
<g >
<title>python`collect (100 samples, 0.06%)</title><rect x="11.4" y="180" width="0.7" height="15.0" fill="rgb(224,166,34)" rx="2" ry="2" />
<text x="14.40" y="190.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="1189.6" y="628" width="0.1" height="15.0" fill="rgb(242,148,36)" rx="2" ry="2" />
<text x="1192.57" y="638.5" ></text>
</g>
<g >
<title>python`frame_dealloc (23 samples, 0.01%)</title><rect x="106.5" y="932" width="0.1" height="15.0" fill="rgb(241,199,4)" rx="2" ry="2" />
<text x="109.47" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert (402 samples, 0.24%)</title><rect x="458.5" y="964" width="2.8" height="15.0" fill="rgb(229,176,43)" rx="2" ry="2" />
<text x="461.50" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayObject::IsException (276 samples, 0.16%)</title><rect x="558.5" y="372" width="1.9" height="15.0" fill="rgb(224,2,26)" rx="2" ry="2" />
<text x="561.50" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::_InternalSerialize (315 samples, 0.19%)</title><rect x="968.9" y="468" width="2.2" height="15.0" fill="rgb(252,103,20)" rx="2" ry="2" />
<text x="971.93" y="478.5" ></text>
</g>
<g >
<title>python`method_vectorcall_VARARGS_KEYWORDS (18 samples, 0.01%)</title><rect x="1189.4" y="468" width="0.1" height="15.0" fill="rgb(250,150,49)" rx="2" ry="2" />
<text x="1192.39" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_combiner_continue_exec_ctx (450 samples, 0.27%)</title><rect x="996.6" y="196" width="3.2" height="15.0" fill="rgb(218,137,15)" rx="2" ry="2" />
<text x="999.65" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (167 samples, 0.10%)</title><rect x="1108.1" y="260" width="1.2" height="15.0" fill="rgb(246,11,0)" rx="2" ry="2" />
<text x="1111.11" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::~ServerCallImpl (17,043 samples, 10.07%)</title><rect x="1070.2" y="148" width="118.7" height="15.0" fill="rgb(243,136,29)" rx="2" ry="2" />
<text x="1073.16" y="158.5" >_raylet.so`ray..</text>
</g>
<g >
<title>_raylet.so`cq_end_op_for_next(grpc_completion_queue*, void*, grpc_error*, void (*) (47 samples, 0.03%)</title><rect x="980.6" y="452" width="0.3" height="15.0" fill="rgb(251,122,24)" rx="2" ry="2" />
<text x="983.57" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (19 samples, 0.01%)</title><rect x="617.8" y="452" width="0.1" height="15.0" fill="rgb(243,178,43)" rx="2" ry="2" />
<text x="620.80" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_85remove_object_ref_reference (39,914 samples, 23.57%)</title><rect x="551.5" y="340" width="278.2" height="15.0" fill="rgb(212,106,30)" rx="2" ry="2" />
<text x="554.49" y="350.5" >_raylet.so`__pyx_pw_3ray_7_raylet_10C..</text>
</g>
<g >
<title>python`unicode_endswith (43 samples, 0.03%)</title><rect x="220.8" y="980" width="0.3" height="15.0" fill="rgb(218,19,5)" rx="2" ry="2" />
<text x="223.84" y="990.5" ></text>
</g>
<g >
<title>python`call_function (116,698 samples, 68.93%)</title><rect x="16.4" y="244" width="813.3" height="15.0" fill="rgb(206,25,29)" rx="2" ry="2" />
<text x="19.37" y="254.5" >python`call_function</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_realloc (73 samples, 0.04%)</title><rect x="28.4" y="836" width="0.5" height="15.0" fill="rgb(207,20,11)" rx="2" ry="2" />
<text x="31.41" y="846.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__sendmsg (25 samples, 0.01%)</title><rect x="830.4" y="212" width="0.2" height="15.0" fill="rgb(225,87,45)" rx="2" ry="2" />
<text x="833.40" y="222.5" ></text>
</g>
<g >
<title>python`cfunction_call (199 samples, 0.12%)</title><rect x="383.5" y="916" width="1.4" height="15.0" fill="rgb(230,109,6)" rx="2" ry="2" />
<text x="386.54" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set&lt;absl::lts_20210324::container_internal::FlatHashMapPolicy&lt;ray::ObjectID, absl::lts_20210324::flat_hash_set&lt;ray::UniqueID, absl::lts_20210324::hash_internal::Hash&lt;ray::UniqueID&gt;, std::__1::equal_to&lt;ray::UniqueID&gt;, std::__1::allocator&lt;ray::UniqueID&gt; &gt; &gt;, absl::lts_20210324::hash_internal::Hash&lt;ray::ObjectID&gt;, std::__1::equal_� (1,368 samples, 0.81%)</title><rect x="698.2" y="436" width="9.6" height="15.0" fill="rgb(250,20,34)" rx="2" ry="2" />
<text x="701.24" y="446.5" ></text>
</g>
<g >
<title>python`method_get (183 samples, 0.11%)</title><rect x="309.6" y="980" width="1.2" height="15.0" fill="rgb(225,107,2)" rx="2" ry="2" />
<text x="312.57" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (19 samples, 0.01%)</title><rect x="998.8" y="308" width="0.1" height="15.0" fill="rgb(246,200,18)" rx="2" ry="2" />
<text x="1001.77" y="318.5" ></text>
</g>
<g >
<title>python`cfunction_call (1,450 samples, 0.86%)</title><rect x="522.9" y="756" width="10.1" height="15.0" fill="rgb(218,28,14)" rx="2" ry="2" />
<text x="525.93" y="766.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__sendmsg (253 samples, 0.15%)</title><rect x="958.9" y="372" width="1.8" height="15.0" fill="rgb(209,175,26)" rx="2" ry="2" />
<text x="961.93" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback (17 samples, 0.01%)</title><rect x="925.6" y="244" width="0.2" height="15.0" fill="rgb(226,228,23)" rx="2" ry="2" />
<text x="928.64" y="254.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (18 samples, 0.01%)</title><rect x="246.6" y="980" width="0.1" height="15.0" fill="rgb(205,113,54)" rx="2" ry="2" />
<text x="249.62" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (175 samples, 0.10%)</title><rect x="825.0" y="436" width="1.2" height="15.0" fill="rgb(213,51,11)" rx="2" ry="2" />
<text x="827.96" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::MergeFrom (920 samples, 0.54%)</title><rect x="738.6" y="500" width="6.4" height="15.0" fill="rgb(238,39,21)" rx="2" ry="2" />
<text x="741.55" y="510.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (212 samples, 0.13%)</title><rect x="229.0" y="996" width="1.5" height="15.0" fill="rgb(223,141,6)" rx="2" ry="2" />
<text x="232.03" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,011 samples, 0.60%)</title><rect x="758.0" y="500" width="7.1" height="15.0" fill="rgb(214,163,38)" rx="2" ry="2" />
<text x="761.00" y="510.5" ></text>
</g>
<g >
<title>python`PyObject_IsTrue (20 samples, 0.01%)</title><rect x="378.6" y="948" width="0.2" height="15.0" fill="rgb(209,18,20)" rx="2" ry="2" />
<text x="381.62" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (2,619 samples, 1.55%)</title><rect x="962.0" y="324" width="18.2" height="15.0" fill="rgb(210,34,11)" rx="2" ry="2" />
<text x="964.99" y="334.5" ></text>
</g>
<g >
<title>python`PyObject_RichCompare (824 samples, 0.49%)</title><rect x="57.1" y="932" width="5.7" height="15.0" fill="rgb(252,117,34)" rx="2" ry="2" />
<text x="60.06" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (345 samples, 0.20%)</title><rect x="736.1" y="532" width="2.4" height="15.0" fill="rgb(216,153,26)" rx="2" ry="2" />
<text x="739.08" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (224 samples, 0.13%)</title><rect x="740.7" y="548" width="1.6" height="15.0" fill="rgb(239,130,13)" rx="2" ry="2" />
<text x="743.71" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::ReportLocalityData (16 samples, 0.01%)</title><rect x="484.8" y="900" width="0.2" height="15.0" fill="rgb(214,203,1)" rx="2" ry="2" />
<text x="487.84" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`got_initial_metadata (32 samples, 0.02%)</title><rect x="996.4" y="196" width="0.2" height="15.0" fill="rgb(237,125,50)" rx="2" ry="2" />
<text x="999.41" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`finish_lithdr_notidx (39 samples, 0.02%)</title><rect x="998.8" y="276" width="0.2" height="15.0" fill="rgb(214,145,15)" rx="2" ry="2" />
<text x="1001.76" y="286.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__munmap (17 samples, 0.01%)</title><rect x="16.2" y="420" width="0.1" height="15.0" fill="rgb(235,26,22)" rx="2" ry="2" />
<text x="19.22" y="430.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (181 samples, 0.11%)</title><rect x="399.3" y="884" width="1.3" height="15.0" fill="rgb(210,77,35)" rx="2" ry="2" />
<text x="402.31" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (74 samples, 0.04%)</title><rect x="814.3" y="452" width="0.5" height="15.0" fill="rgb(251,107,37)" rx="2" ry="2" />
<text x="817.28" y="462.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (55 samples, 0.03%)</title><rect x="58.0" y="1028" width="0.4" height="15.0" fill="rgb(229,199,42)" rx="2" ry="2" />
<text x="61.00" y="1038.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_lock (26 samples, 0.02%)</title><rect x="90.2" y="980" width="0.1" height="15.0" fill="rgb(241,11,54)" rx="2" ry="2" />
<text x="93.15" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (189 samples, 0.11%)</title><rect x="775.6" y="468" width="1.4" height="15.0" fill="rgb(227,28,5)" rx="2" ry="2" />
<text x="778.64" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (34 samples, 0.02%)</title><rect x="1030.6" y="324" width="0.2" height="15.0" fill="rgb(222,26,45)" rx="2" ry="2" />
<text x="1033.58" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`DYLD-STUB$$std::__1::basic_string::assign (15 samples, 0.01%)</title><rect x="412.0" y="916" width="0.1" height="15.0" fill="rgb(227,204,26)" rx="2" ry="2" />
<text x="414.99" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish (605 samples, 0.36%)</title><rect x="957.0" y="260" width="4.2" height="15.0" fill="rgb(254,60,12)" rx="2" ry="2" />
<text x="959.96" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (78 samples, 0.05%)</title><rect x="1169.1" y="228" width="0.5" height="15.0" fill="rgb(233,177,37)" rx="2" ry="2" />
<text x="1172.10" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (405 samples, 0.24%)</title><rect x="896.7" y="308" width="2.8" height="15.0" fill="rgb(210,213,45)" rx="2" ry="2" />
<text x="899.71" y="318.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (431 samples, 0.25%)</title><rect x="249.8" y="964" width="3.0" height="15.0" fill="rgb(230,94,53)" rx="2" ry="2" />
<text x="252.75" y="974.5" ></text>
</g>
<g >
<title>python`_PyObject_CallFunctionVa (1,176 samples, 0.69%)</title><rect x="523.8" y="820" width="8.2" height="15.0" fill="rgb(229,104,37)" rx="2" ry="2" />
<text x="526.82" y="830.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (17 samples, 0.01%)</title><rect x="484.5" y="916" width="0.1" height="15.0" fill="rgb(241,8,31)" rx="2" ry="2" />
<text x="487.45" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`read_action_locked (16 samples, 0.01%)</title><rect x="991.2" y="212" width="0.1" height="15.0" fill="rgb(210,195,25)" rx="2" ry="2" />
<text x="994.20" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::GrpcServer::Shutdown (19 samples, 0.01%)</title><rect x="15.8" y="372" width="0.1" height="15.0" fill="rgb(220,42,53)" rx="2" ry="2" />
<text x="18.81" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedSubMessage::_InternalParse (3,534 samples, 2.09%)</title><rect x="1038.8" y="244" width="24.6" height="15.0" fill="rgb(211,5,36)" rx="2" ry="2" />
<text x="1041.75" y="254.5" >_..</text>
</g>
<g >
<title>python`convertitem (48 samples, 0.03%)</title><rect x="189.4" y="1044" width="0.3" height="15.0" fill="rgb(251,1,1)" rx="2" ry="2" />
<text x="192.36" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount* google::protobuf::Arena::CreateMaybeMessage (360 samples, 0.21%)</title><rect x="722.4" y="484" width="2.5" height="15.0" fill="rgb(207,168,24)" rx="2" ry="2" />
<text x="725.40" y="494.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (34 samples, 0.02%)</title><rect x="924.9" y="324" width="0.2" height="15.0" fill="rgb(232,221,53)" rx="2" ry="2" />
<text x="927.88" y="334.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (31 samples, 0.02%)</title><rect x="1189.7" y="452" width="0.3" height="15.0" fill="rgb(222,54,13)" rx="2" ry="2" />
<text x="1192.74" y="462.5" ></text>
</g>
<g >
<title>python`build_string (3,195 samples, 1.89%)</title><rect x="313.5" y="996" width="22.2" height="15.0" fill="rgb(249,43,26)" rx="2" ry="2" />
<text x="316.48" y="1006.5" >p..</text>
</g>
<g >
<title>python`PySequence_Fast (20 samples, 0.01%)</title><rect x="241.7" y="964" width="0.2" height="15.0" fill="rgb(244,206,45)" rx="2" ry="2" />
<text x="244.74" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::_InternalParse (1,945 samples, 1.15%)</title><rect x="1049.7" y="260" width="13.5" height="15.0" fill="rgb(248,198,21)" rx="2" ry="2" />
<text x="1052.68" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::FutureResolver::ProcessResolvedObject (5,016 samples, 2.96%)</title><rect x="438.2" y="900" width="35.0" height="15.0" fill="rgb(208,19,0)" rx="2" ry="2" />
<text x="441.20" y="910.5" >_r..</text>
</g>
<g >
<title>python`PyObject_RichCompare (40 samples, 0.02%)</title><rect x="108.1" y="964" width="0.2" height="15.0" fill="rgb(224,18,26)" rx="2" ry="2" />
<text x="111.07" y="974.5" ></text>
</g>
<g >
<title>python`frame_dealloc (55 samples, 0.03%)</title><rect x="113.1" y="868" width="0.3" height="15.0" fill="rgb(215,79,17)" rx="2" ry="2" />
<text x="116.06" y="878.5" ></text>
</g>
<g >
<title>python`PyTuple_New (1,205 samples, 0.71%)</title><rect x="141.9" y="980" width="8.3" height="15.0" fill="rgb(213,179,18)" rx="2" ry="2" />
<text x="144.85" y="990.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (63 samples, 0.04%)</title><rect x="57.9" y="1012" width="0.5" height="15.0" fill="rgb(217,162,36)" rx="2" ry="2" />
<text x="60.94" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::AddBorrowedObjectInternal (1,501 samples, 0.89%)</title><rect x="473.6" y="916" width="10.5" height="15.0" fill="rgb(242,3,54)" rx="2" ry="2" />
<text x="476.63" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (217 samples, 0.13%)</title><rect x="467.3" y="980" width="1.5" height="15.0" fill="rgb(242,167,13)" rx="2" ry="2" />
<text x="470.30" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (21 samples, 0.01%)</title><rect x="824.8" y="452" width="0.2" height="15.0" fill="rgb(218,212,13)" rx="2" ry="2" />
<text x="827.81" y="462.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (26 samples, 0.02%)</title><rect x="503.7" y="884" width="0.1" height="15.0" fill="rgb(249,225,48)" rx="2" ry="2" />
<text x="506.66" y="894.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__grow_by_and_replace (645 samples, 0.38%)</title><rect x="1043.4" y="292" width="4.5" height="15.0" fill="rgb(233,71,51)" rx="2" ry="2" />
<text x="1046.44" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch (18,614 samples, 10.99%)</title><rect x="831.5" y="212" width="129.7" height="15.0" fill="rgb(214,123,39)" rx="2" ry="2" />
<text x="834.46" y="222.5" >_raylet.so`ray::..</text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::Clear (17 samples, 0.01%)</title><rect x="490.6" y="884" width="0.2" height="15.0" fill="rgb(206,166,48)" rx="2" ry="2" />
<text x="493.64" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::MessageLite::SerializePartialToZeroCopyStream (1,461 samples, 0.86%)</title><rect x="962.0" y="372" width="10.2" height="15.0" fill="rgb(209,8,6)" rx="2" ry="2" />
<text x="965.02" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::clear_pub_message_one_of (3,522 samples, 2.08%)</title><rect x="748.3" y="436" width="24.6" height="15.0" fill="rgb(235,97,19)" rx="2" ry="2" />
<text x="751.32" y="446.5" >_..</text>
</g>
<g >
<title>python`long_to_decimal_string_internal (38 samples, 0.02%)</title><rect x="335.0" y="1012" width="0.2" height="15.0" fill="rgb(239,94,18)" rx="2" ry="2" />
<text x="337.96" y="1022.5" ></text>
</g>
<g >
<title>python`PyObject_GetItem (15 samples, 0.01%)</title><rect x="101.9" y="884" width="0.1" height="15.0" fill="rgb(206,93,47)" rx="2" ry="2" />
<text x="104.85" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (23 samples, 0.01%)</title><rect x="1050.7" y="356" width="0.2" height="15.0" fill="rgb(238,86,12)" rx="2" ry="2" />
<text x="1053.73" y="366.5" ></text>
</g>
<g >
<title>python`PyObject_GenericGetAttr (107 samples, 0.06%)</title><rect x="377.9" y="948" width="0.7" height="15.0" fill="rgb(207,210,37)" rx="2" ry="2" />
<text x="380.88" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (292 samples, 0.17%)</title><rect x="417.0" y="996" width="2.1" height="15.0" fill="rgb(216,224,13)" rx="2" ry="2" />
<text x="420.03" y="1006.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (33 samples, 0.02%)</title><rect x="130.3" y="1028" width="0.2" height="15.0" fill="rgb(231,223,28)" rx="2" ry="2" />
<text x="133.27" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (153 samples, 0.09%)</title><rect x="387.2" y="964" width="1.0" height="15.0" fill="rgb(216,154,48)" rx="2" ry="2" />
<text x="390.17" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (24 samples, 0.01%)</title><rect x="1020.5" y="180" width="0.2" height="15.0" fill="rgb(241,106,25)" rx="2" ry="2" />
<text x="1023.49" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable (604 samples, 0.36%)</title><rect x="412.1" y="916" width="4.2" height="15.0" fill="rgb(252,67,23)" rx="2" ry="2" />
<text x="415.10" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (995 samples, 0.59%)</title><rect x="1084.0" y="228" width="7.0" height="15.0" fill="rgb(213,161,12)" rx="2" ry="2" />
<text x="1087.03" y="238.5" ></text>
</g>
<g >
<title>libsystem_notify.dylib`0x00007fff22baad98 (17 samples, 0.01%)</title><rect x="987.2" y="292" width="0.1" height="15.0" fill="rgb(237,185,21)" rx="2" ry="2" />
<text x="990.21" y="302.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (22 samples, 0.01%)</title><rect x="235.0" y="964" width="0.2" height="15.0" fill="rgb(208,150,21)" rx="2" ry="2" />
<text x="238.03" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (23 samples, 0.01%)</title><rect x="1188.8" y="164" width="0.1" height="15.0" fill="rgb(230,157,34)" rx="2" ry="2" />
<text x="1191.78" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_memalign (642 samples, 0.38%)</title><rect x="448.4" y="1012" width="4.4" height="15.0" fill="rgb(232,141,42)" rx="2" ry="2" />
<text x="451.36" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (22 samples, 0.01%)</title><rect x="465.5" y="1044" width="0.1" height="15.0" fill="rgb(251,21,30)" rx="2" ry="2" />
<text x="468.47" y="1054.5" ></text>
</g>
<g >
<title>libsystem_notify.dylib`0x00007fff22baaeea (15 samples, 0.01%)</title><rect x="987.3" y="292" width="0.1" height="15.0" fill="rgb(236,15,23)" rx="2" ry="2" />
<text x="990.32" y="302.5" ></text>
</g>
<g >
<title>python`call_function (74,128 samples, 43.78%)</title><rect x="16.5" y="692" width="516.6" height="15.0" fill="rgb(212,86,40)" rx="2" ry="2" />
<text x="19.50" y="702.5" >python`call_function</text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (499 samples, 0.29%)</title><rect x="12.9" y="228" width="3.4" height="15.0" fill="rgb(243,192,13)" rx="2" ry="2" />
<text x="15.87" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (539 samples, 0.32%)</title><rect x="738.8" y="516" width="3.7" height="15.0" fill="rgb(205,191,5)" rx="2" ry="2" />
<text x="741.78" y="526.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::Reference::Reference (3,994 samples, 2.36%)</title><rect x="613.3" y="436" width="27.8" height="15.0" fill="rgb(240,66,18)" rx="2" ry="2" />
<text x="616.30" y="446.5" >_..</text>
</g>
<g >
<title>python`call_function (21 samples, 0.01%)</title><rect x="1189.4" y="452" width="0.1" height="15.0" fill="rgb(236,134,9)" rx="2" ry="2" />
<text x="1192.37" y="462.5" ></text>
</g>
<g >
<title>python`PyUnicode_AsASCIIString (27 samples, 0.02%)</title><rect x="378.8" y="948" width="0.2" height="15.0" fill="rgb(233,226,3)" rx="2" ry="2" />
<text x="381.79" y="958.5" ></text>
</g>
<g >
<title>python`_PyObject_MakeTpCall (1,454 samples, 0.86%)</title><rect x="522.9" y="708" width="10.2" height="15.0" fill="rgb(248,137,47)" rx="2" ry="2" />
<text x="525.92" y="718.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (19 samples, 0.01%)</title><rect x="326.4" y="1060" width="0.1" height="15.0" fill="rgb(237,5,43)" rx="2" ry="2" />
<text x="329.40" y="1070.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`realloc (17 samples, 0.01%)</title><rect x="26.6" y="820" width="0.1" height="15.0" fill="rgb(225,108,46)" rx="2" ry="2" />
<text x="29.58" y="830.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::SendReply (55 samples, 0.03%)</title><rect x="708.2" y="468" width="0.4" height="15.0" fill="rgb(211,68,8)" rx="2" ry="2" />
<text x="711.23" y="478.5" ></text>
</g>
<g >
<title>python`PyCMethod_New (2,211 samples, 1.31%)</title><rect x="269.2" y="980" width="15.4" height="15.0" fill="rgb(229,229,45)" rx="2" ry="2" />
<text x="272.23" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`ray::LocalMemoryBuffer::LocalMemoryBuffer (898 samples, 0.53%)</title><rect x="447.3" y="948" width="6.2" height="15.0" fill="rgb(244,129,25)" rx="2" ry="2" />
<text x="450.28" y="958.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::to_string (95 samples, 0.06%)</title><rect x="559.6" y="388" width="0.7" height="15.0" fill="rgb(221,209,0)" rx="2" ry="2" />
<text x="562.62" y="398.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (20 samples, 0.01%)</title><rect x="402.7" y="868" width="0.1" height="15.0" fill="rgb(220,65,12)" rx="2" ry="2" />
<text x="405.67" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (164 samples, 0.10%)</title><rect x="1048.5" y="308" width="1.1" height="15.0" fill="rgb(223,92,45)" rx="2" ry="2" />
<text x="1051.50" y="318.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (18 samples, 0.01%)</title><rect x="393.2" y="948" width="0.2" height="15.0" fill="rgb(232,52,51)" rx="2" ry="2" />
<text x="396.24" y="958.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (18 samples, 0.01%)</title><rect x="1062.4" y="324" width="0.1" height="15.0" fill="rgb(223,84,47)" rx="2" ry="2" />
<text x="1065.41" y="334.5" ></text>
</g>
<g >
<title>python`PyLong_FromSize_t (35 samples, 0.02%)</title><rect x="75.9" y="1060" width="0.2" height="15.0" fill="rgb(222,172,8)" rx="2" ry="2" />
<text x="78.87" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert (465 samples, 0.27%)</title><rect x="466.2" y="916" width="3.3" height="15.0" fill="rgb(229,9,34)" rx="2" ry="2" />
<text x="469.24" y="926.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (108 samples, 0.06%)</title><rect x="64.7" y="916" width="0.7" height="15.0" fill="rgb(239,156,10)" rx="2" ry="2" />
<text x="67.66" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedMessage::~WorkerRefRemovedMessage (6,373 samples, 3.76%)</title><rect x="1121.7" y="196" width="44.5" height="15.0" fill="rgb(230,49,17)" rx="2" ry="2" />
<text x="1124.73" y="206.5" >_ray..</text>
</g>
<g >
<title>python`DYLD-STUB$$strncpy (38 samples, 0.02%)</title><rect x="170.9" y="1012" width="0.3" height="15.0" fill="rgb(207,65,45)" rx="2" ry="2" />
<text x="173.94" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::Address (1,150 samples, 0.68%)</title><rect x="892.6" y="260" width="8.1" height="15.0" fill="rgb(221,43,41)" rx="2" ry="2" />
<text x="895.64" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`mvm_deallocate_pages (43 samples, 0.03%)</title><rect x="802.2" y="468" width="0.3" height="15.0" fill="rgb(233,74,14)" rx="2" ry="2" />
<text x="805.21" y="478.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_os_unfair_lock_lock_slow (20 samples, 0.01%)</title><rect x="1153.5" y="260" width="0.1" height="15.0" fill="rgb(242,137,36)" rx="2" ry="2" />
<text x="1156.46" y="270.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (338 samples, 0.20%)</title><rect x="894.1" y="292" width="2.3" height="15.0" fill="rgb(247,9,11)" rx="2" ry="2" />
<text x="897.07" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (182 samples, 0.11%)</title><rect x="676.9" y="452" width="1.2" height="15.0" fill="rgb(212,155,1)" rx="2" ry="2" />
<text x="679.86" y="462.5" ></text>
</g>
<g >
<title>python`acquire_timed (153 samples, 0.09%)</title><rect x="82.8" y="948" width="1.1" height="15.0" fill="rgb(222,62,12)" rx="2" ry="2" />
<text x="85.83" y="958.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (56 samples, 0.03%)</title><rect x="532.4" y="836" width="0.4" height="15.0" fill="rgb(239,203,28)" rx="2" ry="2" />
<text x="535.41" y="846.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (53 samples, 0.03%)</title><rect x="563.9" y="484" width="0.3" height="15.0" fill="rgb(240,213,7)" rx="2" ry="2" />
<text x="566.86" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_9ObjectRef_7binary (492 samples, 0.29%)</title><rect x="399.2" y="868" width="3.4" height="15.0" fill="rgb(226,14,22)" rx="2" ry="2" />
<text x="402.19" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (463 samples, 0.27%)</title><rect x="1055.7" y="340" width="3.2" height="15.0" fill="rgb(254,206,38)" rx="2" ry="2" />
<text x="1058.67" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (93 samples, 0.05%)</title><rect x="568.6" y="452" width="0.6" height="15.0" fill="rgb(215,94,21)" rx="2" ry="2" />
<text x="571.59" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (104 samples, 0.06%)</title><rect x="630.7" y="564" width="0.8" height="15.0" fill="rgb(216,41,11)" rx="2" ry="2" />
<text x="633.73" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (334 samples, 0.20%)</title><rect x="665.9" y="548" width="2.4" height="15.0" fill="rgb(250,89,21)" rx="2" ry="2" />
<text x="668.95" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (22 samples, 0.01%)</title><rect x="1053.8" y="356" width="0.2" height="15.0" fill="rgb(219,3,16)" rx="2" ry="2" />
<text x="1056.82" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (40 samples, 0.02%)</title><rect x="907.4" y="308" width="0.2" height="15.0" fill="rgb(243,192,14)" rx="2" ry="2" />
<text x="910.36" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::Executor::RunClosures (107 samples, 0.06%)</title><rect x="830.0" y="132" width="0.8" height="15.0" fill="rgb(252,67,51)" rx="2" ry="2" />
<text x="833.01" y="142.5" ></text>
</g>
<g >
<title>python`cfunction_call (232 samples, 0.14%)</title><rect x="88.9" y="932" width="1.6" height="15.0" fill="rgb(245,211,20)" rx="2" ry="2" />
<text x="91.91" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (61 samples, 0.04%)</title><rect x="776.5" y="500" width="0.4" height="15.0" fill="rgb(241,27,9)" rx="2" ry="2" />
<text x="779.52" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (247 samples, 0.15%)</title><rect x="1079.3" y="228" width="1.8" height="15.0" fill="rgb(240,111,31)" rx="2" ry="2" />
<text x="1082.34" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (31 samples, 0.02%)</title><rect x="373.9" y="980" width="0.3" height="15.0" fill="rgb(253,72,6)" rx="2" ry="2" />
<text x="376.94" y="990.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_strncpy (1,254 samples, 0.74%)</title><rect x="161.9" y="1012" width="8.7" height="15.0" fill="rgb(227,177,24)" rx="2" ry="2" />
<text x="164.87" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (69 samples, 0.04%)</title><rect x="1041.6" y="340" width="0.5" height="15.0" fill="rgb(250,1,39)" rx="2" ry="2" />
<text x="1044.60" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (452 samples, 0.27%)</title><rect x="1027.7" y="260" width="3.1" height="15.0" fill="rgb(243,192,11)" rx="2" ry="2" />
<text x="1030.69" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_free_definite_size (21 samples, 0.01%)</title><rect x="1170.4" y="180" width="0.1" height="15.0" fill="rgb(228,226,53)" rx="2" ry="2" />
<text x="1173.35" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (175 samples, 0.10%)</title><rect x="756.7" y="516" width="1.2" height="15.0" fill="rgb(207,58,29)" rx="2" ry="2" />
<text x="759.72" y="526.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator delete (28 samples, 0.02%)</title><rect x="515.4" y="868" width="0.2" height="15.0" fill="rgb(208,193,47)" rx="2" ry="2" />
<text x="518.41" y="878.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (16 samples, 0.01%)</title><rect x="1189.2" y="484" width="0.1" height="15.0" fill="rgb(237,135,34)" rx="2" ry="2" />
<text x="1192.23" y="494.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (22 samples, 0.01%)</title><rect x="1189.4" y="404" width="0.1" height="15.0" fill="rgb(225,118,16)" rx="2" ry="2" />
<text x="1192.37" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_tp_new_3ray_7_raylet_ObjectRef (175 samples, 0.10%)</title><rect x="396.9" y="884" width="1.3" height="15.0" fill="rgb(205,53,12)" rx="2" ry="2" />
<text x="399.94" y="894.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (74,243 samples, 43.85%)</title><rect x="16.4" y="436" width="517.4" height="15.0" fill="rgb(225,32,54)" rx="2" ry="2" />
<text x="19.41" y="446.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>python`_PyObject_Malloc (79 samples, 0.05%)</title><rect x="248.2" y="1012" width="0.6" height="15.0" fill="rgb(234,90,41)" rx="2" ry="2" />
<text x="251.25" y="1022.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__sendmsg (289 samples, 0.17%)</title><rect x="981.6" y="404" width="2.0" height="15.0" fill="rgb(210,225,3)" rx="2" ry="2" />
<text x="984.63" y="414.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (73 samples, 0.04%)</title><rect x="529.4" y="884" width="0.5" height="15.0" fill="rgb(238,139,30)" rx="2" ry="2" />
<text x="532.42" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_convert_string_from_py_std__in_string (67 samples, 0.04%)</title><rect x="74.7" y="1060" width="0.5" height="15.0" fill="rgb(249,208,28)" rx="2" ry="2" />
<text x="77.71" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (20 samples, 0.01%)</title><rect x="430.9" y="948" width="0.1" height="15.0" fill="rgb(239,40,50)" rx="2" ry="2" />
<text x="433.87" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::AddOutOfLineHelper (91 samples, 0.05%)</title><rect x="1022.7" y="212" width="0.7" height="15.0" fill="rgb(249,11,23)" rx="2" ry="2" />
<text x="1025.74" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (96 samples, 0.06%)</title><rect x="414.6" y="996" width="0.7" height="15.0" fill="rgb(229,33,21)" rx="2" ry="2" />
<text x="417.62" y="1006.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (2,050 samples, 1.21%)</title><rect x="97.3" y="868" width="14.3" height="15.0" fill="rgb(207,119,45)" rx="2" ry="2" />
<text x="100.34" y="878.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert (501 samples, 0.30%)</title><rect x="641.3" y="436" width="3.5" height="15.0" fill="rgb(219,129,16)" rx="2" ry="2" />
<text x="644.35" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (294 samples, 0.17%)</title><rect x="746.3" y="436" width="2.0" height="15.0" fill="rgb(231,3,14)" rx="2" ry="2" />
<text x="749.27" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (77 samples, 0.05%)</title><rect x="495.4" y="932" width="0.5" height="15.0" fill="rgb(252,29,6)" rx="2" ry="2" />
<text x="498.37" y="942.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (477 samples, 0.28%)</title><rect x="103.3" y="916" width="3.3" height="15.0" fill="rgb(253,63,22)" rx="2" ry="2" />
<text x="106.30" y="926.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (583 samples, 0.34%)</title><rect x="499.5" y="884" width="4.0" height="15.0" fill="rgb(243,8,45)" rx="2" ry="2" />
<text x="502.47" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (24 samples, 0.01%)</title><rect x="466.0" y="1060" width="0.1" height="15.0" fill="rgb(221,202,6)" rx="2" ry="2" />
<text x="468.95" y="1070.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (74 samples, 0.04%)</title><rect x="891.7" y="276" width="0.5" height="15.0" fill="rgb(217,30,40)" rx="2" ry="2" />
<text x="894.69" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_21MessagePackSerializer_5loads_1_ext_hook (817 samples, 0.48%)</title><rect x="524.3" y="852" width="5.7" height="15.0" fill="rgb(223,32,14)" rx="2" ry="2" />
<text x="527.27" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayObject::RayObject (16 samples, 0.01%)</title><rect x="438.1" y="900" width="0.1" height="15.0" fill="rgb(250,64,54)" rx="2" ry="2" />
<text x="441.06" y="910.5" ></text>
</g>
<g >
<title>python`unicode_endswith (8,566 samples, 5.06%)</title><rect x="155.5" y="996" width="59.7" height="15.0" fill="rgb(253,13,0)" rx="2" ry="2" />
<text x="158.50" y="1006.5" >python..</text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (20 samples, 0.01%)</title><rect x="760.0" y="516" width="0.1" height="15.0" fill="rgb(253,15,34)" rx="2" ry="2" />
<text x="762.97" y="526.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (305 samples, 0.18%)</title><rect x="719.9" y="484" width="2.1" height="15.0" fill="rgb(251,110,48)" rx="2" ry="2" />
<text x="722.92" y="494.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (400 samples, 0.24%)</title><rect x="777.4" y="420" width="2.8" height="15.0" fill="rgb(206,186,2)" rx="2" ry="2" />
<text x="780.39" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_free_definite_size (19 samples, 0.01%)</title><rect x="1188.0" y="164" width="0.2" height="15.0" fill="rgb(211,121,19)" rx="2" ry="2" />
<text x="1191.05" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::base_internal::UnscaledCycleClock::Now (24 samples, 0.01%)</title><rect x="441.1" y="948" width="0.2" height="15.0" fill="rgb(216,95,7)" rx="2" ry="2" />
<text x="444.12" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (63 samples, 0.04%)</title><rect x="771.1" y="452" width="0.5" height="15.0" fill="rgb(242,175,1)" rx="2" ry="2" />
<text x="774.13" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (113 samples, 0.07%)</title><rect x="236.7" y="996" width="0.8" height="15.0" fill="rgb(248,196,40)" rx="2" ry="2" />
<text x="239.71" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (46 samples, 0.03%)</title><rect x="607.6" y="404" width="0.3" height="15.0" fill="rgb(223,198,36)" rx="2" ry="2" />
<text x="610.59" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`write_action_begin_locked (328 samples, 0.19%)</title><rect x="958.4" y="340" width="2.3" height="15.0" fill="rgb(223,110,20)" rx="2" ry="2" />
<text x="961.42" y="350.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (597 samples, 0.35%)</title><rect x="230.5" y="996" width="4.2" height="15.0" fill="rgb(227,122,16)" rx="2" ry="2" />
<text x="233.52" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (168 samples, 0.10%)</title><rect x="1025.5" y="292" width="1.2" height="15.0" fill="rgb(207,196,49)" rx="2" ry="2" />
<text x="1028.48" y="302.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (68 samples, 0.04%)</title><rect x="971.6" y="420" width="0.5" height="15.0" fill="rgb(229,222,28)" rx="2" ry="2" />
<text x="974.65" y="430.5" ></text>
</g>
<g >
<title>python`call_function (26 samples, 0.02%)</title><rect x="1189.5" y="388" width="0.2" height="15.0" fill="rgb(217,22,6)" rx="2" ry="2" />
<text x="1192.55" y="398.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (38 samples, 0.02%)</title><rect x="1189.7" y="356" width="0.3" height="15.0" fill="rgb(249,209,33)" rx="2" ry="2" />
<text x="1192.74" y="366.5" ></text>
</g>
<g >
<title>python`call_function (22 samples, 0.01%)</title><rect x="1189.4" y="388" width="0.1" height="15.0" fill="rgb(237,61,25)" rx="2" ry="2" />
<text x="1192.37" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (452 samples, 0.27%)</title><rect x="1031.5" y="292" width="3.2" height="15.0" fill="rgb(208,112,50)" rx="2" ry="2" />
<text x="1034.55" y="302.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (240 samples, 0.14%)</title><rect x="738.9" y="548" width="1.7" height="15.0" fill="rgb(220,204,6)" rx="2" ry="2" />
<text x="741.93" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert (422 samples, 0.25%)</title><rect x="458.4" y="948" width="2.9" height="15.0" fill="rgb(222,70,36)" rx="2" ry="2" />
<text x="461.36" y="958.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (24 samples, 0.01%)</title><rect x="95.4" y="900" width="0.2" height="15.0" fill="rgb(208,74,35)" rx="2" ry="2" />
<text x="98.43" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (62 samples, 0.04%)</title><rect x="747.8" y="484" width="0.4" height="15.0" fill="rgb(207,228,51)" rx="2" ry="2" />
<text x="750.81" y="494.5" ></text>
</g>
<g >
<title>python`list_dealloc (19 samples, 0.01%)</title><rect x="533.2" y="708" width="0.1" height="15.0" fill="rgb(240,153,20)" rx="2" ry="2" />
<text x="536.17" y="718.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (774 samples, 0.46%)</title><rect x="1130.8" y="276" width="5.4" height="15.0" fill="rgb(242,180,24)" rx="2" ry="2" />
<text x="1133.77" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::LockSlow (171 samples, 0.10%)</title><rect x="926.8" y="276" width="1.2" height="15.0" fill="rgb(207,129,50)" rx="2" ry="2" />
<text x="929.80" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (53 samples, 0.03%)</title><rect x="387.9" y="980" width="0.3" height="15.0" fill="rgb(251,125,36)" rx="2" ry="2" />
<text x="390.86" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (373 samples, 0.22%)</title><rect x="1155.7" y="244" width="2.6" height="15.0" fill="rgb(220,100,10)" rx="2" ry="2" />
<text x="1158.74" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (51 samples, 0.03%)</title><rect x="1049.3" y="340" width="0.3" height="15.0" fill="rgb(240,19,54)" rx="2" ry="2" />
<text x="1052.29" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (355 samples, 0.21%)</title><rect x="449.1" y="1028" width="2.5" height="15.0" fill="rgb(246,191,3)" rx="2" ry="2" />
<text x="452.13" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address* google::protobuf::Arena::CreateMaybeMessage (341 samples, 0.20%)</title><rect x="742.5" y="516" width="2.4" height="15.0" fill="rgb(239,99,45)" rx="2" ry="2" />
<text x="745.54" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (143 samples, 0.08%)</title><rect x="1085.7" y="276" width="0.9" height="15.0" fill="rgb(248,16,43)" rx="2" ry="2" />
<text x="1088.65" y="286.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_cond_signal (18 samples, 0.01%)</title><rect x="933.2" y="292" width="0.1" height="15.0" fill="rgb(210,150,54)" rx="2" ry="2" />
<text x="936.18" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (53 samples, 0.03%)</title><rect x="901.1" y="324" width="0.4" height="15.0" fill="rgb(207,83,29)" rx="2" ry="2" />
<text x="904.13" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (238 samples, 0.14%)</title><rect x="769.3" y="484" width="1.6" height="15.0" fill="rgb(238,83,35)" rx="2" ry="2" />
<text x="772.25" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (43 samples, 0.03%)</title><rect x="567.0" y="436" width="0.3" height="15.0" fill="rgb(225,135,13)" rx="2" ry="2" />
<text x="569.97" y="446.5" ></text>
</g>
<g >
<title>python`long_richcompare (20 samples, 0.01%)</title><rect x="76.9" y="1108" width="0.2" height="15.0" fill="rgb(241,135,26)" rx="2" ry="2" />
<text x="79.92" y="1118.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_convert_string_from_py_std__in_string (919 samples, 0.54%)</title><rect x="222.4" y="964" width="6.4" height="15.0" fill="rgb(210,212,53)" rx="2" ry="2" />
<text x="225.40" y="974.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (19 samples, 0.01%)</title><rect x="1189.2" y="404" width="0.1" height="15.0" fill="rgb(244,217,45)" rx="2" ry="2" />
<text x="1192.21" y="414.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (48 samples, 0.03%)</title><rect x="243.4" y="1012" width="0.4" height="15.0" fill="rgb(214,82,1)" rx="2" ry="2" />
<text x="246.45" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_f_3ray_7_raylet_5JobID_hash (17 samples, 0.01%)</title><rect x="56.6" y="932" width="0.1" height="15.0" fill="rgb(214,26,30)" rx="2" ry="2" />
<text x="59.60" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (19 samples, 0.01%)</title><rect x="611.4" y="420" width="0.1" height="15.0" fill="rgb(240,201,17)" rx="2" ry="2" />
<text x="614.36" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (161 samples, 0.10%)</title><rect x="470.0" y="964" width="1.1" height="15.0" fill="rgb(217,94,8)" rx="2" ry="2" />
<text x="472.96" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (202 samples, 0.12%)</title><rect x="427.4" y="996" width="1.4" height="15.0" fill="rgb(214,113,0)" rx="2" ry="2" />
<text x="430.42" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::Reference::Reference (1,356 samples, 0.80%)</title><rect x="879.0" y="324" width="9.4" height="15.0" fill="rgb(248,128,24)" rx="2" ry="2" />
<text x="881.95" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (30 samples, 0.02%)</title><rect x="484.2" y="916" width="0.3" height="15.0" fill="rgb(229,224,36)" rx="2" ry="2" />
<text x="487.25" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ParseContext::ReadSizeAndPushLimitAndDepth (19 samples, 0.01%)</title><rect x="1022.6" y="212" width="0.1" height="15.0" fill="rgb(251,74,19)" rx="2" ry="2" />
<text x="1025.60" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (169 samples, 0.10%)</title><rect x="424.1" y="1028" width="1.2" height="15.0" fill="rgb(230,36,50)" rx="2" ry="2" />
<text x="427.11" y="1038.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (66 samples, 0.04%)</title><rect x="1076.4" y="212" width="0.4" height="15.0" fill="rgb(208,85,8)" rx="2" ry="2" />
<text x="1079.39" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (21 samples, 0.01%)</title><rect x="737.2" y="580" width="0.2" height="15.0" fill="rgb(252,38,46)" rx="2" ry="2" />
<text x="740.21" y="590.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (243 samples, 0.14%)</title><rect x="504.7" y="916" width="1.7" height="15.0" fill="rgb(222,77,15)" rx="2" ry="2" />
<text x="507.74" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (40 samples, 0.02%)</title><rect x="611.0" y="500" width="0.3" height="15.0" fill="rgb(252,172,50)" rx="2" ry="2" />
<text x="613.99" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (211 samples, 0.12%)</title><rect x="1104.7" y="276" width="1.5" height="15.0" fill="rgb(210,108,45)" rx="2" ry="2" />
<text x="1107.73" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post (71 samples, 0.04%)</title><rect x="697.2" y="452" width="0.5" height="15.0" fill="rgb(243,120,26)" rx="2" ry="2" />
<text x="700.17" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::GrpcServer::~GrpcServer (19 samples, 0.01%)</title><rect x="15.8" y="356" width="0.1" height="15.0" fill="rgb(233,31,46)" rx="2" ry="2" />
<text x="18.81" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (167 samples, 0.10%)</title><rect x="469.9" y="948" width="1.2" height="15.0" fill="rgb(241,8,54)" rx="2" ry="2" />
<text x="472.92" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::UTF8GenericScan (16 samples, 0.01%)</title><rect x="420.3" y="964" width="0.2" height="15.0" fill="rgb(208,83,24)" rx="2" ry="2" />
<text x="423.35" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable (500 samples, 0.30%)</title><rect x="1027.4" y="228" width="3.5" height="15.0" fill="rgb(236,114,9)" rx="2" ry="2" />
<text x="1030.45" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (187 samples, 0.11%)</title><rect x="663.4" y="500" width="1.3" height="15.0" fill="rgb(207,108,15)" rx="2" ry="2" />
<text x="666.39" y="510.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`_pthread_cond_wait (208 samples, 0.12%)</title><rect x="694.9" y="548" width="1.4" height="15.0" fill="rgb(206,153,52)" rx="2" ry="2" />
<text x="697.89" y="558.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (116,697 samples, 68.93%)</title><rect x="16.4" y="260" width="813.3" height="15.0" fill="rgb(210,160,49)" rx="2" ry="2" />
<text x="19.37" y="270.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (74,164 samples, 43.80%)</title><rect x="16.4" y="596" width="516.9" height="15.0" fill="rgb(244,49,29)" rx="2" ry="2" />
<text x="19.44" y="606.5" >python`_PyFunction_Vectorcall</text>
</g>
<g >
<title>python`pymalloc_alloc (16 samples, 0.01%)</title><rect x="393.3" y="964" width="0.1" height="15.0" fill="rgb(219,49,28)" rx="2" ry="2" />
<text x="396.26" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (213 samples, 0.13%)</title><rect x="836.4" y="260" width="1.5" height="15.0" fill="rgb(214,68,38)" rx="2" ry="2" />
<text x="839.43" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable (596 samples, 0.35%)</title><rect x="1054.9" y="292" width="4.1" height="15.0" fill="rgb(219,103,43)" rx="2" ry="2" />
<text x="1057.89" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (322 samples, 0.19%)</title><rect x="777.9" y="468" width="2.2" height="15.0" fill="rgb(222,147,43)" rx="2" ry="2" />
<text x="780.86" y="478.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (26 samples, 0.02%)</title><rect x="1189.5" y="420" width="0.2" height="15.0" fill="rgb(245,31,36)" rx="2" ry="2" />
<text x="1192.55" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (170 samples, 0.10%)</title><rect x="858.7" y="356" width="1.2" height="15.0" fill="rgb(208,202,46)" rx="2" ry="2" />
<text x="861.67" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (461 samples, 0.27%)</title><rect x="412.9" y="980" width="3.2" height="15.0" fill="rgb(240,183,41)" rx="2" ry="2" />
<text x="415.93" y="990.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (176 samples, 0.10%)</title><rect x="1050.1" y="292" width="1.2" height="15.0" fill="rgb(219,139,42)" rx="2" ry="2" />
<text x="1053.08" y="302.5" ></text>
</g>
<g >
<title>python`PyArg_ParseTupleAndKeywords (247 samples, 0.15%)</title><rect x="84.1" y="964" width="1.7" height="15.0" fill="rgb(240,136,10)" rx="2" ry="2" />
<text x="87.06" y="974.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (16 samples, 0.01%)</title><rect x="529.6" y="900" width="0.2" height="15.0" fill="rgb(208,164,25)" rx="2" ry="2" />
<text x="532.64" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_cv_wait (36 samples, 0.02%)</title><rect x="829.8" y="132" width="0.2" height="15.0" fill="rgb(218,162,45)" rx="2" ry="2" />
<text x="832.76" y="142.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (28 samples, 0.02%)</title><rect x="610.8" y="500" width="0.2" height="15.0" fill="rgb(239,180,17)" rx="2" ry="2" />
<text x="613.80" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (142 samples, 0.08%)</title><rect x="672.0" y="548" width="1.0" height="15.0" fill="rgb(228,8,16)" rx="2" ry="2" />
<text x="674.99" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`ray::WorkerID::WorkerID (79 samples, 0.05%)</title><rect x="837.9" y="260" width="0.6" height="15.0" fill="rgb(231,141,5)" rx="2" ry="2" />
<text x="840.93" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (151 samples, 0.09%)</title><rect x="858.8" y="388" width="1.1" height="15.0" fill="rgb(208,86,15)" rx="2" ry="2" />
<text x="861.80" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_large (343 samples, 0.20%)</title><rect x="12.9" y="372" width="2.4" height="15.0" fill="rgb(206,198,24)" rx="2" ry="2" />
<text x="15.94" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_malloc (19 samples, 0.01%)</title><rect x="400.4" y="900" width="0.1" height="15.0" fill="rgb(252,1,29)" rx="2" ry="2" />
<text x="403.42" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (59 samples, 0.03%)</title><rect x="570.9" y="404" width="0.4" height="15.0" fill="rgb(232,87,51)" rx="2" ry="2" />
<text x="573.91" y="414.5" ></text>
</g>
<g >
<title>python`PyEval_SaveThread (122 samples, 0.07%)</title><rect x="546.2" y="372" width="0.8" height="15.0" fill="rgb(254,209,6)" rx="2" ry="2" />
<text x="549.16" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_mu_lock (15 samples, 0.01%)</title><rect x="995.8" y="180" width="0.1" height="15.0" fill="rgb(219,100,17)" rx="2" ry="2" />
<text x="998.78" y="190.5" ></text>
</g>
<g >
<title>python`tailmatch.2926 (916 samples, 0.54%)</title><rect x="208.8" y="1012" width="6.4" height="15.0" fill="rgb(206,209,17)" rx="2" ry="2" />
<text x="211.81" y="1022.5" ></text>
</g>
<g >
<title>python`_PyFrame_New_NoTrack (50 samples, 0.03%)</title><rect x="81.3" y="948" width="0.4" height="15.0" fill="rgb(219,17,26)" rx="2" ry="2" />
<text x="84.32" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_combiner_continue_exec_ctx (35 samples, 0.02%)</title><rect x="708.4" y="548" width="0.2" height="15.0" fill="rgb(232,49,53)" rx="2" ry="2" />
<text x="711.35" y="558.5" ></text>
</g>
<g >
<title>python`frame_dealloc (22 samples, 0.01%)</title><rect x="522.1" y="804" width="0.2" height="15.0" fill="rgb(248,54,9)" rx="2" ry="2" />
<text x="525.14" y="814.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (445 samples, 0.26%)</title><rect x="628.4" y="500" width="3.1" height="15.0" fill="rgb(211,47,2)" rx="2" ry="2" />
<text x="631.40" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (187 samples, 0.11%)</title><rect x="425.7" y="996" width="1.4" height="15.0" fill="rgb(250,9,4)" rx="2" ry="2" />
<text x="428.75" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (28 samples, 0.02%)</title><rect x="1153.2" y="276" width="0.2" height="15.0" fill="rgb(250,122,37)" rx="2" ry="2" />
<text x="1156.19" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (15 samples, 0.01%)</title><rect x="831.3" y="308" width="0.1" height="15.0" fill="rgb(207,27,52)" rx="2" ry="2" />
<text x="834.27" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_madvise_free_range_no_lock (46 samples, 0.03%)</title><rect x="808.1" y="468" width="0.4" height="15.0" fill="rgb(226,4,19)" rx="2" ry="2" />
<text x="811.14" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (263 samples, 0.16%)</title><rect x="713.6" y="516" width="1.8" height="15.0" fill="rgb(242,199,28)" rx="2" ry="2" />
<text x="716.58" y="526.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (18 samples, 0.01%)</title><rect x="78.1" y="1076" width="0.2" height="15.0" fill="rgb(222,16,40)" rx="2" ry="2" />
<text x="81.13" y="1086.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (1,589 samples, 0.94%)</title><rect x="1071.9" y="180" width="11.1" height="15.0" fill="rgb(220,143,23)" rx="2" ry="2" />
<text x="1074.88" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`read_action_locked (328 samples, 0.19%)</title><rect x="997.4" y="212" width="2.2" height="15.0" fill="rgb(251,122,24)" rx="2" ry="2" />
<text x="1000.35" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerDirectTaskSubmitter::OnWorkerIdle (117 samples, 0.07%)</title><rect x="985.4" y="244" width="0.8" height="15.0" fill="rgb(235,11,25)" rx="2" ry="2" />
<text x="988.41" y="254.5" ></text>
</g>
<g >
<title>python`bytes_richcompare (44 samples, 0.03%)</title><rect x="59.0" y="980" width="0.3" height="15.0" fill="rgb(222,220,48)" rx="2" ry="2" />
<text x="62.04" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`AbslInternalPerThreadSemWait_lts_20210324 (142 samples, 0.08%)</title><rect x="926.9" y="340" width="1.0" height="15.0" fill="rgb(207,37,31)" rx="2" ry="2" />
<text x="929.93" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerDirectTaskSubmitter::StealTasksOrReturnWorker (25 samples, 0.01%)</title><rect x="986.1" y="260" width="0.1" height="15.0" fill="rgb(233,88,33)" rx="2" ry="2" />
<text x="989.06" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::ServerInterface::BaseAsyncRequest::FinalizeResult (109 samples, 0.06%)</title><rect x="1020.9" y="164" width="0.8" height="15.0" fill="rgb(213,170,39)" rx="2" ry="2" />
<text x="1023.93" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ParseContext::ReadSizeAndPushLimitAndDepth (16 samples, 0.01%)</title><rect x="1035.1" y="228" width="0.1" height="15.0" fill="rgb(206,164,41)" rx="2" ry="2" />
<text x="1038.13" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (20 samples, 0.01%)</title><rect x="660.2" y="516" width="0.1" height="15.0" fill="rgb(250,20,24)" rx="2" ry="2" />
<text x="663.15" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (278 samples, 0.16%)</title><rect x="492.9" y="932" width="2.0" height="15.0" fill="rgb(213,165,37)" rx="2" ry="2" />
<text x="495.92" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (264 samples, 0.16%)</title><rect x="504.6" y="900" width="1.8" height="15.0" fill="rgb(245,134,41)" rx="2" ry="2" />
<text x="507.60" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (41 samples, 0.02%)</title><rect x="1163.1" y="244" width="0.2" height="15.0" fill="rgb(228,95,28)" rx="2" ry="2" />
<text x="1166.06" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`recv_message_ready (33 samples, 0.02%)</title><rect x="996.1" y="212" width="0.3" height="15.0" fill="rgb(206,220,47)" rx="2" ry="2" />
<text x="999.13" y="222.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (25 samples, 0.01%)</title><rect x="562.5" y="452" width="0.2" height="15.0" fill="rgb(217,117,21)" rx="2" ry="2" />
<text x="565.55" y="462.5" ></text>
</g>
<g >
<title>python`dict_dealloc (2,441 samples, 1.44%)</title><rect x="533.9" y="308" width="17.0" height="15.0" fill="rgb(214,160,20)" rx="2" ry="2" />
<text x="536.93" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish (21 samples, 0.01%)</title><rect x="831.2" y="260" width="0.2" height="15.0" fill="rgb(240,113,35)" rx="2" ry="2" />
<text x="834.24" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`timer_cancel (15 samples, 0.01%)</title><rect x="999.5" y="228" width="0.1" height="15.0" fill="rgb(207,56,11)" rx="2" ry="2" />
<text x="1002.54" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (63 samples, 0.04%)</title><rect x="78.3" y="1044" width="0.4" height="15.0" fill="rgb(228,98,54)" rx="2" ry="2" />
<text x="81.28" y="1054.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (57 samples, 0.03%)</title><rect x="112.6" y="884" width="0.4" height="15.0" fill="rgb(226,142,24)" rx="2" ry="2" />
<text x="115.65" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (56 samples, 0.03%)</title><rect x="1050.9" y="356" width="0.4" height="15.0" fill="rgb(248,189,41)" rx="2" ry="2" />
<text x="1053.89" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::destroy_deallocate (29 samples, 0.02%)</title><rect x="777.0" y="420" width="0.2" height="15.0" fill="rgb(206,46,46)" rx="2" ry="2" />
<text x="779.98" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (316 samples, 0.19%)</title><rect x="416.9" y="980" width="2.2" height="15.0" fill="rgb(239,20,21)" rx="2" ry="2" />
<text x="419.87" y="990.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external (284 samples, 0.17%)</title><rect x="713.5" y="484" width="2.0" height="15.0" fill="rgb(206,219,20)" rx="2" ry="2" />
<text x="716.49" y="494.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (29 samples, 0.02%)</title><rect x="1158.6" y="212" width="0.2" height="15.0" fill="rgb(220,180,24)" rx="2" ry="2" />
<text x="1161.56" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::Publisher::UnregisterSubscription (4,369 samples, 2.58%)</title><rect x="926.0" y="244" width="30.4" height="15.0" fill="rgb(205,183,10)" rx="2" ry="2" />
<text x="928.96" y="254.5" >_r..</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (246 samples, 0.15%)</title><rect x="718.0" y="516" width="1.7" height="15.0" fill="rgb(247,38,32)" rx="2" ry="2" />
<text x="721.01" y="526.5" ></text>
</g>
<g >
<title>python`member_get (60 samples, 0.04%)</title><rect x="337.2" y="964" width="0.5" height="15.0" fill="rgb(230,197,8)" rx="2" ry="2" />
<text x="340.24" y="974.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (17 samples, 0.01%)</title><rect x="755.9" y="500" width="0.2" height="15.0" fill="rgb(242,26,42)" rx="2" ry="2" />
<text x="758.93" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReferenceCount::_InternalSerialize (517 samples, 0.31%)</title><rect x="968.0" y="436" width="3.6" height="15.0" fill="rgb(247,96,15)" rx="2" ry="2" />
<text x="971.05" y="446.5" ></text>
</g>
<g >
<title>python`PyUnicode_Join (337 samples, 0.20%)</title><rect x="246.5" y="964" width="2.3" height="15.0" fill="rgb(231,119,36)" rx="2" ry="2" />
<text x="249.46" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (83 samples, 0.05%)</title><rect x="746.3" y="452" width="0.6" height="15.0" fill="rgb(228,41,2)" rx="2" ry="2" />
<text x="749.32" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (64 samples, 0.04%)</title><rect x="566.8" y="420" width="0.5" height="15.0" fill="rgb(248,48,25)" rx="2" ry="2" />
<text x="569.83" y="430.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__sendmsg (15 samples, 0.01%)</title><rect x="999.7" y="244" width="0.1" height="15.0" fill="rgb(213,31,51)" rx="2" ry="2" />
<text x="1002.67" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (113 samples, 0.07%)</title><rect x="645.9" y="468" width="0.8" height="15.0" fill="rgb(233,222,32)" rx="2" ry="2" />
<text x="648.92" y="478.5" ></text>
</g>
<g >
<title>python`cfunction_call (1,454 samples, 0.86%)</title><rect x="522.9" y="724" width="10.2" height="15.0" fill="rgb(221,212,13)" rx="2" ry="2" />
<text x="525.92" y="734.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::AddLocalReference (37,923 samples, 22.40%)</title><rect x="117.3" y="932" width="264.4" height="15.0" fill="rgb(223,29,51)" rx="2" ry="2" />
<text x="120.35" y="942.5" >_raylet.so`ray::core::CoreWorker::A..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (46 samples, 0.03%)</title><rect x="1026.3" y="308" width="0.4" height="15.0" fill="rgb(251,1,12)" rx="2" ry="2" />
<text x="1029.33" y="318.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (20 samples, 0.01%)</title><rect x="560.3" y="388" width="0.1" height="15.0" fill="rgb(223,33,46)" rx="2" ry="2" />
<text x="563.28" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (189 samples, 0.11%)</title><rect x="487.3" y="916" width="1.3" height="15.0" fill="rgb(252,51,8)" rx="2" ry="2" />
<text x="490.28" y="926.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_cvwait (1,617 samples, 0.96%)</title><rect x="683.6" y="548" width="11.3" height="15.0" fill="rgb(213,185,21)" rx="2" ry="2" />
<text x="686.61" y="558.5" ></text>
</g>
<g >
<title>python`module_getattro (231 samples, 0.14%)</title><rect x="345.4" y="964" width="1.6" height="15.0" fill="rgb(252,229,1)" rx="2" ry="2" />
<text x="348.36" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::base_internal::UnscaledCycleClock::Now (18 samples, 0.01%)</title><rect x="447.0" y="964" width="0.1" height="15.0" fill="rgb(206,14,11)" rx="2" ry="2" />
<text x="449.97" y="974.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (54 samples, 0.03%)</title><rect x="519.4" y="868" width="0.4" height="15.0" fill="rgb(216,215,1)" rx="2" ry="2" />
<text x="522.41" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,517 samples, 0.90%)</title><rect x="797.9" y="436" width="10.6" height="15.0" fill="rgb(246,102,30)" rx="2" ry="2" />
<text x="800.93" y="446.5" ></text>
</g>
<g >
<title>python`module_getattro (207 samples, 0.12%)</title><rect x="549.2" y="340" width="1.4" height="15.0" fill="rgb(209,71,35)" rx="2" ry="2" />
<text x="552.17" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_stack_destroy (57 samples, 0.03%)</title><rect x="1068.8" y="196" width="0.4" height="15.0" fill="rgb(232,1,27)" rx="2" ry="2" />
<text x="1071.78" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (197 samples, 0.12%)</title><rect x="375.5" y="964" width="1.4" height="15.0" fill="rgb(254,96,11)" rx="2" ry="2" />
<text x="378.49" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (233 samples, 0.14%)</title><rect x="713.8" y="548" width="1.6" height="15.0" fill="rgb(242,107,46)" rx="2" ry="2" />
<text x="716.79" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (201 samples, 0.12%)</title><rect x="464.7" y="996" width="1.4" height="15.0" fill="rgb(215,120,45)" rx="2" ry="2" />
<text x="467.72" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (92 samples, 0.05%)</title><rect x="782.8" y="452" width="0.7" height="15.0" fill="rgb(250,169,28)" rx="2" ry="2" />
<text x="785.82" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::Status grpc::GenericSerialize (26 samples, 0.02%)</title><rect x="957.1" y="324" width="0.2" height="15.0" fill="rgb(245,221,51)" rx="2" ry="2" />
<text x="960.07" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (2,050 samples, 1.21%)</title><rect x="1139.3" y="244" width="14.3" height="15.0" fill="rgb(244,50,9)" rx="2" ry="2" />
<text x="1142.31" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (173 samples, 0.10%)</title><rect x="236.3" y="980" width="1.2" height="15.0" fill="rgb(211,228,52)" rx="2" ry="2" />
<text x="239.29" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (3,354 samples, 1.98%)</title><rect x="865.2" y="308" width="23.4" height="15.0" fill="rgb(247,81,24)" rx="2" ry="2" />
<text x="868.21" y="318.5" >_..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (46 samples, 0.03%)</title><rect x="430.5" y="1044" width="0.3" height="15.0" fill="rgb(230,170,29)" rx="2" ry="2" />
<text x="433.51" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable (208 samples, 0.12%)</title><rect x="1049.9" y="276" width="1.4" height="15.0" fill="rgb(236,94,46)" rx="2" ry="2" />
<text x="1052.87" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (20 samples, 0.01%)</title><rect x="755.6" y="548" width="0.1" height="15.0" fill="rgb(250,182,43)" rx="2" ry="2" />
<text x="758.60" y="558.5" ></text>
</g>
<g >
<title>python`PyThread_acquire_lock_timed (37 samples, 0.02%)</title><rect x="83.6" y="964" width="0.3" height="15.0" fill="rgb(209,208,2)" rx="2" ry="2" />
<text x="86.64" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (28 samples, 0.02%)</title><rect x="928.0" y="260" width="0.2" height="15.0" fill="rgb(209,171,54)" rx="2" ry="2" />
<text x="930.99" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (239 samples, 0.14%)</title><rect x="235.8" y="964" width="1.7" height="15.0" fill="rgb(224,227,39)" rx="2" ry="2" />
<text x="238.83" y="974.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (867 samples, 0.51%)</title><rect x="130.5" y="996" width="6.1" height="15.0" fill="rgb(246,220,35)" rx="2" ry="2" />
<text x="133.51" y="1006.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (278 samples, 0.16%)</title><rect x="575.1" y="452" width="2.0" height="15.0" fill="rgb(235,120,22)" rx="2" ry="2" />
<text x="578.12" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (57 samples, 0.03%)</title><rect x="1114.0" y="260" width="0.4" height="15.0" fill="rgb(211,21,20)" rx="2" ry="2" />
<text x="1117.03" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::GetObjectStatusReply::_InternalParse (1,471 samples, 0.87%)</title><rect x="422.4" y="916" width="10.3" height="15.0" fill="rgb(220,129,3)" rx="2" ry="2" />
<text x="425.44" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::HandleRefRemoved (25,205 samples, 14.89%)</title><rect x="608.1" y="404" width="175.6" height="15.0" fill="rgb(238,223,36)" rx="2" ry="2" />
<text x="611.06" y="414.5" >_raylet.so`ray::core::..</text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_begin_write (44 samples, 0.03%)</title><rect x="981.2" y="388" width="0.3" height="15.0" fill="rgb(218,96,47)" rx="2" ry="2" />
<text x="984.16" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (122 samples, 0.07%)</title><rect x="1093.5" y="276" width="0.8" height="15.0" fill="rgb(218,163,13)" rx="2" ry="2" />
<text x="1096.46" y="286.5" ></text>
</g>
<g >
<title>python`meth_dealloc (18 samples, 0.01%)</title><rect x="549.0" y="340" width="0.2" height="15.0" fill="rgb(219,45,21)" rx="2" ry="2" />
<text x="552.04" y="350.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_strchr$VARIANT$Haswell (150 samples, 0.09%)</title><rect x="84.7" y="996" width="1.1" height="15.0" fill="rgb(218,88,41)" rx="2" ry="2" />
<text x="87.73" y="1006.5" ></text>
</g>
<g >
<title>python`collect (34 samples, 0.02%)</title><rect x="12.5" y="196" width="0.2" height="15.0" fill="rgb(247,137,34)" rx="2" ry="2" />
<text x="15.47" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (200 samples, 0.12%)</title><rect x="616.2" y="532" width="1.4" height="15.0" fill="rgb(254,73,37)" rx="2" ry="2" />
<text x="619.19" y="542.5" ></text>
</g>
<g >
<title>python`cfunction_vectorcall_FASTCALL (362 samples, 0.21%)</title><rect x="134.0" y="1028" width="2.5" height="15.0" fill="rgb(231,187,47)" rx="2" ry="2" />
<text x="136.97" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (319 samples, 0.19%)</title><rect x="733.3" y="596" width="2.2" height="15.0" fill="rgb(244,136,3)" rx="2" ry="2" />
<text x="736.28" y="606.5" ></text>
</g>
<g >
<title>python`_Py_Dealloc (83 samples, 0.05%)</title><rect x="311.7" y="964" width="0.6" height="15.0" fill="rgb(205,183,24)" rx="2" ry="2" />
<text x="314.73" y="974.5" ></text>
</g>
<g >
<title>python`pymain_run_file (116,701 samples, 68.93%)</title><rect x="16.4" y="164" width="813.3" height="15.0" fill="rgb(217,100,21)" rx="2" ry="2" />
<text x="19.36" y="174.5" >python`pymain_run_file</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (34 samples, 0.02%)</title><rect x="487.0" y="932" width="0.3" height="15.0" fill="rgb(215,34,23)" rx="2" ry="2" />
<text x="490.04" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallFactoryImpl::CreateCall (160 samples, 0.09%)</title><rect x="984.2" y="212" width="1.1" height="15.0" fill="rgb(241,62,33)" rx="2" ry="2" />
<text x="987.16" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (350 samples, 0.21%)</title><rect x="1059.6" y="356" width="2.4" height="15.0" fill="rgb(206,41,21)" rx="2" ry="2" />
<text x="1062.57" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (327 samples, 0.19%)</title><rect x="722.6" y="532" width="2.3" height="15.0" fill="rgb(206,174,4)" rx="2" ry="2" />
<text x="725.61" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (19 samples, 0.01%)</title><rect x="513.8" y="884" width="0.1" height="15.0" fill="rgb(243,117,41)" rx="2" ry="2" />
<text x="516.77" y="894.5" ></text>
</g>
<g >
<title>python`PyEval_EvalCodeEx (331 samples, 0.20%)</title><rect x="524.9" y="900" width="2.3" height="15.0" fill="rgb(241,74,12)" rx="2" ry="2" />
<text x="527.85" y="910.5" ></text>
</g>
<g >
<title>python`lookdict_split (40 samples, 0.02%)</title><rect x="38.3" y="852" width="0.3" height="15.0" fill="rgb(212,8,49)" rx="2" ry="2" />
<text x="41.32" y="862.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (284 samples, 0.17%)</title><rect x="1151.1" y="276" width="2.0" height="15.0" fill="rgb(249,98,32)" rx="2" ry="2" />
<text x="1154.14" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (518 samples, 0.31%)</title><rect x="726.2" y="580" width="3.6" height="15.0" fill="rgb(229,131,6)" rx="2" ry="2" />
<text x="729.23" y="590.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (109 samples, 0.06%)</title><rect x="399.6" y="932" width="0.8" height="15.0" fill="rgb(235,166,21)" rx="2" ry="2" />
<text x="402.63" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`write_action_begin_locked (358 samples, 0.21%)</title><rect x="981.1" y="372" width="2.5" height="15.0" fill="rgb(240,181,17)" rx="2" ry="2" />
<text x="984.15" y="382.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (64 samples, 0.04%)</title><rect x="79.9" y="1044" width="0.5" height="15.0" fill="rgb(214,162,22)" rx="2" ry="2" />
<text x="82.90" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (48 samples, 0.03%)</title><rect x="1147.5" y="276" width="0.3" height="15.0" fill="rgb(254,102,25)" rx="2" ry="2" />
<text x="1150.48" y="286.5" ></text>
</g>
<g >
<title>_cmsgpack.cpython-39-darwin.so`__pyx_f_7msgpack_9_cmsgpack_get_data_from_buffer (47 samples, 0.03%)</title><rect x="527.9" y="916" width="0.4" height="15.0" fill="rgb(231,117,48)" rx="2" ry="2" />
<text x="530.92" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (28 samples, 0.02%)</title><rect x="537.6" y="388" width="0.2" height="15.0" fill="rgb(212,60,26)" rx="2" ry="2" />
<text x="540.63" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`tcp_flush( (17 samples, 0.01%)</title><rect x="981.5" y="404" width="0.1" height="15.0" fill="rgb(245,93,18)" rx="2" ry="2" />
<text x="984.51" y="414.5" ></text>
</g>
<g >
<title>libdyld.dylib`tlv_get_addr (15 samples, 0.01%)</title><rect x="696.6" y="532" width="0.1" height="15.0" fill="rgb(238,7,10)" rx="2" ry="2" />
<text x="699.60" y="542.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerMemoryStore::EraseObjectAndUpdateStats (2,522 samples, 1.49%)</title><rect x="560.4" y="372" width="17.6" height="15.0" fill="rgb(227,202,53)" rx="2" ry="2" />
<text x="563.44" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::~CoreWorker (493 samples, 0.29%)</title><rect x="12.9" y="340" width="3.4" height="15.0" fill="rgb(245,162,27)" rx="2" ry="2" />
<text x="15.91" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (20 samples, 0.01%)</title><rect x="463.7" y="932" width="0.1" height="15.0" fill="rgb(251,125,8)" rx="2" ry="2" />
<text x="466.66" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (27 samples, 0.02%)</title><rect x="461.4" y="948" width="0.2" height="15.0" fill="rgb(242,177,15)" rx="2" ry="2" />
<text x="464.43" y="958.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (237 samples, 0.14%)</title><rect x="659.0" y="452" width="1.7" height="15.0" fill="rgb(211,98,39)" rx="2" ry="2" />
<text x="662.04" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::GetAndClearLocalBorrowersInternal (4,779 samples, 2.82%)</title><rect x="611.7" y="420" width="33.3" height="15.0" fill="rgb(209,90,11)" rx="2" ry="2" />
<text x="614.68" y="430.5" >_r..</text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_perform_read (282 samples, 0.17%)</title><rect x="997.4" y="228" width="2.0" height="15.0" fill="rgb(233,78,36)" rx="2" ry="2" />
<text x="1000.40" y="238.5" ></text>
</g>
<g >
<title>python`call_function (74,171 samples, 43.81%)</title><rect x="16.4" y="532" width="517.0" height="15.0" fill="rgb(209,192,48)" rx="2" ry="2" />
<text x="19.43" y="542.5" >python`call_function</text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_lock (54 samples, 0.03%)</title><rect x="545.5" y="404" width="0.4" height="15.0" fill="rgb(220,193,12)" rx="2" ry="2" />
<text x="548.48" y="414.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (15 samples, 0.01%)</title><rect x="643.2" y="548" width="0.1" height="15.0" fill="rgb(214,195,50)" rx="2" ry="2" />
<text x="646.19" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (174 samples, 0.10%)</title><rect x="462.1" y="964" width="1.2" height="15.0" fill="rgb(250,212,43)" rx="2" ry="2" />
<text x="465.07" y="974.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (154 samples, 0.09%)</title><rect x="1051.6" y="324" width="1.1" height="15.0" fill="rgb(214,91,23)" rx="2" ry="2" />
<text x="1054.60" y="334.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::basic_string (16 samples, 0.01%)</title><rect x="896.4" y="292" width="0.1" height="15.0" fill="rgb(221,177,35)" rx="2" ry="2" />
<text x="899.43" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (727 samples, 0.43%)</title><rect x="572.0" y="420" width="5.1" height="15.0" fill="rgb(249,123,9)" rx="2" ry="2" />
<text x="575.01" y="430.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerDirectTaskSubmitter::RequestNewWorkerIfNeeded (49 samples, 0.03%)</title><rect x="985.7" y="260" width="0.4" height="15.0" fill="rgb(251,185,5)" rx="2" ry="2" />
<text x="988.71" y="270.5" ></text>
</g>
<g >
<title>python`PyType_IsSubtype (41 samples, 0.02%)</title><rect x="72.9" y="1028" width="0.3" height="15.0" fill="rgb(223,3,7)" rx="2" ry="2" />
<text x="75.89" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::IsStructurallyValidUTF8 (59 samples, 0.03%)</title><rect x="1062.6" y="308" width="0.4" height="15.0" fill="rgb(219,59,14)" rx="2" ry="2" />
<text x="1065.64" y="318.5" ></text>
</g>
<g >
<title>python`PyUnicode_New (277 samples, 0.16%)</title><rect x="331.2" y="1060" width="2.0" height="15.0" fill="rgb(207,184,28)" rx="2" ry="2" />
<text x="334.25" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`call_start_batch (21 samples, 0.01%)</title><rect x="980.3" y="340" width="0.1" height="15.0" fill="rgb(234,41,15)" rx="2" ry="2" />
<text x="983.29" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (316 samples, 0.19%)</title><rect x="222.8" y="1012" width="2.2" height="15.0" fill="rgb(217,72,28)" rx="2" ry="2" />
<text x="225.84" y="1022.5" ></text>
</g>
<g >
<title>_pickle.cpython-39-darwin.so`do_append (57 samples, 0.03%)</title><rect x="22.5" y="804" width="0.4" height="15.0" fill="rgb(230,39,17)" rx="2" ry="2" />
<text x="25.49" y="814.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (28 samples, 0.02%)</title><rect x="485.6" y="948" width="0.2" height="15.0" fill="rgb(215,145,21)" rx="2" ry="2" />
<text x="488.59" y="958.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (27 samples, 0.02%)</title><rect x="346.8" y="980" width="0.2" height="15.0" fill="rgb(238,126,30)" rx="2" ry="2" />
<text x="349.78" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (182 samples, 0.11%)</title><rect x="1099.0" y="276" width="1.3" height="15.0" fill="rgb(241,73,30)" rx="2" ry="2" />
<text x="1102.04" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (483 samples, 0.29%)</title><rect x="412.8" y="964" width="3.3" height="15.0" fill="rgb(213,115,24)" rx="2" ry="2" />
<text x="415.77" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (25 samples, 0.01%)</title><rect x="709.8" y="500" width="0.2" height="15.0" fill="rgb(233,119,26)" rx="2" ry="2" />
<text x="712.84" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::_InternalParse (1,394 samples, 0.82%)</title><rect x="411.1" y="900" width="9.8" height="15.0" fill="rgb(250,174,3)" rx="2" ry="2" />
<text x="414.15" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (958 samples, 0.57%)</title><rect x="934.9" y="276" width="6.7" height="15.0" fill="rgb(205,98,38)" rx="2" ry="2" />
<text x="937.95" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (18 samples, 0.01%)</title><rect x="1143.0" y="260" width="0.2" height="15.0" fill="rgb(234,201,8)" rx="2" ry="2" />
<text x="1146.04" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (175 samples, 0.10%)</title><rect x="661.2" y="516" width="1.2" height="15.0" fill="rgb(251,212,35)" rx="2" ry="2" />
<text x="664.19" y="526.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator delete (16 samples, 0.01%)</title><rect x="1153.8" y="228" width="0.2" height="15.0" fill="rgb(234,161,19)" rx="2" ry="2" />
<text x="1156.85" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (40 samples, 0.02%)</title><rect x="1166.5" y="228" width="0.3" height="15.0" fill="rgb(237,21,16)" rx="2" ry="2" />
<text x="1169.51" y="238.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (17 samples, 0.01%)</title><rect x="717.5" y="484" width="0.1" height="15.0" fill="rgb(243,47,5)" rx="2" ry="2" />
<text x="720.51" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (33 samples, 0.02%)</title><rect x="432.4" y="1012" width="0.2" height="15.0" fill="rgb(244,24,35)" rx="2" ry="2" />
<text x="435.41" y="1022.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (42 samples, 0.02%)</title><rect x="94.1" y="996" width="0.3" height="15.0" fill="rgb(217,121,6)" rx="2" ry="2" />
<text x="97.12" y="1006.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`write (41 samples, 0.02%)</title><rect x="980.6" y="484" width="0.3" height="15.0" fill="rgb(205,81,37)" rx="2" ry="2" />
<text x="983.60" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (1,455 samples, 0.86%)</title><rect x="725.7" y="516" width="10.1" height="15.0" fill="rgb(254,161,1)" rx="2" ry="2" />
<text x="728.70" y="526.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (46 samples, 0.03%)</title><rect x="799.4" y="452" width="0.3" height="15.0" fill="rgb(232,12,14)" rx="2" ry="2" />
<text x="802.42" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (15 samples, 0.01%)</title><rect x="1156.5" y="276" width="0.1" height="15.0" fill="rgb(253,113,14)" rx="2" ry="2" />
<text x="1159.54" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (141 samples, 0.08%)</title><rect x="863.9" y="324" width="1.0" height="15.0" fill="rgb(219,26,17)" rx="2" ry="2" />
<text x="866.88" y="334.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (303 samples, 0.18%)</title><rect x="742.7" y="564" width="2.1" height="15.0" fill="rgb(215,13,30)" rx="2" ry="2" />
<text x="745.73" y="574.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (22 samples, 0.01%)</title><rect x="1189.4" y="420" width="0.1" height="15.0" fill="rgb(230,207,20)" rx="2" ry="2" />
<text x="1192.37" y="430.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (42 samples, 0.02%)</title><rect x="247.7" y="996" width="0.3" height="15.0" fill="rgb(238,154,32)" rx="2" ry="2" />
<text x="250.69" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (138 samples, 0.08%)</title><rect x="863.9" y="340" width="1.0" height="15.0" fill="rgb(236,136,2)" rx="2" ry="2" />
<text x="866.90" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (228 samples, 0.13%)</title><rect x="1126.9" y="292" width="1.5" height="15.0" fill="rgb(253,83,35)" rx="2" ry="2" />
<text x="1129.86" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::~ObjectReference (2,326 samples, 1.37%)</title><rect x="1091.0" y="228" width="16.2" height="15.0" fill="rgb(216,227,27)" rx="2" ry="2" />
<text x="1093.97" y="238.5" ></text>
</g>
<g >
<title>python`method_vectorcall_VARARGS_KEYWORDS (24 samples, 0.01%)</title><rect x="1189.8" y="484" width="0.2" height="15.0" fill="rgb(251,41,4)" rx="2" ry="2" />
<text x="1192.78" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (328 samples, 0.19%)</title><rect x="905.3" y="292" width="2.3" height="15.0" fill="rgb(214,89,52)" rx="2" ry="2" />
<text x="908.35" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (380 samples, 0.22%)</title><rect x="628.8" y="548" width="2.7" height="15.0" fill="rgb(243,25,53)" rx="2" ry="2" />
<text x="631.82" y="558.5" ></text>
</g>
<g >
<title>python`sys_audit_tstate (36 samples, 0.02%)</title><rect x="136.2" y="1076" width="0.3" height="15.0" fill="rgb(246,99,26)" rx="2" ry="2" />
<text x="139.24" y="1086.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (502 samples, 0.30%)</title><rect x="491.4" y="900" width="3.5" height="15.0" fill="rgb(216,1,33)" rx="2" ry="2" />
<text x="494.36" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (64 samples, 0.04%)</title><rect x="563.8" y="468" width="0.4" height="15.0" fill="rgb(231,99,29)" rx="2" ry="2" />
<text x="566.78" y="478.5" ></text>
</g>
<g >
<title>python`tupledealloc (29 samples, 0.02%)</title><rect x="114.4" y="868" width="0.2" height="15.0" fill="rgb(227,196,34)" rx="2" ry="2" />
<text x="117.44" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (197 samples, 0.12%)</title><rect x="429.5" y="1012" width="1.3" height="15.0" fill="rgb(228,168,47)" rx="2" ry="2" />
<text x="432.46" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (136 samples, 0.08%)</title><rect x="947.8" y="276" width="1.0" height="15.0" fill="rgb(206,84,28)" rx="2" ry="2" />
<text x="950.81" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::ByteSizeLong (1,125 samples, 0.66%)</title><rect x="972.4" y="388" width="7.8" height="15.0" fill="rgb(244,9,34)" rx="2" ry="2" />
<text x="975.39" y="398.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (199 samples, 0.12%)</title><rect x="676.8" y="436" width="1.4" height="15.0" fill="rgb(210,181,53)" rx="2" ry="2" />
<text x="679.77" y="446.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (24 samples, 0.01%)</title><rect x="1052.7" y="324" width="0.2" height="15.0" fill="rgb(225,20,27)" rx="2" ry="2" />
<text x="1055.69" y="334.5" ></text>
</g>
<g >
<title>_cmsgpack.cpython-39-darwin.so`int unpack_execute (93 samples, 0.05%)</title><rect x="528.4" y="916" width="0.6" height="15.0" fill="rgb(233,159,20)" rx="2" ry="2" />
<text x="531.38" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::ReportLocalityData (415 samples, 0.25%)</title><rect x="463.3" y="916" width="2.9" height="15.0" fill="rgb(244,172,22)" rx="2" ry="2" />
<text x="466.34" y="926.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (72,658 samples, 42.91%)</title><rect x="16.5" y="724" width="506.4" height="15.0" fill="rgb(233,112,7)" rx="2" ry="2" />
<text x="19.52" y="734.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>python`method_vectorcall (74,243 samples, 43.85%)</title><rect x="16.4" y="420" width="517.4" height="15.0" fill="rgb(228,156,33)" rx="2" ry="2" />
<text x="19.41" y="430.5" >python`method_vectorcall</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (38 samples, 0.02%)</title><rect x="454.6" y="1028" width="0.2" height="15.0" fill="rgb(219,10,6)" rx="2" ry="2" />
<text x="457.57" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (321 samples, 0.19%)</title><rect x="742.6" y="548" width="2.3" height="15.0" fill="rgb(253,74,5)" rx="2" ry="2" />
<text x="745.62" y="558.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wake (24 samples, 0.01%)</title><rect x="796.3" y="436" width="0.2" height="15.0" fill="rgb(214,185,45)" rx="2" ry="2" />
<text x="799.32" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::Reference::~Reference (21 samples, 0.01%)</title><rect x="888.4" y="324" width="0.2" height="15.0" fill="rgb(228,27,31)" rx="2" ry="2" />
<text x="891.41" y="334.5" ></text>
</g>
<g >
<title>python`module_getattro (62 samples, 0.04%)</title><rect x="133.2" y="1028" width="0.4" height="15.0" fill="rgb(212,142,54)" rx="2" ry="2" />
<text x="136.18" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (77 samples, 0.05%)</title><rect x="957.6" y="372" width="0.5" height="15.0" fill="rgb(222,172,0)" rx="2" ry="2" />
<text x="960.59" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (364 samples, 0.21%)</title><rect x="476.8" y="1012" width="2.5" height="15.0" fill="rgb(250,35,19)" rx="2" ry="2" />
<text x="479.78" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (22 samples, 0.01%)</title><rect x="1181.2" y="228" width="0.2" height="15.0" fill="rgb(214,108,49)" rx="2" ry="2" />
<text x="1184.20" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue (352 samples, 0.21%)</title><rect x="990.8" y="116" width="2.4" height="15.0" fill="rgb(251,70,43)" rx="2" ry="2" />
<text x="993.77" y="126.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (189 samples, 0.11%)</title><rect x="673.6" y="468" width="1.3" height="15.0" fill="rgb(225,178,16)" rx="2" ry="2" />
<text x="676.63" y="478.5" ></text>
</g>
<g >
<title>python`cfunction_call (3,378 samples, 2.00%)</title><rect x="312.3" y="964" width="23.6" height="15.0" fill="rgb(227,175,47)" rx="2" ry="2" />
<text x="315.31" y="974.5" >p..</text>
</g>
<g >
<title>python`method_vectorcall (38 samples, 0.02%)</title><rect x="1189.7" y="340" width="0.3" height="15.0" fill="rgb(232,65,50)" rx="2" ry="2" />
<text x="1192.74" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (167 samples, 0.10%)</title><rect x="1033.5" y="340" width="1.2" height="15.0" fill="rgb(208,8,7)" rx="2" ry="2" />
<text x="1036.53" y="350.5" ></text>
</g>
<g >
<title>python`PyObject_RichCompare (71 samples, 0.04%)</title><rect x="384.1" y="948" width="0.5" height="15.0" fill="rgb(237,114,27)" rx="2" ry="2" />
<text x="387.09" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (266 samples, 0.16%)</title><rect x="809.0" y="420" width="1.9" height="15.0" fill="rgb(219,47,22)" rx="2" ry="2" />
<text x="812.04" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,046 samples, 0.62%)</title><rect x="506.5" y="884" width="7.3" height="15.0" fill="rgb(246,157,20)" rx="2" ry="2" />
<text x="509.48" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (249 samples, 0.15%)</title><rect x="773.6" y="436" width="1.7" height="15.0" fill="rgb(251,221,25)" rx="2" ry="2" />
<text x="776.59" y="446.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__recvmsg (632 samples, 0.37%)</title><rect x="1001.8" y="196" width="4.4" height="15.0" fill="rgb(241,90,2)" rx="2" ry="2" />
<text x="1004.78" y="206.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (16 samples, 0.01%)</title><rect x="1118.7" y="212" width="0.1" height="15.0" fill="rgb(231,1,42)" rx="2" ry="2" />
<text x="1121.67" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (501 samples, 0.30%)</title><rect x="1039.6" y="292" width="3.5" height="15.0" fill="rgb(233,149,29)" rx="2" ry="2" />
<text x="1042.61" y="302.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (68 samples, 0.04%)</title><rect x="91.8" y="996" width="0.5" height="15.0" fill="rgb(217,108,15)" rx="2" ry="2" />
<text x="94.79" y="1006.5" ></text>
</g>
<g >
<title>python`Py_FinalizeEx (712 samples, 0.42%)</title><rect x="11.4" y="148" width="5.0" height="15.0" fill="rgb(210,201,15)" rx="2" ry="2" />
<text x="14.40" y="158.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (408 samples, 0.24%)</title><rect x="1023.8" y="260" width="2.9" height="15.0" fill="rgb(245,216,29)" rx="2" ry="2" />
<text x="1026.81" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (25 samples, 0.01%)</title><rect x="998.2" y="340" width="0.2" height="15.0" fill="rgb(217,37,12)" rx="2" ry="2" />
<text x="1001.22" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (160 samples, 0.09%)</title><rect x="902.1" y="308" width="1.2" height="15.0" fill="rgb(208,56,6)" rx="2" ry="2" />
<text x="905.14" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (356 samples, 0.21%)</title><rect x="1136.8" y="244" width="2.5" height="15.0" fill="rgb(238,171,42)" rx="2" ry="2" />
<text x="1139.83" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_f_3ray_7_raylet_RayObjectsToDataMetadataPairs (18 samples, 0.01%)</title><rect x="533.4" y="532" width="0.1" height="15.0" fill="rgb(224,98,48)" rx="2" ry="2" />
<text x="536.37" y="542.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception (18 samples, 0.01%)</title><rect x="831.3" y="276" width="0.1" height="15.0" fill="rgb(216,53,14)" rx="2" ry="2" />
<text x="834.26" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (244 samples, 0.14%)</title><rect x="1137.6" y="260" width="1.7" height="15.0" fill="rgb(254,128,11)" rx="2" ry="2" />
<text x="1140.57" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (195 samples, 0.12%)</title><rect x="431.3" y="964" width="1.3" height="15.0" fill="rgb(219,67,4)" rx="2" ry="2" />
<text x="434.28" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (86 samples, 0.05%)</title><rect x="740.0" y="612" width="0.6" height="15.0" fill="rgb(208,31,28)" rx="2" ry="2" />
<text x="742.95" y="622.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (33 samples, 0.02%)</title><rect x="924.5" y="340" width="0.3" height="15.0" fill="rgb(218,125,33)" rx="2" ry="2" />
<text x="927.52" y="350.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (66 samples, 0.04%)</title><rect x="646.2" y="500" width="0.5" height="15.0" fill="rgb(238,22,54)" rx="2" ry="2" />
<text x="649.21" y="510.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (333 samples, 0.20%)</title><rect x="416.8" y="964" width="2.4" height="15.0" fill="rgb(221,126,22)" rx="2" ry="2" />
<text x="419.84" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize (803 samples, 0.47%)</title><rect x="919.3" y="324" width="5.6" height="15.0" fill="rgb(233,139,18)" rx="2" ry="2" />
<text x="922.27" y="334.5" ></text>
</g>
<g >
<title>python`PyList_Append (74 samples, 0.04%)</title><rect x="239.6" y="964" width="0.5" height="15.0" fill="rgb(216,193,11)" rx="2" ry="2" />
<text x="242.56" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`receiving_trailing_metadata_ready (77 samples, 0.05%)</title><rect x="957.6" y="388" width="0.5" height="15.0" fill="rgb(222,217,23)" rx="2" ry="2" />
<text x="960.59" y="398.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (183 samples, 0.11%)</title><rect x="27.1" y="836" width="1.2" height="15.0" fill="rgb(254,65,40)" rx="2" ry="2" />
<text x="30.06" y="846.5" ></text>
</g>
<g >
<title>python`PyDict_SetItem (15 samples, 0.01%)</title><rect x="523.5" y="804" width="0.1" height="15.0" fill="rgb(228,103,29)" rx="2" ry="2" />
<text x="526.46" y="814.5" ></text>
</g>
<g >
<title>python`_PyObject_Call (53 samples, 0.03%)</title><rect x="521.7" y="804" width="0.3" height="15.0" fill="rgb(223,148,18)" rx="2" ry="2" />
<text x="524.67" y="814.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (58 samples, 0.03%)</title><rect x="483.3" y="1044" width="0.4" height="15.0" fill="rgb(232,166,9)" rx="2" ry="2" />
<text x="486.31" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::raw_hash_set (39 samples, 0.02%)</title><rect x="613.0" y="436" width="0.3" height="15.0" fill="rgb(234,85,4)" rx="2" ry="2" />
<text x="615.99" y="446.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (50 samples, 0.03%)</title><rect x="160.8" y="1012" width="0.4" height="15.0" fill="rgb(251,54,52)" rx="2" ry="2" />
<text x="163.82" y="1022.5" ></text>
</g>
<g >
<title>python`call_function (72,658 samples, 42.91%)</title><rect x="16.5" y="740" width="506.4" height="15.0" fill="rgb(232,204,34)" rx="2" ry="2" />
<text x="19.52" y="750.5" >python`call_function</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_madvise_free_range_no_lock (291 samples, 0.17%)</title><rect x="575.0" y="436" width="2.1" height="15.0" fill="rgb(212,63,28)" rx="2" ry="2" />
<text x="578.05" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (1,119 samples, 0.66%)</title><rect x="1075.1" y="196" width="7.8" height="15.0" fill="rgb(213,177,15)" rx="2" ry="2" />
<text x="1078.11" y="206.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (71 samples, 0.04%)</title><rect x="971.2" y="468" width="0.4" height="15.0" fill="rgb(220,123,32)" rx="2" ry="2" />
<text x="974.15" y="478.5" ></text>
</g>
<g >
<title>python`Py_RunMain (117,413 samples, 69.35%)</title><rect x="11.4" y="132" width="818.3" height="15.0" fill="rgb(238,86,5)" rx="2" ry="2" />
<text x="14.40" y="142.5" >python`Py_RunMain</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (15 samples, 0.01%)</title><rect x="1132.8" y="308" width="0.1" height="15.0" fill="rgb(224,161,21)" rx="2" ry="2" />
<text x="1135.84" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`tcp_do_read( (34 samples, 0.02%)</title><rect x="1001.2" y="196" width="0.2" height="15.0" fill="rgb(230,131,53)" rx="2" ry="2" />
<text x="1004.20" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (165 samples, 0.10%)</title><rect x="890.4" y="308" width="1.1" height="15.0" fill="rgb(217,77,9)" rx="2" ry="2" />
<text x="893.38" y="318.5" ></text>
</g>
<g >
<title>python`lookdict_unicode (43 samples, 0.03%)</title><rect x="43.4" y="868" width="0.3" height="15.0" fill="rgb(246,77,38)" rx="2" ry="2" />
<text x="46.43" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (36 samples, 0.02%)</title><rect x="451.3" y="1060" width="0.3" height="15.0" fill="rgb(228,225,50)" rx="2" ry="2" />
<text x="454.35" y="1070.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (28 samples, 0.02%)</title><rect x="909.4" y="276" width="0.2" height="15.0" fill="rgb(229,73,13)" rx="2" ry="2" />
<text x="912.40" y="286.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (350 samples, 0.21%)</title><rect x="722.5" y="500" width="2.4" height="15.0" fill="rgb(236,215,21)" rx="2" ry="2" />
<text x="725.47" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (27 samples, 0.02%)</title><rect x="1022.9" y="260" width="0.2" height="15.0" fill="rgb(254,124,22)" rx="2" ry="2" />
<text x="1025.90" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::~ObjectReference (17 samples, 0.01%)</title><rect x="749.0" y="468" width="0.1" height="15.0" fill="rgb(216,26,33)" rx="2" ry="2" />
<text x="752.00" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (50 samples, 0.03%)</title><rect x="424.9" y="1044" width="0.4" height="15.0" fill="rgb(217,164,1)" rx="2" ry="2" />
<text x="427.94" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (586 samples, 0.35%)</title><rect x="651.0" y="452" width="4.0" height="15.0" fill="rgb(215,0,32)" rx="2" ry="2" />
<text x="653.97" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (60 samples, 0.04%)</title><rect x="980.5" y="356" width="0.5" height="15.0" fill="rgb(234,142,39)" rx="2" ry="2" />
<text x="983.54" y="366.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (129 samples, 0.08%)</title><rect x="821.4" y="420" width="0.9" height="15.0" fill="rgb(254,127,24)" rx="2" ry="2" />
<text x="824.41" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (172 samples, 0.10%)</title><rect x="1093.1" y="260" width="1.2" height="15.0" fill="rgb(222,138,45)" rx="2" ry="2" />
<text x="1096.14" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubsubLongPollingRequest::_InternalParse (18 samples, 0.01%)</title><rect x="1065.8" y="196" width="0.2" height="15.0" fill="rgb(240,88,20)" rx="2" ry="2" />
<text x="1068.84" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_call_start_batch (17 samples, 0.01%)</title><rect x="831.3" y="292" width="0.1" height="15.0" fill="rgb(238,55,21)" rx="2" ry="2" />
<text x="834.27" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::UTF8GenericScanFastAscii (106 samples, 0.06%)</title><rect x="419.7" y="948" width="0.8" height="15.0" fill="rgb(224,38,52)" rx="2" ry="2" />
<text x="422.72" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_convert_string_from_py_std__in_string (246 samples, 0.15%)</title><rect x="385.1" y="900" width="1.7" height="15.0" fill="rgb(223,10,25)" rx="2" ry="2" />
<text x="388.12" y="910.5" ></text>
</g>
<g >
<title>python`method_get (26 samples, 0.02%)</title><rect x="61.8" y="980" width="0.2" height="15.0" fill="rgb(220,123,14)" rx="2" ry="2" />
<text x="64.81" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (213 samples, 0.13%)</title><rect x="739.1" y="580" width="1.5" height="15.0" fill="rgb(227,36,2)" rx="2" ry="2" />
<text x="742.07" y="590.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (21 samples, 0.01%)</title><rect x="664.2" y="532" width="0.1" height="15.0" fill="rgb(209,19,34)" rx="2" ry="2" />
<text x="667.17" y="542.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::basic_string (24 samples, 0.01%)</title><rect x="515.2" y="868" width="0.2" height="15.0" fill="rgb(214,119,48)" rx="2" ry="2" />
<text x="518.24" y="878.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (26 samples, 0.02%)</title><rect x="1021.5" y="180" width="0.2" height="15.0" fill="rgb(253,29,20)" rx="2" ry="2" />
<text x="1024.51" y="190.5" ></text>
</g>
<g >
<title>python`_PyObject_GetMethod (131 samples, 0.08%)</title><rect x="68.8" y="964" width="0.9" height="15.0" fill="rgb(230,170,5)" rx="2" ry="2" />
<text x="71.80" y="974.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (19 samples, 0.01%)</title><rect x="859.9" y="340" width="0.1" height="15.0" fill="rgb(221,225,35)" rx="2" ry="2" />
<text x="862.90" y="350.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`write (138 samples, 0.08%)</title><rect x="1067.0" y="196" width="1.0" height="15.0" fill="rgb(219,164,43)" rx="2" ry="2" />
<text x="1070.04" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage::clear_pub_message_one_of (6,934 samples, 4.10%)</title><rect x="1121.5" y="180" width="48.3" height="15.0" fill="rgb(220,202,24)" rx="2" ry="2" />
<text x="1124.51" y="190.5" >_ray..</text>
</g>
<g >
<title>python`PyType_IsSubtype (27 samples, 0.02%)</title><rect x="75.0" y="1076" width="0.2" height="15.0" fill="rgb(216,100,5)" rx="2" ry="2" />
<text x="77.99" y="1086.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (497 samples, 0.29%)</title><rect x="726.4" y="596" width="3.4" height="15.0" fill="rgb(235,159,30)" rx="2" ry="2" />
<text x="729.36" y="606.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (61 samples, 0.04%)</title><rect x="418.6" y="1028" width="0.5" height="15.0" fill="rgb(214,78,51)" rx="2" ry="2" />
<text x="421.64" y="1038.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (146 samples, 0.09%)</title><rect x="1142.0" y="260" width="1.0" height="15.0" fill="rgb(228,27,33)" rx="2" ry="2" />
<text x="1145.02" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_memalign (29 samples, 0.02%)</title><rect x="447.5" y="980" width="0.2" height="15.0" fill="rgb(241,110,1)" rx="2" ry="2" />
<text x="450.46" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_free_definite_size (16 samples, 0.01%)</title><rect x="765.4" y="484" width="0.1" height="15.0" fill="rgb(215,102,53)" rx="2" ry="2" />
<text x="768.41" y="494.5" ></text>
</g>
<g >
<title>python`method_vectorcall_VARARGS_KEYWORDS (58 samples, 0.03%)</title><rect x="533.4" y="500" width="0.4" height="15.0" fill="rgb(225,162,45)" rx="2" ry="2" />
<text x="536.37" y="510.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (328 samples, 0.19%)</title><rect x="710.3" y="468" width="2.3" height="15.0" fill="rgb(224,16,31)" rx="2" ry="2" />
<text x="713.34" y="478.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (114 samples, 0.07%)</title><rect x="1189.2" y="212" width="0.8" height="15.0" fill="rgb(245,119,45)" rx="2" ry="2" />
<text x="1192.21" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (15 samples, 0.01%)</title><rect x="997.1" y="292" width="0.1" height="15.0" fill="rgb(232,8,37)" rx="2" ry="2" />
<text x="1000.12" y="302.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (26 samples, 0.02%)</title><rect x="529.8" y="900" width="0.1" height="15.0" fill="rgb(216,105,43)" rx="2" ry="2" />
<text x="532.75" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayObject::RayObject (85 samples, 0.05%)</title><rect x="440.8" y="916" width="0.6" height="15.0" fill="rgb(214,144,5)" rx="2" ry="2" />
<text x="443.76" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__shared_ptr_emplace::__on_zero_shared (1,377 samples, 0.81%)</title><rect x="561.1" y="404" width="9.6" height="15.0" fill="rgb(209,107,53)" rx="2" ry="2" />
<text x="564.15" y="414.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (49 samples, 0.03%)</title><rect x="113.6" y="852" width="0.4" height="15.0" fill="rgb(240,131,19)" rx="2" ry="2" />
<text x="116.62" y="862.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::AddLocalReference (38 samples, 0.02%)</title><rect x="381.9" y="932" width="0.2" height="15.0" fill="rgb(212,102,29)" rx="2" ry="2" />
<text x="384.86" y="942.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (292 samples, 0.17%)</title><rect x="1063.5" y="244" width="2.0" height="15.0" fill="rgb(229,7,40)" rx="2" ry="2" />
<text x="1066.45" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_10CoreWorker_85remove_object_ref_reference (65 samples, 0.04%)</title><rect x="551.0" y="324" width="0.5" height="15.0" fill="rgb(246,220,17)" rx="2" ry="2" />
<text x="554.03" y="334.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (36 samples, 0.02%)</title><rect x="296.3" y="980" width="0.3" height="15.0" fill="rgb(238,3,10)" rx="2" ry="2" />
<text x="299.34" y="990.5" ></text>
</g>
<g >
<title>python`PyMember_GetOne (28 samples, 0.02%)</title><rect x="240.6" y="964" width="0.2" height="15.0" fill="rgb(238,19,24)" rx="2" ry="2" />
<text x="243.60" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::CoreWorkerService::WithAsyncMethod_PubsubCommandBatch&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_AddObjectLocationOwner&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RemoveObjectLocationOwner&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_GetObjectLocationsOwner&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_KillActor&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_CancelTask&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RemoteCancelTask&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_GetCoreWorkerStats&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_LocalGC&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_SpillObjects&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RestoreSpilledObjects&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_DeleteSpilledObjects&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_AddSpilledUrl&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_PlasmaObjectReady&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_RunOnUtilWorker&lt;ray::rpc::CoreWorkerService::WithAsyncMethod_Exit&lt;ray::rpc::CoreWorkerService::WithAsync� (53 samples, 0.03%)</title><rect x="984.2" y="228" width="0.4" height="15.0" fill="rgb(225,153,32)" rx="2" ry="2" />
<text x="987.24" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (18 samples, 0.01%)</title><rect x="1000.3" y="276" width="0.1" height="15.0" fill="rgb(206,127,41)" rx="2" ry="2" />
<text x="1003.31" y="286.5" ></text>
</g>
<g >
<title>python`do_mktuple (119 samples, 0.07%)</title><rect x="530.9" y="852" width="0.9" height="15.0" fill="rgb(245,213,42)" rx="2" ry="2" />
<text x="533.93" y="862.5" ></text>
</g>
<g >
<title>python`DYLD-STUB$$strlen (44 samples, 0.03%)</title><rect x="170.6" y="1012" width="0.3" height="15.0" fill="rgb(241,71,48)" rx="2" ry="2" />
<text x="173.64" y="1022.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memcmp (30 samples, 0.02%)</title><rect x="161.2" y="1012" width="0.2" height="15.0" fill="rgb(237,152,12)" rx="2" ry="2" />
<text x="164.17" y="1022.5" ></text>
</g>
<g >
<title>_raylet.so`ray::RayObject::IsInPlasmaError (93 samples, 0.05%)</title><rect x="457.7" y="948" width="0.7" height="15.0" fill="rgb(221,47,15)" rx="2" ry="2" />
<text x="460.71" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (149 samples, 0.09%)</title><rect x="1053.3" y="324" width="1.0" height="15.0" fill="rgb(217,97,6)" rx="2" ry="2" />
<text x="1056.30" y="334.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (671 samples, 0.40%)</title><rect x="668.5" y="484" width="4.6" height="15.0" fill="rgb(215,111,6)" rx="2" ry="2" />
<text x="671.47" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_byte_buffer_destroy (29 samples, 0.02%)</title><rect x="1066.4" y="180" width="0.2" height="15.0" fill="rgb(241,17,48)" rx="2" ry="2" />
<text x="1069.43" y="190.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_strchr$VARIANT$Haswell (17 samples, 0.01%)</title><rect x="84.2" y="980" width="0.1" height="15.0" fill="rgb(226,21,33)" rx="2" ry="2" />
<text x="87.23" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_3check_id (118 samples, 0.07%)</title><rect x="76.4" y="1076" width="0.8" height="15.0" fill="rgb(235,159,21)" rx="2" ry="2" />
<text x="79.35" y="1086.5" ></text>
</g>
<g >
<title>python`tupledealloc (20 samples, 0.01%)</title><rect x="73.2" y="1028" width="0.2" height="15.0" fill="rgb(214,40,20)" rx="2" ry="2" />
<text x="76.22" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (166 samples, 0.10%)</title><rect x="610.1" y="468" width="1.2" height="15.0" fill="rgb(208,103,4)" rx="2" ry="2" />
<text x="613.12" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (57 samples, 0.03%)</title><rect x="1188.4" y="180" width="0.4" height="15.0" fill="rgb(219,37,1)" rx="2" ry="2" />
<text x="1191.38" y="190.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (32 samples, 0.02%)</title><rect x="464.0" y="932" width="0.2" height="15.0" fill="rgb(209,160,30)" rx="2" ry="2" />
<text x="466.99" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (422 samples, 0.25%)</title><rect x="1166.8" y="196" width="2.9" height="15.0" fill="rgb(241,220,11)" rx="2" ry="2" />
<text x="1169.81" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (174 samples, 0.10%)</title><rect x="451.6" y="1028" width="1.2" height="15.0" fill="rgb(231,161,2)" rx="2" ry="2" />
<text x="454.62" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`DYLD-STUB$$_Py_Dealloc (30 samples, 0.02%)</title><rect x="118.0" y="948" width="0.2" height="15.0" fill="rgb(213,46,8)" rx="2" ry="2" />
<text x="121.03" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (90 samples, 0.05%)</title><rect x="574.3" y="436" width="0.6" height="15.0" fill="rgb(251,30,25)" rx="2" ry="2" />
<text x="577.31" y="446.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (34 samples, 0.02%)</title><rect x="548.2" y="372" width="0.2" height="15.0" fill="rgb(205,83,20)" rx="2" ry="2" />
<text x="551.20" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (37 samples, 0.02%)</title><rect x="1114.9" y="228" width="0.3" height="15.0" fill="rgb(249,19,27)" rx="2" ry="2" />
<text x="1117.92" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (80 samples, 0.05%)</title><rect x="561.5" y="452" width="0.6" height="15.0" fill="rgb(245,55,14)" rx="2" ry="2" />
<text x="564.54" y="462.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memset$VARIANT$Haswell (21 samples, 0.01%)</title><rect x="468.9" y="964" width="0.1" height="15.0" fill="rgb(221,94,21)" rx="2" ry="2" />
<text x="471.88" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (545 samples, 0.32%)</title><rect x="631.9" y="500" width="3.8" height="15.0" fill="rgb(234,3,1)" rx="2" ry="2" />
<text x="634.88" y="510.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::basic_string (29 samples, 0.02%)</title><rect x="78.7" y="1044" width="0.2" height="15.0" fill="rgb(235,20,39)" rx="2" ry="2" />
<text x="81.72" y="1054.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::Status grpc::internal::CallOpSendMessage::SendMessage (46 samples, 0.03%)</title><rect x="957.0" y="276" width="0.3" height="15.0" fill="rgb(251,43,41)" rx="2" ry="2" />
<text x="959.98" y="286.5" ></text>
</g>
<g >
<title>python`method_vectorcall (20 samples, 0.01%)</title><rect x="1189.6" y="612" width="0.1" height="15.0" fill="rgb(239,84,35)" rx="2" ry="2" />
<text x="1192.57" y="622.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (438 samples, 0.26%)</title><rect x="852.9" y="276" width="3.0" height="15.0" fill="rgb(242,35,12)" rx="2" ry="2" />
<text x="855.85" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::~Address (1,008 samples, 0.60%)</title><rect x="900.7" y="260" width="7.0" height="15.0" fill="rgb(252,124,45)" rx="2" ry="2" />
<text x="903.66" y="270.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (174 samples, 0.10%)</title><rect x="424.1" y="1012" width="1.2" height="15.0" fill="rgb(232,24,13)" rx="2" ry="2" />
<text x="427.08" y="1022.5" ></text>
</g>
<g >
<title>python`list_dealloc (19 samples, 0.01%)</title><rect x="110.3" y="900" width="0.1" height="15.0" fill="rgb(207,216,44)" rx="2" ry="2" />
<text x="113.26" y="910.5" ></text>
</g>
<g >
<title>python`lookdict_split (41 samples, 0.02%)</title><rect x="548.6" y="356" width="0.3" height="15.0" fill="rgb(223,163,3)" rx="2" ry="2" />
<text x="551.64" y="366.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (26 samples, 0.02%)</title><rect x="94.2" y="1012" width="0.2" height="15.0" fill="rgb(213,100,17)" rx="2" ry="2" />
<text x="97.22" y="1022.5" ></text>
</g>
<g >
<title>0x2 (117,614 samples, 69.47%)</title><rect x="10.0" y="68" width="819.7" height="15.0" fill="rgb(245,6,35)" rx="2" ry="2" />
<text x="13.00" y="78.5" >0x2</text>
</g>
<g >
<title>python`vgetargs1_impl (2,709 samples, 1.60%)</title><rect x="189.7" y="1044" width="18.9" height="15.0" fill="rgb(242,191,13)" rx="2" ry="2" />
<text x="192.70" y="1054.5" ></text>
</g>
<g >
<title>_cmsgpack.cpython-39-darwin.so`int unpack_execute (1,440 samples, 0.85%)</title><rect x="522.9" y="788" width="10.1" height="15.0" fill="rgb(218,58,26)" rx="2" ry="2" />
<text x="525.95" y="798.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubsubCommandBatchRequest::_InternalParse (6,274 samples, 3.71%)</title><rect x="1022.1" y="196" width="43.7" height="15.0" fill="rgb(208,20,52)" rx="2" ry="2" />
<text x="1025.12" y="206.5" >_ray..</text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post (46 samples, 0.03%)</title><rect x="961.4" y="260" width="0.3" height="15.0" fill="rgb(254,128,21)" rx="2" ry="2" />
<text x="964.37" y="270.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (66 samples, 0.04%)</title><rect x="109.5" y="964" width="0.5" height="15.0" fill="rgb(222,107,1)" rx="2" ry="2" />
<text x="112.53" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (24 samples, 0.01%)</title><rect x="442.4" y="932" width="0.2" height="15.0" fill="rgb(236,73,4)" rx="2" ry="2" />
<text x="445.45" y="942.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memset$VARIANT$Haswell (23 samples, 0.01%)</title><rect x="644.4" y="484" width="0.1" height="15.0" fill="rgb(228,96,53)" rx="2" ry="2" />
<text x="647.35" y="494.5" ></text>
</g>
<g >
<title>python`meth_dealloc (18 samples, 0.01%)</title><rect x="90.7" y="916" width="0.1" height="15.0" fill="rgb(207,95,32)" rx="2" ry="2" />
<text x="93.70" y="926.5" ></text>
</g>
<g >
<title>python`drop_gil (110 samples, 0.06%)</title><rect x="546.2" y="388" width="0.8" height="15.0" fill="rgb(247,26,23)" rx="2" ry="2" />
<text x="549.24" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`bool google::protobuf::MessageLite::ParseFrom (1,539 samples, 0.91%)</title><rect x="410.1" y="884" width="10.8" height="15.0" fill="rgb(208,69,35)" rx="2" ry="2" />
<text x="413.14" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (25 samples, 0.01%)</title><rect x="955.8" y="308" width="0.2" height="15.0" fill="rgb(251,74,35)" rx="2" ry="2" />
<text x="958.85" y="318.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (117 samples, 0.07%)</title><rect x="397.3" y="916" width="0.9" height="15.0" fill="rgb(233,37,32)" rx="2" ry="2" />
<text x="400.34" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (54 samples, 0.03%)</title><rect x="1154.4" y="260" width="0.4" height="15.0" fill="rgb(231,47,19)" rx="2" ry="2" />
<text x="1157.41" y="270.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (185 samples, 0.11%)</title><rect x="610.0" y="436" width="1.3" height="15.0" fill="rgb(254,217,36)" rx="2" ry="2" />
<text x="613.00" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry (1,943 samples, 1.15%)</title><rect x="912.0" y="276" width="13.5" height="15.0" fill="rgb(239,52,43)" rx="2" ry="2" />
<text x="914.96" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::GetCurrentTimeNanos (20 samples, 0.01%)</title><rect x="447.0" y="948" width="0.1" height="15.0" fill="rgb(228,165,6)" rx="2" ry="2" />
<text x="449.96" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::Executor::ThreadMain (146 samples, 0.09%)</title><rect x="829.7" y="116" width="1.1" height="15.0" fill="rgb(241,102,26)" rx="2" ry="2" />
<text x="832.74" y="126.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (25 samples, 0.01%)</title><rect x="1189.6" y="500" width="0.1" height="15.0" fill="rgb(229,152,46)" rx="2" ry="2" />
<text x="1192.55" y="510.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (48 samples, 0.03%)</title><rect x="80.4" y="1012" width="0.4" height="15.0" fill="rgb(225,219,38)" rx="2" ry="2" />
<text x="83.45" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`mvm_deallocate_pages (223 samples, 0.13%)</title><rect x="888.6" y="324" width="1.6" height="15.0" fill="rgb(242,228,23)" rx="2" ry="2" />
<text x="891.60" y="334.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`madvise (36 samples, 0.02%)</title><rect x="795.9" y="500" width="0.2" height="15.0" fill="rgb(246,212,54)" rx="2" ry="2" />
<text x="798.88" y="510.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`read (76 samples, 0.04%)</title><rect x="990.1" y="180" width="0.6" height="15.0" fill="rgb(234,202,42)" rx="2" ry="2" />
<text x="993.15" y="190.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__exit (200 samples, 0.12%)</title><rect x="10.0" y="100" width="1.4" height="15.0" fill="rgb(223,184,24)" rx="2" ry="2" />
<text x="13.01" y="110.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::HandleRefRemoved (44 samples, 0.03%)</title><rect x="551.1" y="388" width="0.3" height="15.0" fill="rgb(248,59,30)" rx="2" ry="2" />
<text x="554.11" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (310 samples, 0.18%)</title><rect x="1184.9" y="212" width="2.1" height="15.0" fill="rgb(245,172,10)" rx="2" ry="2" />
<text x="1187.86" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::~ObjectReference (2,261 samples, 1.34%)</title><rect x="749.5" y="484" width="15.8" height="15.0" fill="rgb(238,88,36)" rx="2" ry="2" />
<text x="752.52" y="494.5" ></text>
</g>
<g >
<title>libsystem_c.dylib`notify_check_tz (23 samples, 0.01%)</title><rect x="987.7" y="260" width="0.2" height="15.0" fill="rgb(211,105,21)" rx="2" ry="2" />
<text x="990.74" y="270.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::AddLocalReference (3,752 samples, 2.22%)</title><rect x="348.1" y="948" width="26.2" height="15.0" fill="rgb(242,120,4)" rx="2" ry="2" />
<text x="351.12" y="958.5" >_..</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (242 samples, 0.14%)</title><rect x="713.7" y="532" width="1.7" height="15.0" fill="rgb(235,142,4)" rx="2" ry="2" />
<text x="716.73" y="542.5" ></text>
</g>
<g >
<title>python`PyObject_IsTrue (40 samples, 0.02%)</title><rect x="514.3" y="884" width="0.3" height="15.0" fill="rgb(238,172,3)" rx="2" ry="2" />
<text x="517.32" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::Address (3,020 samples, 1.78%)</title><rect x="618.0" y="452" width="21.0" height="15.0" fill="rgb(213,196,30)" rx="2" ry="2" />
<text x="620.99" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (183 samples, 0.11%)</title><rect x="775.7" y="484" width="1.2" height="15.0" fill="rgb(231,129,17)" rx="2" ry="2" />
<text x="778.67" y="494.5" ></text>
</g>
<g >
<title>python`_PyTuple_FromArray (19 samples, 0.01%)</title><rect x="82.0" y="916" width="0.2" height="15.0" fill="rgb(211,187,11)" rx="2" ry="2" />
<text x="85.04" y="926.5" ></text>
</g>
<g >
<title>python`_PyType_Lookup (52 samples, 0.03%)</title><rect x="105.3" y="964" width="0.4" height="15.0" fill="rgb(238,84,16)" rx="2" ry="2" />
<text x="108.33" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (32 samples, 0.02%)</title><rect x="996.1" y="228" width="0.3" height="15.0" fill="rgb(245,9,42)" rx="2" ry="2" />
<text x="999.13" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved (11,138 samples, 6.58%)</title><rect x="833.2" y="244" width="77.6" height="15.0" fill="rgb(210,175,12)" rx="2" ry="2" />
<text x="836.18" y="254.5" >_raylet...</text>
</g>
<g >
<title>_raylet.so`ray::LocalMemoryBuffer::LocalMemoryBuffer (16 samples, 0.01%)</title><rect x="446.0" y="932" width="0.1" height="15.0" fill="rgb(251,124,30)" rx="2" ry="2" />
<text x="449.04" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Block (1,975 samples, 1.17%)</title><rect x="683.1" y="500" width="13.8" height="15.0" fill="rgb(241,186,53)" rx="2" ry="2" />
<text x="686.14" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (298 samples, 0.18%)</title><rect x="720.0" y="500" width="2.0" height="15.0" fill="rgb(221,75,37)" rx="2" ry="2" />
<text x="722.96" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (60 samples, 0.04%)</title><rect x="767.9" y="500" width="0.4" height="15.0" fill="rgb(220,174,3)" rx="2" ry="2" />
<text x="770.91" y="510.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::~SubscriptionIndex (67 samples, 0.04%)</title><rect x="15.3" y="388" width="0.5" height="15.0" fill="rgb(242,225,39)" rx="2" ry="2" />
<text x="18.35" y="398.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (72 samples, 0.04%)</title><rect x="643.4" y="548" width="0.5" height="15.0" fill="rgb(207,58,5)" rx="2" ry="2" />
<text x="646.41" y="558.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (91 samples, 0.05%)</title><rect x="635.0" y="548" width="0.7" height="15.0" fill="rgb(252,91,5)" rx="2" ry="2" />
<text x="638.02" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`write_action_begin_locked (32 samples, 0.02%)</title><rect x="830.3" y="180" width="0.3" height="15.0" fill="rgb(208,205,42)" rx="2" ry="2" />
<text x="833.35" y="190.5" ></text>
</g>
<g >
<title>python`PyLong_FromLong (18 samples, 0.01%)</title><rect x="240.5" y="964" width="0.1" height="15.0" fill="rgb(230,189,30)" rx="2" ry="2" />
<text x="243.47" y="974.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (17 samples, 0.01%)</title><rect x="548.3" y="388" width="0.1" height="15.0" fill="rgb(215,178,3)" rx="2" ry="2" />
<text x="551.31" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`tcp_write (28 samples, 0.02%)</title><rect x="830.4" y="196" width="0.2" height="15.0" fill="rgb(251,77,8)" rx="2" ry="2" />
<text x="833.38" y="206.5" ></text>
</g>
<g >
<title>python`Py_EnterRecursiveCall (134 samples, 0.08%)</title><rect x="150.2" y="980" width="1.0" height="15.0" fill="rgb(249,0,52)" rx="2" ry="2" />
<text x="153.25" y="990.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_mutex_unlock (28 samples, 0.02%)</title><rect x="90.3" y="980" width="0.2" height="15.0" fill="rgb(246,164,32)" rx="2" ry="2" />
<text x="93.33" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_timespec_to_millis_round_up (34 samples, 0.02%)</title><rect x="994.0" y="164" width="0.2" height="15.0" fill="rgb(248,163,43)" rx="2" ry="2" />
<text x="996.98" y="174.5" ></text>
</g>
<g >
<title>python`convertitem (550 samples, 0.32%)</title><rect x="204.7" y="1060" width="3.9" height="15.0" fill="rgb(243,170,47)" rx="2" ry="2" />
<text x="207.74" y="1070.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (71 samples, 0.04%)</title><rect x="915.0" y="308" width="0.5" height="15.0" fill="rgb(246,50,7)" rx="2" ry="2" />
<text x="917.96" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::WorkerRefRemovedMessage* google::protobuf::Arena::CreateMaybeMessage (314 samples, 0.19%)</title><rect x="719.9" y="468" width="2.2" height="15.0" fill="rgb(224,114,45)" rx="2" ry="2" />
<text x="722.87" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (59 samples, 0.03%)</title><rect x="980.5" y="372" width="0.4" height="15.0" fill="rgb(226,209,20)" rx="2" ry="2" />
<text x="983.54" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (855 samples, 0.50%)</title><rect x="1076.9" y="212" width="6.0" height="15.0" fill="rgb(212,114,33)" rx="2" ry="2" />
<text x="1079.92" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (191 samples, 0.11%)</title><rect x="675.4" y="500" width="1.3" height="15.0" fill="rgb(217,153,46)" rx="2" ry="2" />
<text x="678.38" y="510.5" ></text>
</g>
<g >
<title>python`cfunction_vectorcall_FASTCALL (181 samples, 0.11%)</title><rect x="70.5" y="980" width="1.2" height="15.0" fill="rgb(223,54,8)" rx="2" ry="2" />
<text x="73.48" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (278 samples, 0.16%)</title><rect x="894.4" y="340" width="1.9" height="15.0" fill="rgb(232,45,8)" rx="2" ry="2" />
<text x="897.41" y="350.5" ></text>
</g>
<g >
<title>python`lookdict_unicode_nodummy (38 samples, 0.02%)</title><rect x="396.7" y="916" width="0.2" height="15.0" fill="rgb(250,86,49)" rx="2" ry="2" />
<text x="399.65" y="926.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="1189.6" y="532" width="0.1" height="15.0" fill="rgb(212,167,18)" rx="2" ry="2" />
<text x="1192.55" y="542.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (63 samples, 0.04%)</title><rect x="470.6" y="980" width="0.5" height="15.0" fill="rgb(229,181,10)" rx="2" ry="2" />
<text x="473.65" y="990.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (270 samples, 0.16%)</title><rect x="713.6" y="500" width="1.8" height="15.0" fill="rgb(253,5,21)" rx="2" ry="2" />
<text x="716.57" y="510.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (15 samples, 0.01%)</title><rect x="1116.7" y="212" width="0.1" height="15.0" fill="rgb(230,111,37)" rx="2" ry="2" />
<text x="1119.71" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`receiving_stream_ready (31 samples, 0.02%)</title><rect x="996.1" y="244" width="0.3" height="15.0" fill="rgb(243,74,6)" rx="2" ry="2" />
<text x="999.14" y="254.5" ></text>
</g>
<g >
<title>python`object_dealloc (16 samples, 0.01%)</title><rect x="381.5" y="948" width="0.1" height="15.0" fill="rgb(238,166,34)" rx="2" ry="2" />
<text x="384.47" y="958.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (114 samples, 0.07%)</title><rect x="1189.2" y="196" width="0.8" height="15.0" fill="rgb(212,84,32)" rx="2" ry="2" />
<text x="1192.21" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (23 samples, 0.01%)</title><rect x="709.9" y="516" width="0.1" height="15.0" fill="rgb(230,160,46)" rx="2" ry="2" />
<text x="712.85" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (82 samples, 0.05%)</title><rect x="388.8" y="932" width="0.6" height="15.0" fill="rgb(235,152,36)" rx="2" ry="2" />
<text x="391.81" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (159 samples, 0.09%)</title><rect x="821.2" y="404" width="1.1" height="15.0" fill="rgb(241,112,1)" rx="2" ry="2" />
<text x="824.20" y="414.5" ></text>
</g>
<g >
<title>_raylet.so`void google::protobuf::internal::RepeatedPtrFieldBase::MergeFromInnerLoop (31 samples, 0.02%)</title><rect x="745.3" y="452" width="0.2" height="15.0" fill="rgb(213,72,19)" rx="2" ry="2" />
<text x="748.31" y="462.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (34 samples, 0.02%)</title><rect x="1189.7" y="436" width="0.3" height="15.0" fill="rgb(247,43,44)" rx="2" ry="2" />
<text x="1192.74" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (147 samples, 0.09%)</title><rect x="1050.3" y="340" width="1.0" height="15.0" fill="rgb(226,167,12)" rx="2" ry="2" />
<text x="1053.26" y="350.5" ></text>
</g>
<g >
<title>python`do_string_format (3,337 samples, 1.97%)</title><rect x="312.6" y="980" width="23.3" height="15.0" fill="rgb(206,119,39)" rx="2" ry="2" />
<text x="315.60" y="990.5" >p..</text>
</g>
<g >
<title>python`frame_dealloc (67 samples, 0.04%)</title><rect x="136.6" y="996" width="0.5" height="15.0" fill="rgb(228,140,48)" rx="2" ry="2" />
<text x="139.60" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerContext::~ServerContext (259 samples, 0.15%)</title><rect x="1068.4" y="148" width="1.8" height="15.0" fill="rgb(246,16,10)" rx="2" ry="2" />
<text x="1071.35" y="158.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (307 samples, 0.18%)</title><rect x="222.9" y="1028" width="2.1" height="15.0" fill="rgb(236,89,26)" rx="2" ry="2" />
<text x="225.91" y="1038.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (542 samples, 0.32%)</title><rect x="1055.2" y="308" width="3.8" height="15.0" fill="rgb(229,92,5)" rx="2" ry="2" />
<text x="1058.20" y="318.5" ></text>
</g>
<g >
<title>python`PyDict_Contains (932 samples, 0.55%)</title><rect x="56.3" y="900" width="6.5" height="15.0" fill="rgb(205,202,15)" rx="2" ry="2" />
<text x="59.31" y="910.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address::_InternalParse (1,263 samples, 0.75%)</title><rect x="1054.4" y="276" width="8.8" height="15.0" fill="rgb(235,156,34)" rx="2" ry="2" />
<text x="1057.36" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerProcess::GetCoreWorker (36 samples, 0.02%)</title><rect x="490.1" y="884" width="0.2" height="15.0" fill="rgb(249,175,17)" rx="2" ry="2" />
<text x="493.06" y="894.5" ></text>
</g>
<g >
<title>python`MarkupIterator_next (23 samples, 0.01%)</title><rect x="313.0" y="996" width="0.1" height="15.0" fill="rgb(245,64,49)" rx="2" ry="2" />
<text x="315.97" y="1006.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (21 samples, 0.01%)</title><rect x="243.3" y="980" width="0.1" height="15.0" fill="rgb(250,64,20)" rx="2" ry="2" />
<text x="246.25" y="990.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (25 samples, 0.01%)</title><rect x="1189.6" y="516" width="0.1" height="15.0" fill="rgb(250,52,8)" rx="2" ry="2" />
<text x="1192.55" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (218 samples, 0.13%)</title><rect x="639.4" y="516" width="1.5" height="15.0" fill="rgb(208,76,41)" rx="2" ry="2" />
<text x="642.42" y="526.5" ></text>
</g>
<g >
<title>python`insertdict (126 samples, 0.07%)</title><rect x="532.1" y="804" width="0.9" height="15.0" fill="rgb(218,194,20)" rx="2" ry="2" />
<text x="535.08" y="814.5" ></text>
</g>
<g >
<title>python`cfunction_vectorcall_FASTCALL_KEYWORDS (72,654 samples, 42.91%)</title><rect x="16.5" y="756" width="506.4" height="15.0" fill="rgb(223,198,38)" rx="2" ry="2" />
<text x="19.52" y="766.5" >python`cfunction_vectorcall_FASTCALL_KEYWORDS</text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (214 samples, 0.13%)</title><rect x="675.2" y="468" width="1.5" height="15.0" fill="rgb(227,30,3)" rx="2" ry="2" />
<text x="678.23" y="478.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator delete (17 samples, 0.01%)</title><rect x="777.3" y="420" width="0.1" height="15.0" fill="rgb(224,229,8)" rx="2" ry="2" />
<text x="780.27" y="430.5" ></text>
</g>
<g >
<title>python`visit_decref (25 samples, 0.01%)</title><rect x="11.9" y="212" width="0.1" height="15.0" fill="rgb(205,46,39)" rx="2" ry="2" />
<text x="14.86" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (165 samples, 0.10%)</title><rect x="1158.8" y="212" width="1.1" height="15.0" fill="rgb(221,95,1)" rx="2" ry="2" />
<text x="1161.78" y="222.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (116 samples, 0.07%)</title><rect x="399.6" y="916" width="0.8" height="15.0" fill="rgb(214,30,5)" rx="2" ry="2" />
<text x="402.59" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_scan_madvise_free (17 samples, 0.01%)</title><rect x="1136.0" y="292" width="0.1" height="15.0" fill="rgb(219,26,28)" rx="2" ry="2" />
<text x="1139.02" y="302.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (45 samples, 0.03%)</title><rect x="322.9" y="1044" width="0.4" height="15.0" fill="rgb(230,203,50)" rx="2" ry="2" />
<text x="325.95" y="1054.5" ></text>
</g>
<g >
<title>python`call_function (114 samples, 0.07%)</title><rect x="1189.2" y="228" width="0.8" height="15.0" fill="rgb(211,38,13)" rx="2" ry="2" />
<text x="1192.21" y="238.5" ></text>
</g>
<g >
<title>python`_PyObject_GetMethod (1,069 samples, 0.63%)</title><rect x="38.6" y="836" width="7.4" height="15.0" fill="rgb(210,126,18)" rx="2" ry="2" />
<text x="41.60" y="846.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (305 samples, 0.18%)</title><rect x="894.2" y="324" width="2.2" height="15.0" fill="rgb(242,133,24)" rx="2" ry="2" />
<text x="897.23" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert (270 samples, 0.16%)</title><rect x="464.3" y="948" width="1.9" height="15.0" fill="rgb(213,8,24)" rx="2" ry="2" />
<text x="467.35" y="958.5" ></text>
</g>
<g >
<title>python`vgetargs1_impl (34 samples, 0.02%)</title><rect x="208.6" y="1028" width="0.2" height="15.0" fill="rgb(230,172,0)" rx="2" ry="2" />
<text x="211.58" y="1038.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::GrpcServer::PollEventsFromCompletionQueue (28,104 samples, 16.60%)</title><rect x="993.2" y="116" width="195.9" height="15.0" fill="rgb(209,54,34)" rx="2" ry="2" />
<text x="996.23" y="126.5" >_raylet.so`ray::rpc::Grpc..</text>
</g>
<g >
<title>python`lookdict (589 samples, 0.35%)</title><rect x="91.1" y="916" width="4.1" height="15.0" fill="rgb(252,4,47)" rx="2" ry="2" />
<text x="94.12" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`pollset_kick_ext (57 samples, 0.03%)</title><rect x="957.7" y="436" width="0.4" height="15.0" fill="rgb(217,183,3)" rx="2" ry="2" />
<text x="960.68" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_madvise_free_range_no_lock (45 samples, 0.03%)</title><rect x="795.8" y="484" width="0.3" height="15.0" fill="rgb(235,134,19)" rx="2" ry="2" />
<text x="798.81" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (190 samples, 0.11%)</title><rect x="464.8" y="1012" width="1.3" height="15.0" fill="rgb(233,176,52)" rx="2" ry="2" />
<text x="467.79" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (431 samples, 0.25%)</title><rect x="1095.2" y="276" width="3.0" height="15.0" fill="rgb(223,93,49)" rx="2" ry="2" />
<text x="1098.21" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (41 samples, 0.02%)</title><rect x="567.0" y="452" width="0.3" height="15.0" fill="rgb(210,11,8)" rx="2" ry="2" />
<text x="569.98" y="462.5" ></text>
</g>
<g >
<title>python`_PyGC_CollectNoFail (52 samples, 0.03%)</title><rect x="12.1" y="164" width="0.4" height="15.0" fill="rgb(232,224,25)" rx="2" ry="2" />
<text x="15.10" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_reattach_region (18 samples, 0.01%)</title><rect x="807.8" y="468" width="0.1" height="15.0" fill="rgb(209,195,23)" rx="2" ry="2" />
<text x="810.79" y="478.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (51 samples, 0.03%)</title><rect x="283.9" y="1012" width="0.4" height="15.0" fill="rgb(212,141,45)" rx="2" ry="2" />
<text x="286.93" y="1022.5" ></text>
</g>
<g >
<title>python`_PyObject_Realloc (16 samples, 0.01%)</title><rect x="240.0" y="980" width="0.1" height="15.0" fill="rgb(205,75,52)" rx="2" ry="2" />
<text x="242.95" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::TaskManager::CompletePendingTask (19 samples, 0.01%)</title><rect x="986.2" y="244" width="0.2" height="15.0" fill="rgb(228,55,51)" rx="2" ry="2" />
<text x="989.24" y="254.5" ></text>
</g>
<g >
<title>python`PyObject_GenericGetAttr (80 samples, 0.05%)</title><rect x="240.8" y="964" width="0.6" height="15.0" fill="rgb(208,110,39)" rx="2" ry="2" />
<text x="243.84" y="974.5" ></text>
</g>
<g >
<title>python`call_function (74,229 samples, 43.84%)</title><rect x="16.4" y="484" width="517.4" height="15.0" fill="rgb(249,224,21)" rx="2" ry="2" />
<text x="19.43" y="494.5" >python`call_function</text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (27 samples, 0.02%)</title><rect x="489.8" y="900" width="0.2" height="15.0" fill="rgb(228,206,50)" rx="2" ry="2" />
<text x="492.84" y="910.5" ></text>
</g>
<g >
<title>python`call_function (1,654 samples, 0.98%)</title><rect x="69.7" y="964" width="11.6" height="15.0" fill="rgb(224,39,50)" rx="2" ry="2" />
<text x="72.72" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (51 samples, 0.03%)</title><rect x="1036.3" y="308" width="0.3" height="15.0" fill="rgb(213,33,33)" rx="2" ry="2" />
<text x="1039.27" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (76 samples, 0.04%)</title><rect x="1045.8" y="372" width="0.6" height="15.0" fill="rgb(220,185,53)" rx="2" ry="2" />
<text x="1048.84" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::AddOutOfLineHelper (78 samples, 0.05%)</title><rect x="709.7" y="452" width="0.6" height="15.0" fill="rgb(231,88,41)" rx="2" ry="2" />
<text x="712.73" y="462.5" ></text>
</g>
<g >
<title>python`meth_dealloc (22 samples, 0.01%)</title><rect x="94.8" y="964" width="0.2" height="15.0" fill="rgb(209,225,53)" rx="2" ry="2" />
<text x="97.83" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (675 samples, 0.40%)</title><rect x="1161.3" y="228" width="4.7" height="15.0" fill="rgb(227,113,34)" rx="2" ry="2" />
<text x="1164.31" y="238.5" ></text>
</g>
<g >
<title>_raylet.so`std::__1::__function::__func::operator() (156 samples, 0.09%)</title><rect x="985.3" y="228" width="1.1" height="15.0" fill="rgb(245,2,48)" rx="2" ry="2" />
<text x="988.35" y="238.5" ></text>
</g>
<g >
<title>_pickle.cpython-39-darwin.so`_pickle_loads (72,654 samples, 42.91%)</title><rect x="16.5" y="772" width="506.4" height="15.0" fill="rgb(251,207,7)" rx="2" ry="2" />
<text x="19.52" y="782.5" >_pickle.cpython-39-darwin.so`_pickle_loads</text>
</g>
<g >
<title>_raylet.so`grpc_server_request_registered_call (32 samples, 0.02%)</title><rect x="984.3" y="260" width="0.2" height="15.0" fill="rgb(236,109,1)" rx="2" ry="2" />
<text x="987.29" y="270.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (16 samples, 0.01%)</title><rect x="1048.0" y="292" width="0.2" height="15.0" fill="rgb(241,179,17)" rx="2" ry="2" />
<text x="1051.04" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::Address* google::protobuf::Arena::CreateMaybeMessage (236 samples, 0.14%)</title><rect x="663.1" y="452" width="1.7" height="15.0" fill="rgb(246,170,49)" rx="2" ry="2" />
<text x="666.14" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (276 samples, 0.16%)</title><rect x="817.3" y="452" width="1.9" height="15.0" fill="rgb(242,195,30)" rx="2" ry="2" />
<text x="820.26" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (48 samples, 0.03%)</title><rect x="660.3" y="516" width="0.3" height="15.0" fill="rgb(215,96,14)" rx="2" ry="2" />
<text x="663.30" y="526.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::SubMessage::_InternalParse (3,836 samples, 2.27%)</title><rect x="1036.7" y="228" width="26.7" height="15.0" fill="rgb(226,49,1)" rx="2" ry="2" />
<text x="1039.68" y="238.5" >_..</text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::AddBorrowedObject (1,578 samples, 0.93%)</title><rect x="473.2" y="900" width="11.0" height="15.0" fill="rgb(216,189,5)" rx="2" ry="2" />
<text x="476.16" y="910.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (51 samples, 0.03%)</title><rect x="662.1" y="532" width="0.3" height="15.0" fill="rgb(211,69,29)" rx="2" ry="2" />
<text x="665.05" y="542.5" ></text>
</g>
<g >
<title>python`PyCMethod_New (29 samples, 0.02%)</title><rect x="239.0" y="964" width="0.2" height="15.0" fill="rgb(220,193,36)" rx="2" ry="2" />
<text x="241.96" y="974.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (474 samples, 0.28%)</title><rect x="280.6" y="1028" width="3.3" height="15.0" fill="rgb(229,135,12)" rx="2" ry="2" />
<text x="283.62" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (48 samples, 0.03%)</title><rect x="802.5" y="468" width="0.3" height="15.0" fill="rgb(231,215,48)" rx="2" ry="2" />
<text x="805.51" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (248 samples, 0.15%)</title><rect x="901.5" y="292" width="1.8" height="15.0" fill="rgb(213,143,22)" rx="2" ry="2" />
<text x="904.52" y="302.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`_kernelrpc_mach_vm_deallocate_trap (42 samples, 0.02%)</title><rect x="802.2" y="484" width="0.3" height="15.0" fill="rgb(248,224,47)" rx="2" ry="2" />
<text x="805.22" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_tp_richcompare_3ray_7_raylet_BaseID (518 samples, 0.31%)</title><rect x="91.4" y="948" width="3.6" height="15.0" fill="rgb(240,159,7)" rx="2" ry="2" />
<text x="94.41" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::WireFormatLite::VerifyUtf8String (77 samples, 0.05%)</title><rect x="969.6" y="484" width="0.5" height="15.0" fill="rgb(231,124,47)" rx="2" ry="2" />
<text x="972.59" y="494.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (98 samples, 0.06%)</title><rect x="932.4" y="292" width="0.7" height="15.0" fill="rgb(230,175,54)" rx="2" ry="2" />
<text x="935.42" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`init_header_frame_parser (155 samples, 0.09%)</title><rect x="997.6" y="244" width="1.1" height="15.0" fill="rgb(230,214,26)" rx="2" ry="2" />
<text x="1000.60" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (98 samples, 0.06%)</title><rect x="437.1" y="948" width="0.7" height="15.0" fill="rgb(225,1,28)" rx="2" ry="2" />
<text x="440.10" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (496 samples, 0.29%)</title><rect x="1118.0" y="196" width="3.4" height="15.0" fill="rgb(246,120,54)" rx="2" ry="2" />
<text x="1120.97" y="206.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__assign_external (231 samples, 0.14%)</title><rect x="423.8" y="948" width="1.6" height="15.0" fill="rgb(205,52,10)" rx="2" ry="2" />
<text x="426.76" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (202 samples, 0.12%)</title><rect x="659.2" y="484" width="1.4" height="15.0" fill="rgb(223,58,28)" rx="2" ry="2" />
<text x="662.23" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::ShutdownIfNeeded (15 samples, 0.01%)</title><rect x="819.9" y="404" width="0.1" height="15.0" fill="rgb(240,209,17)" rx="2" ry="2" />
<text x="822.87" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (158 samples, 0.09%)</title><rect x="1048.5" y="324" width="1.1" height="15.0" fill="rgb(205,129,16)" rx="2" ry="2" />
<text x="1051.55" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`cq_end_op_for_next(grpc_completion_queue*, void*, grpc_error*, void (*) (65 samples, 0.04%)</title><rect x="957.6" y="420" width="0.5" height="15.0" fill="rgb(223,144,32)" rx="2" ry="2" />
<text x="960.63" y="430.5" ></text>
</g>
<g >
<title>python`PyCMethod_New (117 samples, 0.07%)</title><rect x="60.6" y="980" width="0.8" height="15.0" fill="rgb(251,186,46)" rx="2" ry="2" />
<text x="63.57" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (279 samples, 0.16%)</title><rect x="720.1" y="516" width="1.9" height="15.0" fill="rgb(205,199,10)" rx="2" ry="2" />
<text x="723.08" y="526.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (40 samples, 0.02%)</title><rect x="571.0" y="420" width="0.3" height="15.0" fill="rgb(244,187,35)" rx="2" ry="2" />
<text x="574.02" y="430.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (219 samples, 0.13%)</title><rect x="1163.3" y="244" width="1.6" height="15.0" fill="rgb(221,190,35)" rx="2" ry="2" />
<text x="1166.35" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`pollset_kick_ext (42 samples, 0.02%)</title><rect x="980.6" y="468" width="0.3" height="15.0" fill="rgb(218,163,39)" rx="2" ry="2" />
<text x="983.59" y="478.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry (3,253 samples, 1.92%)</title><rect x="933.6" y="260" width="22.7" height="15.0" fill="rgb(249,6,45)" rx="2" ry="2" />
<text x="936.64" y="270.5" >_..</text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerPlasmaStoreProvider::~CoreWorkerPlasmaStoreProvider (17 samples, 0.01%)</title><rect x="16.2" y="372" width="0.1" height="15.0" fill="rgb(207,67,34)" rx="2" ry="2" />
<text x="19.22" y="382.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (106 samples, 0.06%)</title><rect x="379.5" y="948" width="0.8" height="15.0" fill="rgb(233,75,28)" rx="2" ry="2" />
<text x="382.53" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (119 samples, 0.07%)</title><rect x="1097.4" y="292" width="0.8" height="15.0" fill="rgb(245,83,54)" rx="2" ry="2" />
<text x="1100.39" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (23 samples, 0.01%)</title><rect x="1021.5" y="196" width="0.2" height="15.0" fill="rgb(227,83,0)" rx="2" ry="2" />
<text x="1024.53" y="206.5" ></text>
</g>
<g >
<title>libc++.1.dylib`std::__1::basic_string::__assign_external (582 samples, 0.34%)</title><rect x="1031.1" y="244" width="4.0" height="15.0" fill="rgb(228,119,49)" rx="2" ry="2" />
<text x="1034.06" y="254.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (334 samples, 0.20%)</title><rect x="742.6" y="532" width="2.3" height="15.0" fill="rgb(205,1,3)" rx="2" ry="2" />
<text x="745.57" y="542.5" ></text>
</g>
<g >
<title>python`PyFrame_New (188 samples, 0.11%)</title><rect x="129.2" y="996" width="1.3" height="15.0" fill="rgb(222,100,45)" rx="2" ry="2" />
<text x="132.20" y="1006.5" ></text>
</g>
<g >
<title>python`_PyFrame_New_NoTrack (33 samples, 0.02%)</title><rect x="520.3" y="820" width="0.3" height="15.0" fill="rgb(213,96,10)" rx="2" ry="2" />
<text x="523.33" y="830.5" ></text>
</g>
<g >
<title>_raylet.so`ray::BaseID::FromBinary (129 samples, 0.08%)</title><rect x="946.6" y="276" width="0.9" height="15.0" fill="rgb(247,192,2)" rx="2" ry="2" />
<text x="949.61" y="286.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (130 samples, 0.08%)</title><rect x="323.3" y="1044" width="0.9" height="15.0" fill="rgb(247,194,23)" rx="2" ry="2" />
<text x="326.26" y="1054.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (27 samples, 0.02%)</title><rect x="452.6" y="1060" width="0.2" height="15.0" fill="rgb(225,182,27)" rx="2" ry="2" />
<text x="455.65" y="1070.5" ></text>
</g>
<g >
<title>python`builtin_hasattr (157 samples, 0.09%)</title><rect x="70.6" y="996" width="1.1" height="15.0" fill="rgb(252,104,44)" rx="2" ry="2" />
<text x="73.65" y="1006.5" ></text>
</g>
<g >
<title>python`_PyObject_LookupAttr (135 samples, 0.08%)</title><rect x="70.8" y="1012" width="0.9" height="15.0" fill="rgb(235,136,3)" rx="2" ry="2" />
<text x="73.80" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (610 samples, 0.36%)</title><rect x="1086.7" y="244" width="4.2" height="15.0" fill="rgb(254,75,41)" rx="2" ry="2" />
<text x="1089.68" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_maybe_complete_recv_message (32 samples, 0.02%)</title><rect x="997.1" y="228" width="0.2" height="15.0" fill="rgb(250,129,15)" rx="2" ry="2" />
<text x="1000.11" y="238.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (686 samples, 0.41%)</title><rect x="102.0" y="884" width="4.7" height="15.0" fill="rgb(227,213,39)" rx="2" ry="2" />
<text x="104.96" y="894.5" ></text>
</g>
<g >
<title>_raylet.so`parse_indexed_field (20 samples, 0.01%)</title><rect x="999.1" y="276" width="0.1" height="15.0" fill="rgb(249,102,39)" rx="2" ry="2" />
<text x="1002.06" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`default_zone_free_definite_size (33 samples, 0.02%)</title><rect x="1107.3" y="228" width="0.2" height="15.0" fill="rgb(209,17,54)" rx="2" ry="2" />
<text x="1110.25" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (84 samples, 0.05%)</title><rect x="895.8" y="372" width="0.5" height="15.0" fill="rgb(217,185,17)" rx="2" ry="2" />
<text x="898.76" y="382.5" ></text>
</g>
<g >
<title>python`tupledealloc (28 samples, 0.02%)</title><rect x="517.0" y="852" width="0.2" height="15.0" fill="rgb(243,199,4)" rx="2" ry="2" />
<text x="520.00" y="862.5" ></text>
</g>
<g >
<title>_pickle.cpython-39-darwin.so`Unpickler_dealloc (260 samples, 0.15%)</title><rect x="16.5" y="788" width="1.8" height="15.0" fill="rgb(243,63,14)" rx="2" ry="2" />
<text x="19.53" y="798.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (281 samples, 0.17%)</title><rect x="642.0" y="500" width="1.9" height="15.0" fill="rgb(249,90,2)" rx="2" ry="2" />
<text x="644.99" y="510.5" ></text>
</g>
<g >
<title>libsystem_notify.dylib`notify_check (21 samples, 0.01%)</title><rect x="987.7" y="276" width="0.2" height="15.0" fill="rgb(228,84,18)" rx="2" ry="2" />
<text x="990.74" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (122 samples, 0.07%)</title><rect x="797.0" y="468" width="0.9" height="15.0" fill="rgb(250,166,7)" rx="2" ry="2" />
<text x="800.05" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (37 samples, 0.02%)</title><rect x="667.3" y="564" width="0.3" height="15.0" fill="rgb(206,146,13)" rx="2" ry="2" />
<text x="670.32" y="574.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (70 samples, 0.04%)</title><rect x="902.7" y="324" width="0.5" height="15.0" fill="rgb(254,165,24)" rx="2" ry="2" />
<text x="905.69" y="334.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (193 samples, 0.11%)</title><rect x="453.5" y="948" width="1.4" height="15.0" fill="rgb(215,117,44)" rx="2" ry="2" />
<text x="456.54" y="958.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ServerCallImpl::SendReply (21 samples, 0.01%)</title><rect x="831.2" y="244" width="0.2" height="15.0" fill="rgb(251,14,34)" rx="2" ry="2" />
<text x="834.24" y="254.5" ></text>
</g>
<g >
<title>python`_PySys_Audit (43 samples, 0.03%)</title><rect x="136.2" y="1060" width="0.3" height="15.0" fill="rgb(221,212,8)" rx="2" ry="2" />
<text x="139.19" y="1070.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_mutexwait (92 samples, 0.05%)</title><rect x="932.4" y="308" width="0.7" height="15.0" fill="rgb(228,217,2)" rx="2" ry="2" />
<text x="935.45" y="318.5" ></text>
</g>
<g >
<title>python`call_function (520 samples, 0.31%)</title><rect x="106.8" y="884" width="3.6" height="15.0" fill="rgb(252,16,39)" rx="2" ry="2" />
<text x="109.77" y="894.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (1,483 samples, 0.88%)</title><rect x="1176.9" y="196" width="10.3" height="15.0" fill="rgb(208,62,46)" rx="2" ry="2" />
<text x="1179.88" y="206.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__psynch_mutexwait (49 samples, 0.03%)</title><rect x="695.6" y="580" width="0.4" height="15.0" fill="rgb(254,74,49)" rx="2" ry="2" />
<text x="698.63" y="590.5" ></text>
</g>
<g >
<title>_raylet.so`boost::asio::detail::timer_queue::get_ready_timers (105 samples, 0.06%)</title><rect x="987.0" y="196" width="0.7" height="15.0" fill="rgb(208,112,49)" rx="2" ry="2" />
<text x="989.96" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_deframe_unprocessed_incoming_frames (26 samples, 0.02%)</title><rect x="997.1" y="244" width="0.2" height="15.0" fill="rgb(210,26,39)" rx="2" ry="2" />
<text x="1000.12" y="254.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_perform_read (22 samples, 0.01%)</title><rect x="830.2" y="196" width="0.1" height="15.0" fill="rgb(244,16,24)" rx="2" ry="2" />
<text x="833.20" y="206.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (191 samples, 0.11%)</title><rect x="431.3" y="980" width="1.3" height="15.0" fill="rgb(216,78,15)" rx="2" ry="2" />
<text x="434.31" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::Status std::__1::__invoke_void_return_wrapper::__call (39 samples, 0.02%)</title><rect x="957.0" y="308" width="0.3" height="15.0" fill="rgb(246,112,2)" rx="2" ry="2" />
<text x="960.03" y="318.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (52 samples, 0.03%)</title><rect x="471.3" y="948" width="0.4" height="15.0" fill="rgb(207,144,1)" rx="2" ry="2" />
<text x="474.31" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (43 samples, 0.03%)</title><rect x="788.3" y="484" width="0.3" height="15.0" fill="rgb(251,161,0)" rx="2" ry="2" />
<text x="791.32" y="494.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (119 samples, 0.07%)</title><rect x="1093.5" y="292" width="0.8" height="15.0" fill="rgb(244,12,21)" rx="2" ry="2" />
<text x="1096.48" y="302.5" ></text>
</g>
<g >
<title>python`_PyObject_Malloc (48 samples, 0.03%)</title><rect x="243.4" y="996" width="0.4" height="15.0" fill="rgb(245,54,2)" rx="2" ry="2" />
<text x="246.45" y="1006.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (393 samples, 0.23%)</title><rect x="1028.1" y="292" width="2.7" height="15.0" fill="rgb(237,6,26)" rx="2" ry="2" />
<text x="1031.09" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (569 samples, 0.34%)</title><rect x="1110.5" y="244" width="3.9" height="15.0" fill="rgb(252,229,3)" rx="2" ry="2" />
<text x="1113.46" y="254.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (343 samples, 0.20%)</title><rect x="722.5" y="516" width="2.4" height="15.0" fill="rgb(222,175,39)" rx="2" ry="2" />
<text x="725.50" y="526.5" ></text>
</g>
<g >
<title>python`list_dealloc (163 samples, 0.10%)</title><rect x="336.1" y="964" width="1.1" height="15.0" fill="rgb(244,206,17)" rx="2" ry="2" />
<text x="339.10" y="974.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (1,348 samples, 0.80%)</title><rect x="786.7" y="468" width="9.4" height="15.0" fill="rgb(215,147,15)" rx="2" ry="2" />
<text x="789.73" y="478.5" ></text>
</g>
<g >
<title>python`_PyObject_LookupAttr (417 samples, 0.25%)</title><rect x="107.2" y="932" width="3.0" height="15.0" fill="rgb(210,137,2)" rx="2" ry="2" />
<text x="110.25" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (47 samples, 0.03%)</title><rect x="908.7" y="324" width="0.4" height="15.0" fill="rgb(215,41,35)" rx="2" ry="2" />
<text x="911.75" y="334.5" ></text>
</g>
<g >
<title>python`PyBytes_FromStringAndSize (99 samples, 0.06%)</title><rect x="79.7" y="1012" width="0.7" height="15.0" fill="rgb(253,32,12)" rx="2" ry="2" />
<text x="82.67" y="1022.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (145 samples, 0.09%)</title><rect x="903.4" y="276" width="1.0" height="15.0" fill="rgb(249,186,47)" rx="2" ry="2" />
<text x="906.36" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (48 samples, 0.03%)</title><rect x="577.2" y="388" width="0.3" height="15.0" fill="rgb(246,46,48)" rx="2" ry="2" />
<text x="580.19" y="398.5" ></text>
</g>
<g >
<title>_raylet.so`gpr_mu_unlock (17 samples, 0.01%)</title><rect x="995.9" y="180" width="0.1" height="15.0" fill="rgb(236,31,49)" rx="2" ry="2" />
<text x="998.88" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (44 samples, 0.03%)</title><rect x="230.2" y="1060" width="0.3" height="15.0" fill="rgb(246,138,32)" rx="2" ry="2" />
<text x="233.16" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::PubMessage* google::protobuf::Arena::CreateMaybeMessage (340 samples, 0.20%)</title><rect x="710.3" y="452" width="2.4" height="15.0" fill="rgb(251,222,46)" rx="2" ry="2" />
<text x="713.30" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (1,465 samples, 0.87%)</title><rect x="996.0" y="180" width="10.2" height="15.0" fill="rgb(229,161,49)" rx="2" ry="2" />
<text x="999.04" y="190.5" ></text>
</g>
<g >
<title>python`PyList_Append (30 samples, 0.02%)</title><rect x="377.4" y="948" width="0.3" height="15.0" fill="rgb(230,208,7)" rx="2" ry="2" />
<text x="380.44" y="958.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (19 samples, 0.01%)</title><rect x="1189.2" y="436" width="0.1" height="15.0" fill="rgb(239,6,52)" rx="2" ry="2" />
<text x="1192.21" y="446.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (47 samples, 0.03%)</title><rect x="1189.2" y="276" width="0.3" height="15.0" fill="rgb(247,223,19)" rx="2" ry="2" />
<text x="1192.21" y="286.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (205 samples, 0.12%)</title><rect x="497.7" y="932" width="1.4" height="15.0" fill="rgb(207,195,5)" rx="2" ry="2" />
<text x="500.70" y="942.5" ></text>
</g>
<g >
<title>python`method_vectorcall_NOARGS (495 samples, 0.29%)</title><rect x="12.9" y="292" width="3.4" height="15.0" fill="rgb(214,74,39)" rx="2" ry="2" />
<text x="15.90" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (58 samples, 0.03%)</title><rect x="478.9" y="1060" width="0.4" height="15.0" fill="rgb(227,17,24)" rx="2" ry="2" />
<text x="481.91" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_stream::grpc_chttp2_stream (22 samples, 0.01%)</title><rect x="998.0" y="356" width="0.2" height="15.0" fill="rgb(253,42,46)" rx="2" ry="2" />
<text x="1001.00" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::RepeatedPtrField::~RepeatedPtrField (16,854 samples, 9.95%)</title><rect x="1070.2" y="164" width="117.5" height="15.0" fill="rgb(242,108,35)" rx="2" ry="2" />
<text x="1073.23" y="174.5" >_raylet.so`goo..</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (197 samples, 0.12%)</title><rect x="482.3" y="1028" width="1.4" height="15.0" fill="rgb(247,132,21)" rx="2" ry="2" />
<text x="485.34" y="1038.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (165 samples, 0.10%)</title><rect x="1053.2" y="292" width="1.1" height="15.0" fill="rgb(248,120,8)" rx="2" ry="2" />
<text x="1056.19" y="302.5" ></text>
</g>
<g >
<title>_raylet.so`grpc::internal::CallOpSet::RunInterceptorsPostRecv (33 samples, 0.02%)</title><rect x="1066.4" y="164" width="0.3" height="15.0" fill="rgb(224,94,49)" rx="2" ry="2" />
<text x="1069.42" y="174.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (54 samples, 0.03%)</title><rect x="486.9" y="916" width="0.4" height="15.0" fill="rgb(225,51,26)" rx="2" ry="2" />
<text x="489.91" y="926.5" ></text>
</g>
<g >
<title>python`_PyTuple_FromArray (87 samples, 0.05%)</title><rect x="516.1" y="868" width="0.6" height="15.0" fill="rgb(214,142,43)" rx="2" ry="2" />
<text x="519.06" y="878.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`__ulock_wait (19 samples, 0.01%)</title><rect x="752.5" y="532" width="0.1" height="15.0" fill="rgb(228,175,44)" rx="2" ry="2" />
<text x="755.48" y="542.5" ></text>
</g>
<g >
<title>python`method_vectorcall (25 samples, 0.01%)</title><rect x="1189.6" y="484" width="0.1" height="15.0" fill="rgb(237,110,43)" rx="2" ry="2" />
<text x="1192.55" y="494.5" ></text>
</g>
<g >
<title>python`_PyObject_Free (45 samples, 0.03%)</title><rect x="17.4" y="804" width="0.3" height="15.0" fill="rgb(244,140,28)" rx="2" ry="2" />
<text x="20.38" y="814.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish (55 samples, 0.03%)</title><rect x="708.2" y="484" width="0.4" height="15.0" fill="rgb(253,193,46)" rx="2" ry="2" />
<text x="711.23" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::VerifyUTF8 (61 samples, 0.04%)</title><rect x="1062.6" y="292" width="0.5" height="15.0" fill="rgb(238,229,17)" rx="2" ry="2" />
<text x="1065.63" y="302.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (19 samples, 0.01%)</title><rect x="998.8" y="340" width="0.1" height="15.0" fill="rgb(248,150,2)" rx="2" ry="2" />
<text x="1001.77" y="350.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (74,171 samples, 43.81%)</title><rect x="16.4" y="516" width="517.0" height="15.0" fill="rgb(238,180,37)" rx="2" ry="2" />
<text x="19.43" y="526.5" >python`_PyEval_EvalFrameDefault</text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (208 samples, 0.12%)</title><rect x="775.5" y="452" width="1.5" height="15.0" fill="rgb(225,143,30)" rx="2" ry="2" />
<text x="778.50" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free_tiny (54 samples, 0.03%)</title><rect x="892.2" y="276" width="0.4" height="15.0" fill="rgb(205,192,25)" rx="2" ry="2" />
<text x="895.20" y="286.5" ></text>
</g>
<g >
<title>_raylet.so`pollset_work (1,852 samples, 1.09%)</title><rect x="994.2" y="164" width="12.9" height="15.0" fill="rgb(213,30,54)" rx="2" ry="2" />
<text x="997.23" y="174.5" ></text>
</g>
<g >
<title>_pickle.cpython-39-darwin.so`load_counted_binbytes (792 samples, 0.47%)</title><rect x="22.9" y="804" width="5.5" height="15.0" fill="rgb(210,171,4)" rx="2" ry="2" />
<text x="25.89" y="814.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Lock (102 samples, 0.06%)</title><rect x="681.4" y="436" width="0.7" height="15.0" fill="rgb(236,93,41)" rx="2" ry="2" />
<text x="684.41" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_free_definite_size (20 samples, 0.01%)</title><rect x="767.4" y="484" width="0.1" height="15.0" fill="rgb(225,1,10)" rx="2" ry="2" />
<text x="770.38" y="494.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_impl::ServerContext::CompletionOp::FillOps (58 samples, 0.03%)</title><rect x="1021.0" y="196" width="0.4" height="15.0" fill="rgb(238,220,48)" rx="2" ry="2" />
<text x="1024.04" y="206.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::InternalExtend (64 samples, 0.04%)</title><rect x="1022.9" y="228" width="0.4" height="15.0" fill="rgb(206,45,19)" rx="2" ry="2" />
<text x="1025.88" y="238.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_no_lock (575 samples, 0.34%)</title><rect x="562.7" y="452" width="4.0" height="15.0" fill="rgb(235,127,45)" rx="2" ry="2" />
<text x="565.74" y="462.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (251 samples, 0.15%)</title><rect x="922.7" y="356" width="1.8" height="15.0" fill="rgb(242,158,14)" rx="2" ry="2" />
<text x="925.72" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::InlineGreedyStringParser (239 samples, 0.14%)</title><rect x="423.7" y="932" width="1.7" height="15.0" fill="rgb(231,15,51)" rx="2" ry="2" />
<text x="426.71" y="942.5" ></text>
</g>
<g >
<title>python`call_function (74,249 samples, 43.85%)</title><rect x="16.4" y="292" width="517.5" height="15.0" fill="rgb(208,84,20)" rx="2" ry="2" />
<text x="19.38" y="302.5" >python`call_function</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (182 samples, 0.11%)</title><rect x="464.8" y="1028" width="1.3" height="15.0" fill="rgb(205,155,49)" rx="2" ry="2" />
<text x="467.85" y="1038.5" ></text>
</g>
<g >
<title>python`_PyObject_GenericGetAttrWithDict (190 samples, 0.11%)</title><rect x="44.6" y="868" width="1.4" height="15.0" fill="rgb(207,92,11)" rx="2" ry="2" />
<text x="47.63" y="878.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath (941 samples, 0.56%)</title><rect x="1091.7" y="244" width="6.6" height="15.0" fill="rgb(232,114,32)" rx="2" ry="2" />
<text x="1094.71" y="254.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalCode (313 samples, 0.18%)</title><rect x="524.9" y="916" width="2.2" height="15.0" fill="rgb(244,205,33)" rx="2" ry="2" />
<text x="527.92" y="926.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_malloc_should_clear (142 samples, 0.08%)</title><rect x="908.1" y="292" width="1.0" height="15.0" fill="rgb(216,28,18)" rx="2" ry="2" />
<text x="911.09" y="302.5" ></text>
</g>
<g >
<title>python`call_function (65 samples, 0.04%)</title><rect x="1189.5" y="324" width="0.5" height="15.0" fill="rgb(236,173,40)" rx="2" ry="2" />
<text x="1192.55" y="334.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (20 samples, 0.01%)</title><rect x="985.4" y="372" width="0.2" height="15.0" fill="rgb(205,96,3)" rx="2" ry="2" />
<text x="988.44" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`init_header_frame_parser (17 samples, 0.01%)</title><rect x="830.2" y="212" width="0.1" height="15.0" fill="rgb(223,200,13)" rx="2" ry="2" />
<text x="833.20" y="222.5" ></text>
</g>
<g >
<title>python`list_dealloc (49 samples, 0.03%)</title><rect x="380.8" y="948" width="0.4" height="15.0" fill="rgb(223,19,37)" rx="2" ry="2" />
<text x="383.82" y="958.5" ></text>
</g>
<g >
<title>python`PyObject_RichCompare (93 samples, 0.05%)</title><rect x="58.7" y="964" width="0.7" height="15.0" fill="rgb(215,53,10)" rx="2" ry="2" />
<text x="61.72" y="974.5" ></text>
</g>
<g >
<title>python`do_mkvalue (22 samples, 0.01%)</title><rect x="531.6" y="868" width="0.2" height="15.0" fill="rgb(205,170,25)" rx="2" ry="2" />
<text x="534.60" y="878.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (20 samples, 0.01%)</title><rect x="1189.6" y="660" width="0.1" height="15.0" fill="rgb(216,140,30)" rx="2" ry="2" />
<text x="1192.57" y="670.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (153 samples, 0.09%)</title><rect x="863.8" y="308" width="1.1" height="15.0" fill="rgb(244,179,34)" rx="2" ry="2" />
<text x="866.80" y="318.5" ></text>
</g>
<g >
<title>_raylet.so`exec_ctx_run (76 samples, 0.04%)</title><rect x="999.9" y="212" width="0.6" height="15.0" fill="rgb(222,160,16)" rx="2" ry="2" />
<text x="1002.93" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_core::ExecCtx::Flush (150 samples, 0.09%)</title><rect x="1068.5" y="180" width="1.1" height="15.0" fill="rgb(220,101,34)" rx="2" ry="2" />
<text x="1071.52" y="190.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (56 samples, 0.03%)</title><rect x="471.3" y="932" width="0.4" height="15.0" fill="rgb(242,28,39)" rx="2" ry="2" />
<text x="474.28" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorker::RunIOService (22,936 samples, 13.55%)</title><rect x="830.9" y="116" width="159.9" height="15.0" fill="rgb(224,20,25)" rx="2" ry="2" />
<text x="833.91" y="126.5" >_raylet.so`ray::core..</text>
</g>
<g >
<title>python`call_function (74,245 samples, 43.85%)</title><rect x="16.4" y="404" width="517.4" height="15.0" fill="rgb(226,18,45)" rx="2" ry="2" />
<text x="19.39" y="414.5" >python`call_function</text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_remove_ptr (58 samples, 0.03%)</title><rect x="649.4" y="500" width="0.4" height="15.0" fill="rgb(254,75,26)" rx="2" ry="2" />
<text x="652.38" y="510.5" ></text>
</g>
<g >
<title>libsystem_pthread.dylib`pthread_getspecific (15 samples, 0.01%)</title><rect x="1020.7" y="164" width="0.1" height="15.0" fill="rgb(223,103,40)" rx="2" ry="2" />
<text x="1023.69" y="174.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::Publisher::~Publisher (68 samples, 0.04%)</title><rect x="15.3" y="372" width="0.5" height="15.0" fill="rgb(241,98,26)" rx="2" ry="2" />
<text x="18.34" y="382.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_should_clear (158 samples, 0.09%)</title><rect x="610.2" y="484" width="1.1" height="15.0" fill="rgb(222,224,48)" rx="2" ry="2" />
<text x="613.17" y="494.5" ></text>
</g>
<g >
<title>python`_PyEval_EvalFrameDefault (23 samples, 0.01%)</title><rect x="1189.6" y="580" width="0.1" height="15.0" fill="rgb(250,86,13)" rx="2" ry="2" />
<text x="1192.55" y="590.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::CoreWorkerMemoryStore::Get (16 samples, 0.01%)</title><rect x="533.5" y="548" width="0.1" height="15.0" fill="rgb(246,118,6)" rx="2" ry="2" />
<text x="536.50" y="558.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (15 samples, 0.01%)</title><rect x="72.8" y="1044" width="0.1" height="15.0" fill="rgb(228,125,19)" rx="2" ry="2" />
<text x="75.78" y="1054.5" ></text>
</g>
<g >
<title>python`lock_acquire_parse_args (276 samples, 0.16%)</title><rect x="83.9" y="948" width="1.9" height="15.0" fill="rgb(216,196,51)" rx="2" ry="2" />
<text x="86.90" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`_malloc_zone_malloc (144 samples, 0.09%)</title><rect x="1051.7" y="340" width="1.0" height="15.0" fill="rgb(234,83,38)" rx="2" ry="2" />
<text x="1054.67" y="350.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_pw_3ray_7_raylet_21MessagePackSerializer_3loads (1,454 samples, 0.86%)</title><rect x="522.9" y="740" width="10.2" height="15.0" fill="rgb(207,119,33)" rx="2" ry="2" />
<text x="525.92" y="750.5" ></text>
</g>
<g >
<title>python`lookdict_unicode (18 samples, 0.01%)</title><rect x="550.3" y="372" width="0.1" height="15.0" fill="rgb(233,206,20)" rx="2" ry="2" />
<text x="553.25" y="382.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::UnlockSlow (77 samples, 0.05%)</title><rect x="697.2" y="436" width="0.5" height="15.0" fill="rgb(234,113,50)" rx="2" ry="2" />
<text x="700.15" y="446.5" ></text>
</g>
<g >
<title>python`list_subscript (147 samples, 0.09%)</title><rect x="525.7" y="948" width="1.0" height="15.0" fill="rgb(218,50,23)" rx="2" ry="2" />
<text x="528.71" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_size (27 samples, 0.02%)</title><rect x="485.6" y="964" width="0.2" height="15.0" fill="rgb(248,114,7)" rx="2" ry="2" />
<text x="488.60" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`__pyx_tp_dealloc_3ray_7_raylet_ObjectRef (39,917 samples, 23.58%)</title><rect x="551.5" y="308" width="278.2" height="15.0" fill="rgb(227,214,10)" rx="2" ry="2" />
<text x="554.49" y="318.5" >_raylet.so`__pyx_tp_dealloc_3ray_7_ra..</text>
</g>
<g >
<title>libc++abi.dylib`operator new (390 samples, 0.23%)</title><rect x="222.6" y="980" width="2.7" height="15.0" fill="rgb(219,140,21)" rx="2" ry="2" />
<text x="225.56" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_list_add_ptr (55 samples, 0.03%)</title><rect x="486.5" y="964" width="0.3" height="15.0" fill="rgb(252,86,29)" rx="2" ry="2" />
<text x="489.46" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find (443 samples, 0.26%)</title><rect x="442.6" y="932" width="3.1" height="15.0" fill="rgb(210,227,6)" rx="2" ry="2" />
<text x="445.62" y="942.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (59 samples, 0.03%)</title><rect x="1154.4" y="244" width="0.4" height="15.0" fill="rgb(208,41,41)" rx="2" ry="2" />
<text x="1157.38" y="254.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (148 samples, 0.09%)</title><rect x="332.1" y="1092" width="1.1" height="15.0" fill="rgb(254,23,36)" rx="2" ry="2" />
<text x="335.14" y="1102.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (304 samples, 0.18%)</title><rect x="922.4" y="340" width="2.1" height="15.0" fill="rgb(205,159,18)" rx="2" ry="2" />
<text x="925.40" y="350.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (67 samples, 0.04%)</title><rect x="1189.5" y="292" width="0.5" height="15.0" fill="rgb(209,28,19)" rx="2" ry="2" />
<text x="1192.53" y="302.5" ></text>
</g>
<g >
<title>python`PyMember_GetOne (1,524 samples, 0.90%)</title><rect x="285.7" y="980" width="10.6" height="15.0" fill="rgb(250,1,23)" rx="2" ry="2" />
<text x="288.72" y="990.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::Publisher::Publish (31 samples, 0.02%)</title><rect x="820.0" y="404" width="0.2" height="15.0" fill="rgb(254,103,52)" rx="2" ry="2" />
<text x="822.97" y="414.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memset$VARIANT$Haswell (15 samples, 0.01%)</title><rect x="644.7" y="468" width="0.1" height="15.0" fill="rgb(222,156,49)" rx="2" ry="2" />
<text x="647.71" y="478.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_free_detach_region (16 samples, 0.01%)</title><rect x="1156.5" y="260" width="0.1" height="15.0" fill="rgb(227,154,41)" rx="2" ry="2" />
<text x="1159.53" y="270.5" ></text>
</g>
<g >
<title>python`_PyObject_GC_Alloc (57 samples, 0.03%)</title><rect x="61.0" y="996" width="0.4" height="15.0" fill="rgb(228,30,23)" rx="2" ry="2" />
<text x="63.98" y="1006.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::AddBorrowedObject (33 samples, 0.02%)</title><rect x="490.4" y="884" width="0.2" height="15.0" fill="rgb(224,160,12)" rx="2" ry="2" />
<text x="493.37" y="894.5" ></text>
</g>
<g >
<title>python`lookdict_split (75 samples, 0.04%)</title><rect x="43.7" y="852" width="0.5" height="15.0" fill="rgb(254,186,19)" rx="2" ry="2" />
<text x="46.73" y="862.5" ></text>
</g>
<g >
<title>python`vgetargskeywords (202 samples, 0.12%)</title><rect x="84.4" y="980" width="1.4" height="15.0" fill="rgb(221,141,45)" rx="2" ry="2" />
<text x="87.37" y="990.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (133 samples, 0.08%)</title><rect x="721.1" y="548" width="0.9" height="15.0" fill="rgb(215,164,37)" rx="2" ry="2" />
<text x="724.10" y="558.5" ></text>
</g>
<g >
<title>_raylet.so`ray::rpc::ObjectReference::_InternalSerialize (450 samples, 0.27%)</title><rect x="968.5" y="452" width="3.1" height="15.0" fill="rgb(216,131,10)" rx="2" ry="2" />
<text x="971.51" y="462.5" ></text>
</g>
<g >
<title>_raylet.so`google::protobuf::internal::ArenaStringPtr::Set (246 samples, 0.15%)</title><rect x="659.0" y="436" width="1.7" height="15.0" fill="rgb(232,17,27)" rx="2" ry="2" />
<text x="662.00" y="446.5" ></text>
</g>
<g >
<title>_raylet.so`ray::pubsub::Publisher::~Publisher (68 samples, 0.04%)</title><rect x="15.3" y="356" width="0.5" height="15.0" fill="rgb(252,131,15)" rx="2" ry="2" />
<text x="18.34" y="366.5" ></text>
</g>
<g >
<title>_raylet.so`ray::MurmurHash64A (19 samples, 0.01%)</title><rect x="857.1" y="308" width="0.2" height="15.0" fill="rgb(242,90,3)" rx="2" ry="2" />
<text x="860.12" y="318.5" ></text>
</g>
<g >
<title>python`_PyFunction_Vectorcall (20 samples, 0.01%)</title><rect x="1189.2" y="324" width="0.2" height="15.0" fill="rgb(245,177,2)" rx="2" ry="2" />
<text x="1192.21" y="334.5" ></text>
</g>
<g >
<title>python`frame_dealloc (19 samples, 0.01%)</title><rect x="81.7" y="948" width="0.1" height="15.0" fill="rgb(253,185,18)" rx="2" ry="2" />
<text x="84.70" y="958.5" ></text>
</g>
<g >
<title>libsystem_kernel.dylib`_kernelrpc_mach_vm_deallocate_trap (33 samples, 0.02%)</title><rect x="1188.4" y="212" width="0.3" height="15.0" fill="rgb(213,47,17)" rx="2" ry="2" />
<text x="1191.42" y="222.5" ></text>
</g>
<g >
<title>_raylet.so`absl::lts_20210324::Mutex::Unlock (27 samples, 0.02%)</title><rect x="463.8" y="932" width="0.2" height="15.0" fill="rgb(224,148,33)" rx="2" ry="2" />
<text x="466.80" y="942.5" ></text>
</g>
<g >
<title>_raylet.so`plasma::PlasmaClient::Impl::~Impl (17 samples, 0.01%)</title><rect x="16.2" y="404" width="0.1" height="15.0" fill="rgb(220,212,48)" rx="2" ry="2" />
<text x="19.22" y="414.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`szone_size (87 samples, 0.05%)</title><rect x="388.8" y="916" width="0.6" height="15.0" fill="rgb(236,75,27)" rx="2" ry="2" />
<text x="391.78" y="926.5" ></text>
</g>
<g >
<title>_raylet.so`ray::core::ReferenceCounter::HasReference (79 samples, 0.05%)</title><rect x="461.4" y="932" width="0.5" height="15.0" fill="rgb(248,227,40)" rx="2" ry="2" />
<text x="464.36" y="942.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`_platform_memcmp (186 samples, 0.11%)</title><rect x="213.9" y="1028" width="1.3" height="15.0" fill="rgb(225,91,45)" rx="2" ry="2" />
<text x="216.90" y="1038.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`free (119 samples, 0.07%)</title><rect x="655.4" y="436" width="0.9" height="15.0" fill="rgb(216,133,51)" rx="2" ry="2" />
<text x="658.43" y="446.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`tiny_malloc_from_free_list (52 samples, 0.03%)</title><rect x="1054.0" y="356" width="0.3" height="15.0" fill="rgb(243,58,33)" rx="2" ry="2" />
<text x="1056.97" y="366.5" ></text>
</g>
<g >
<title>python`pymalloc_alloc (121 samples, 0.07%)</title><rect x="326.6" y="1060" width="0.8" height="15.0" fill="rgb(227,207,21)" rx="2" ry="2" />
<text x="329.60" y="1070.5" ></text>
</g>
<g >
<title>_raylet.so`grpc_chttp2_parsing_accept_stream (141 samples, 0.08%)</title><rect x="997.7" y="260" width="0.9" height="15.0" fill="rgb(240,23,4)" rx="2" ry="2" />
<text x="1000.67" y="270.5" ></text>
</g>
<g >
<title>libsystem_platform.dylib`DYLD-STUB$$_platform_memmove (17 samples, 0.01%)</title><rect x="237.6" y="964" width="0.1" height="15.0" fill="rgb(248,52,49)" rx="2" ry="2" />
<text x="240.56" y="974.5" ></text>
</g>
<g >
<title>_raylet.so`__Pyx_PyObject_CallOneArg (42 samples, 0.02%)</title><rect x="118.3" y="948" width="0.3" height="15.0" fill="rgb(246,2,20)" rx="2" ry="2" />
<text x="121.32" y="958.5" ></text>
</g>
<g >
<title>libsystem_malloc.dylib`set_tiny_meta_header_in_use (40 samples, 0.02%)</title><rect x="407.5" y="964" width="0.3" height="15.0" fill="rgb(209,145,33)" rx="2" ry="2" />
<text x="410.52" y="974.5" ></text>
</g>
<g >
<title>python`PyObject_CallObject (17 samples, 0.01%)</title><rect x="29.2" y="804" width="0.1" height="15.0" fill="rgb(221,2,50)" rx="2" ry="2" />
<text x="32.22" y="814.5" ></text>
</g>
<g >
<title>libc++abi.dylib`operator new (206 samples, 0.12%)</title><rect x="1037.3" y="260" width="1.4" height="15.0" fill="rgb(209,82,1)" rx="2" ry="2" />
<text x="1040.29" y="270.5" ></text>
</g>
</g>
</svg>
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;libsystem_kernel.dylib`poll 137
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`tcp_write;libsystem_kernel.dylib`__sendmsg 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`grpc_chttp2_perform_read 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`grpc_chttp2_perform_read;_raylet.so`grpc_slice_sub_no_ref 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`grpc_chttp2_perform_read;_raylet.so`grpc_slice_sub_no_ref;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`grpc_chttp2_perform_read;_raylet.so`parse_frame_slice;_raylet.so`grpc_chttp2_data_parser_parse;_raylet.so`grpc_chttp2_maybe_complete_recv_message;_raylet.so`grpc_deframe_unprocessed_incoming_frames;_raylet.so`grpc_slice_buffer_sub_first 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`grpc_chttp2_ping_parser_begin_frame 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`grpc_core::chttp2::StreamFlowControl::RecvData 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`tcp_read;_raylet.so`grpc_slice_buffer_swap;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`grpc_core::Chttp2IncomingByteStream::OrphanLocked;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size;libsystem_malloc.dylib`tiny_size 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`ray::rpc::CoreWorkerService::Stub::experimental_async::~experimental_async 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`start_bdp_ping_locked;_raylet.so`grpc_core::BdpEstimator::StartPing;_raylet.so`gpr_now;_raylet.so`now_impl 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`timer_init 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;libsystem_kernel.dylib`__recvmsg 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run;_raylet.so`receiving_initial_metadata_ready;_raylet.so`set_encodings_accepted_by_peer 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run;_raylet.so`receiving_initial_metadata_ready;_raylet.so`finish_batch_step 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run;_raylet.so`grpc_core::SubchannelCall::RecvTrailingMetadataReady 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`grpc_core::SubchannelCall::RecvTrailingMetadataReady;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`receiving_trailing_metadata_ready;_raylet.so`finish_batch_step;_raylet.so`grpc_metadata_batch_destroy 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`tcp_do_read(;libsystem_pthread.dylib`_pthread_exit_if_canceled 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;libsystem_pthread.dylib`pthread_getspecific 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`fd_end_poll;_raylet.so`gpr_mu_lock;libsystem_pthread.dylib`pthread_mutex_lock 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`fd_end_poll;_raylet.so`pollset_kick_ext;libsystem_kernel.dylib`write 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`fd_end_poll;_raylet.so`gpr_mu_unlock;libsystem_pthread.dylib`pthread_mutex_unlock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`fd_end_poll;_raylet.so`set_ready_locked;_raylet.so`exec_ctx_sched 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;libsystem_kernel.dylib`read 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`gpr_mu_unlock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`gpr_mu_unlock;libsystem_pthread.dylib`pthread_mutex_unlock 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`gpr_mu_lock;libsystem_pthread.dylib`pthread_mutex_lock 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`grpc_combiner_continue_exec_ctx 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`exec_ctx_run 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`grpc_core::ExecCtx::Now;_raylet.so`now_impl 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`grpc_timespec_to_millis_round_up 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream;_raylet.so`ray::rpc::RequestWorkerLeaseReply::_InternalParse 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream;_raylet.so`ray::rpc::RequestWorkerLeaseReply::_InternalParse;_raylet.so`ray::rpc::ResourceMapEntry::_InternalParse;_raylet.so`google::protobuf::internal::EpsCopyInputStream::DoneFallback;_raylet.so`google::protobuf::internal::EpsCopyInputStream::NextBuffer 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream;_raylet.so`ray::rpc::RequestWorkerLeaseReply::_InternalParse;_raylet.so`ray::rpc::ResourceMapEntry::_InternalParse;_raylet.so`google::protobuf::internal::EpsCopyInputStream::DoneFallback;_raylet.so`google::protobuf::internal::EpsCopyInputStream::NextBuffer;_raylet.so`grpc::ProtoBufferReader::Next 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream;_raylet.so`ray::rpc::RequestWorkerLeaseReply::_InternalParse;libc++abi.dylib`operator new 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream;_raylet.so`ray::rpc::PushTaskReply::_InternalParse;_raylet.so`ray::rpc::ReturnObject* google::protobuf::Arena::CreateMaybeMessage;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream;_raylet.so`ray::rpc::PushTaskReply::_InternalParse;_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::AddOutOfLineHelper;libc++abi.dylib`operator delete 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream;_raylet.so`ray::rpc::PushTaskReply::_InternalParse;_raylet.so`ray::rpc::ReturnObject::_InternalParse;_raylet.so`google::protobuf::internal::ArenaStringPtr::Mutable;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`grpc::ProtoBufferReader::ProtoBufferReader;_raylet.so`grpc_byte_buffer_reader_init;_raylet.so`grpc_slice_buffer_init 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`grpc_byte_buffer_destroy;_raylet.so`gpr_cpu_current_cpu 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`grpc::Status grpc::GenericDeserialize;_raylet.so`grpc_byte_buffer_destroy;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpRecvMessage::FinishOp;_raylet.so`google::protobuf::MessageLite::ParseFromZeroCopyStream 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::internal::CallOpSet::FinalizeResult;_raylet.so`grpc::internal::CallOpClientRecvStatus::FinishOp 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`grpc::CoreCodegen::gpr_free 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`instrumented_io_context::post;_raylet.so`void boost::asio::io_context::initiate_post::operator();_raylet.so`boost::asio::detail::scheduler::post_immediate_completion;libsystem_kernel.dylib`write 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`instrumented_io_context::post;_raylet.so`void boost::asio::io_context::initiate_post::operator();_raylet.so`boost::asio::asio_handler_allocate;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`gpr_now;_raylet.so`now_impl;libsystem_kernel.dylib`__commpage_gettimeofday 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`gpr_now;_raylet.so`now_impl;libsystem_c.dylib`DYLD-STUB$$__commpage_gettimeofday 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`ray::GrpcStatusToRayStatus 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`now_impl 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`DYLD-STUB$$ray::GrpcStatusToRayStatus 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`boost::asio::io_context::stopped 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::CoreWorkerService::Stub::experimental_async::~experimental_async 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallImpl::SetReturnStatus 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*, grpc_core::Thread::Options const&)::'lambda'(void*)::__invoke;_raylet.so`timer_thread;_raylet.so`gpr_cv_wait;libsystem_kernel.dylib`__psynch_cvwait 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*, grpc_core::Thread::Options const&)::'lambda'(void*)::__invoke;_raylet.so`timer_thread;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`run_poller;_raylet.so`pollset_work;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`read_action_locked;_raylet.so`grpc_chttp2_perform_read;_raylet.so`parse_frame_slice;_raylet.so`grpc_chttp2_ping_parser_parse 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;libsystem_kernel.dylib`poll 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;_raylet.so`pollset_work;_raylet.so`fd_end_poll;_raylet.so`gpr_mu_lock;libsystem_pthread.dylib`pthread_mutex_lock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::rpc::ClientCallManager::PollEventsFromCompletionQueue;_raylet.so`grpc_impl::CompletionQueue::AsyncNextInternal;_raylet.so`cq_next;libsystem_kernel.dylib`poll 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one 14
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands 224
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved 268
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback 2020
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert 18
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 19
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize 1972
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;_raylet.so`ray::core::ReferenceCounter::Reference::Reference 1356
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;_raylet.so`ray::core::ReferenceCounter::Reference::~Reference 20
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;_raylet.so`ray::core::ReferenceCounter::Reference::~Reference;_raylet.so`ray::rpc::Address::~Address 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_large;libsystem_malloc.dylib`mvm_deallocate_pages;libsystem_kernel.dylib`_kernelrpc_mach_vm_deallocate_trap 223
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`ray::core::ReferenceCounter::Reference::Reference 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`ray::core::ReferenceCounter::Reference::~Reference 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal 67
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert 74
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 58
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize 64
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc 14
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear 83
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 50
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list;libsystem_malloc.dylib`tiny_free_list_add_ptr 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 13
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_kernel.dylib`__ulock_wake 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`medium_malloc_should_clear 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`tiny_malloc_should_clear 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc_should_clear 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`default_zone_malloc 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell 19
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_platform.dylib`_platform_memset$VARIANT$Haswell 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_malloc.dylib`malloc 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_platform.dylib`_platform_memset$VARIANT$Haswell 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_medium 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_medium;libsystem_kernel.dylib`madvise 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_medium;libsystem_malloc.dylib`medium_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_platform.dylib`DYLD-STUB$$_platform_memset 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free;libsystem_malloc.dylib`medium_size 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size;libsystem_malloc.dylib`tiny_size 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`DYLD-STUB$$memset 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libc++abi.dylib`operator new 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_small;libsystem_malloc.dylib`small_free_list_remove_ptr_no_clear 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find 100
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find;_raylet.so`ray::MurmurHash64A 19
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`ray::MurmurHash64A 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`ray::RayLog::IsLevelEnabled 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find 421
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find;_raylet.so`ray::MurmurHash64A 17
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::Reference::Reference 435
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc 24
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear 96
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 40
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list;libsystem_malloc.dylib`tiny_free_list_add_ptr 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`tiny_malloc_should_clear 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`default_zone_malloc 16
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc_should_clear 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone 48
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc 12
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear 75
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 49
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list;libsystem_malloc.dylib`tiny_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 13
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::__function::__func::__clone;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc_should_clear 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`free 35
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size;libsystem_malloc.dylib`tiny_size 38
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`free_tiny 50
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`absl::lts_20210324::Mutex::Lock 18
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`absl::lts_20210324::Mutex::Unlock 16
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`std::__1::function::swap 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::core::ReferenceCounter::Reference::~Reference 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`malloc 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`ray::RayLog::IsLevelEnabled 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`szone_size 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libc++abi.dylib`DYLD-STUB$$malloc 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`DYLD-STUB$$operator new 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;libsystem_malloc.dylib`_malloc_zone_malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback;_raylet.so`DYLD-STUB$$absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address 178
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set 20
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new 23
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc 46
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear 17
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear 204
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 69
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list;libsystem_malloc.dylib`tiny_free_list_add_ptr 40
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 25
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`tiny_malloc_should_clear 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`default_zone_malloc 9
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc_should_clear 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external 15
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc 25
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear 158
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 62
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list;libsystem_malloc.dylib`tiny_free_list_add_ptr 22
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 25
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`tiny_malloc_should_clear 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`default_zone_malloc 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc_should_clear 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external;libsystem_malloc.dylib`malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 107
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::basic_string 16
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libsystem_malloc.dylib`malloc 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`DYLD-STUB$$operator new 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++abi.dylib`DYLD-STUB$$malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libsystem_malloc.dylib`_malloc_zone_malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;libc++.1.dylib`std::__1::basic_string::basic_string 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;libsystem_platform.dylib`DYLD-STUB$$_platform_memmove 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;libc++abi.dylib`operator new 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;_raylet.so`DYLD-STUB$$operator new 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;libc++.1.dylib`std::__1::basic_string::__init_copy_ctor_external 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::Address;libc++.1.dylib`DYLD-STUB$$memcpy 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address 9
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free_tiny 133
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock 166
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_add_ptr 122
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_remove_ptr 40
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_list_add_ptr 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free_tiny;libsystem_kernel.dylib`__ulock_wait 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_list_remove_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath 24
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free_tiny 85
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock 79
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_add_ptr 70
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_remove_ptr 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_list_add_ptr 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free_tiny;libsystem_kernel.dylib`__ulock_wait 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free 30
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size;libsystem_malloc.dylib`tiny_size 53
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`free;libsystem_malloc.dylib`tiny_size 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`szone_size 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath;libsystem_malloc.dylib`tiny_free_no_lock 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free 53
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size;libsystem_malloc.dylib`tiny_size 80
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`free;libsystem_malloc.dylib`tiny_size 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`default_zone_free_definite_size 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`tiny_free_no_lock 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libc++abi.dylib`operator delete 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`szone_size 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::rpc::Address::~Address;libsystem_malloc.dylib`szone_free_definite_size 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::BaseID::FromBinary 98
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::BaseID::FromBinary;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 115
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear 79
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 45
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list;libsystem_malloc.dylib`tiny_free_list_add_ptr 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`tiny_malloc_should_clear 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc_should_clear 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`default_zone_malloc 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator new;libsystem_malloc.dylib`szone_malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`boost::_bi::bind_t boost::bind(void (ray::core::ReferenceCounter::*) 158
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`free_tiny 55
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock 45
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_add_ptr 47
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_remove_ptr 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_list_add_ptr 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::WorkerID::WorkerID 31
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::WorkerID::WorkerID;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 48
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`free 24
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size;libsystem_malloc.dylib`tiny_size 28
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`absl::lts_20210324::Mutex::Unlock 23
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`default_zone_free_definite_size 14
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`std::__1::__function::__func::__clone 13
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_platform.dylib`DYLD-STUB$$_platform_memmove 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`std::__1::__function::__func::destroy_deallocate 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libc++abi.dylib`operator delete 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`std::__1::function::swap 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`szone_free_definite_size 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::Reference::Reference 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`google::protobuf::internal::ArenaStringPtr::DestroyNoArenaSlowPath 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::RayLog::IsLevelEnabled 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::Reference::~Reference 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`DYLD-STUB$$std::__1::function::swap 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`DYLD-STUB$$operator new 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`ray::core::ReferenceCounter::AddNestedObjectIdsInternal 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;libsystem_malloc.dylib`malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`DYLD-STUB$$memcpy 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForRefRemoved;_raylet.so`DYLD-STUB$$std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription 65
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry 187
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny 124
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock 251
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_remove_ptr 382
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_list_add_ptr 162
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_detach_region 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_detach_region;libsystem_malloc.dylib`tiny_free_list_remove_ptr 31
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_scan_madvise_free 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_scan_madvise_free;libsystem_kernel.dylib`madvise 18
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_scan_madvise_free;libsystem_malloc.dylib`mvm_madvise_free 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_madvise_free_range_no_lock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_madvise_free_range_no_lock;libsystem_kernel.dylib`madvise 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_madvise_free_range_no_lock;libsystem_malloc.dylib`mvm_madvise_free 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_reattach_region 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`tiny_free_reattach_region;libsystem_malloc.dylib`tiny_free_list_add_ptr 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_no_lock;libsystem_malloc.dylib`mvm_deallocate_pages;libsystem_kernel.dylib`_kernelrpc_mach_vm_deallocate_trap 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_kernel.dylib`__ulock_wait 47
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_platform.dylib`_os_unfair_lock_lock_slow 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_tiny;libsystem_malloc.dylib`tiny_free_list_remove_ptr 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find 938
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find;_raylet.so`ray::MurmurHash64A 20
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set<absl::lts_20210324::container_internal::FlatHashMapPolicy<ray::ObjectID, absl::lts_20210324::flat_hash_set<ray::UniqueID, absl::lts_20210324::hash_internal::Hash<ray::UniqueID>, std::__1::equal_to<ray::UniqueID>, std::__1::allocator<ray::UniqueID> > >, absl::lts_20210324::hash_internal::Hash<ray::ObjectID>, std::__1::equal_� 714
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set<absl::lts_20210324::container_internal::FlatHashMapPolicy<ray::ObjectID, absl::lts_20210324::flat_hash_set<ray::UniqueID, absl::lts_20210324::hash_internal::Hash<ray::UniqueID>, std::__1::equal_to<ray::UniqueID>, std::__1::allocator<ray::UniqueID> > >, absl::lts_20210324::hash_internal::Hash<ray::ObjectID>, std::__1::equal_�;_raylet.so`ray::MurmurHash64A 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free 14
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free;libsystem_malloc.dylib`szone_size;libsystem_malloc.dylib`tiny_size 117
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free;libsystem_malloc.dylib`tiny_size 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;_raylet.so`ray::BaseID::FromBinary 50
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;_raylet.so`ray::BaseID::FromBinary;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 79
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_kernel.dylib`madvise 23
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_kernel.dylib`__ulock_wake 13
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`szone_size 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;_raylet.so`ray::MurmurHash64A 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_platform.dylib`DYLD-STUB$$_platform_memmove 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_platform.dylib`os_unfair_lock_lock_with_options 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`tiny_free_no_lock 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`free_medium;libsystem_kernel.dylib`madvise 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_platform.dylib`_os_unfair_lock_unlock_slow 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry;libsystem_malloc.dylib`DYLD-STUB$$os_unfair_lock_lock_with_options 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow 28
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_kernel.dylib`__psynch_cvsignal 560
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow;libsystem_kernel.dylib`__psynch_mutexwait 92
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow;libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_wait 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`pthread_cond_signal 9
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`pthread_cond_signal;libsystem_pthread.dylib`_pthread_cond_updateval 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`pthread_cond_signal;libsystem_kernel.dylib`__psynch_cvclrprepost 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`_pthread_mutex_firstfit_unlock_slow;libsystem_kernel.dylib`__psynch_mutexdrop 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`pthread_mutex_lock 10
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`pthread_mutex_unlock 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`_pthread_cond_updateval 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_pthread.dylib`DYLD-STUB$$__psynch_cvsignal 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;libsystem_pthread.dylib`pthread_mutex_unlock 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::base_internal::CycleClock::Now 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;libsystem_pthread.dylib`pthread_cond_signal 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::base_internal::UnscaledCycleClock::Now 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`DYLD-STUB$$pthread_cond_signal 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;libsystem_pthread.dylib`pthread_mutex_lock 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`DYLD-STUB$$pthread_mutex_unlock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock 52
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop 12
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_kernel.dylib`__psynch_cvwait 122
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_pthread.dylib`_pthread_cond_wait 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_pthread.dylib`_pthread_cond_wait;libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow;libsystem_kernel.dylib`__psynch_mutexwait 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_pthread.dylib`_pthread_cond_wait;libsystem_pthread.dylib`pthread_testcancel 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_pthread.dylib`_pthread_cond_wait;libsystem_pthread.dylib`pthread_mutex_lock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_pthread.dylib`_pthread_mutex_droplock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_pthread.dylib`pthread_mutex_unlock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Wait;libsystem_pthread.dylib`pthread_testcancel 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;_raylet.so`DYLD-STUB$$pthread_mutex_unlock 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;libsystem_pthread.dylib`_pthread_cond_wait 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::Mutex::LockSlowLoop;_raylet.so`absl::lts_20210324::Mutex::Block;_raylet.so`AbslInternalPerThreadSemWait_lts_20210324;libsystem_pthread.dylib`pthread_cond_wait 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;libdyld.dylib`tlv_get_addr 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::Mutex::LockSlowWithDeadline;_raylet.so`absl::lts_20210324::base_internal::CurrentThreadIdentityIfPresent 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock;_raylet.so`absl::lts_20210324::Mutex::LockSlow;_raylet.so`absl::lts_20210324::base_internal::CurrentThreadIdentityIfPresent 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Unlock 28
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set<absl::lts_20210324::container_internal::FlatHashMapPolicy<ray::ObjectID, absl::lts_20210324::flat_hash_set<ray::UniqueID, absl::lts_20210324::hash_internal::Hash<ray::UniqueID>, std::__1::equal_to<ray::UniqueID>, std::__1::allocator<ray::UniqueID> > >, absl::lts_20210324::hash_internal::Hash<ray::ObjectID>, std::__1::equal_� 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::base_internal::AtomicHook::DummyFunction 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::base_internal::CycleClock::Now 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;libc++abi.dylib`operator delete 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;libsystem_malloc.dylib`free 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;libsystem_malloc.dylib`free_tiny 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;libsystem_malloc.dylib`szone_free_definite_size 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`DYLD-STUB$$operator delete 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock() 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;libc++abi.dylib`DYLD-STUB$$free 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`ray::BaseID::FromBinary 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;libsystem_platform.dylib`os_unfair_lock_unlock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`DYLD-STUB$$absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set<absl::lts_20210324::container_internal::FlatHashMapPolicy<ray::ObjectID, absl::lts_20210324::flat_hash_set<ray::UniqueID, absl::lts_20210324::hash_internal::Hash<ray::UniqueID>, std::__1::equal_to<ray::UniqueID>, std::__1::allocator<ray::UniqueID> > >, absl::lts_20210324::hash_internal::Hash<ray::ObjectID>, std::� 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::UnregisterSubscription;libsystem_malloc.dylib`default_zone_free_definite_size 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage 53
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription 26
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry 376
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert 484
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 63
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize 449
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new 46
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc 30
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear 90
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 62
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list;libsystem_malloc.dylib`tiny_free_list_add_ptr 39
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 24
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_free_list_add_ptr 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libc++abi.dylib`operator new;libsystem_malloc.dylib`default_zone_malloc 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_malloc.dylib`_malloc_zone_malloc 33
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_platform.dylib`_platform_memset$VARIANT$Haswell 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::resize;libsystem_malloc.dylib`malloc 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_kernel.dylib`madvise 34
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_medium 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_malloc.dylib`free_medium;libsystem_kernel.dylib`madvise 12
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_platform.dylib`_platform_memset$VARIANT$Haswell 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libc++abi.dylib`operator new 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert;libsystem_platform.dylib`DYLD-STUB$$_platform_memset 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert;_raylet.so`ray::MurmurHash64A 27
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`ray::BaseID::FromBinary 52
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`ray::BaseID::FromBinary;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 71
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;libsystem_platform.dylib`DYLD-STUB$$_platform_memmove 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`DYLD-STUB$$absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`ray::MurmurHash64A 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::prepare_insert 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find 47
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Lock 21
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`absl::lts_20210324::Mutex::Unlock 13
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`std::__1::pair absl::lts_20210324::container_internal::raw_hash_set::find_or_prepare_insert 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::Publisher::RegisterSubscription;_raylet.so`ray::BaseID::FromBinary 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::AddEntry 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`absl::lts_20210324::Mutex::Lock 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`absl::lts_20210324::Mutex::Unlock 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeMessage;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set::find 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::WorkerContext::GetWorkerID 25
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`std::__1::__function::__func::destroy_deallocate 21
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::ReferenceCounter::SetRefRemovedCallback 17
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::rpc::Address::Address 11
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeObjectLocations;_raylet.so`ray::core::ReferenceCounter::PublishObjectLocationSnapshot;_raylet.so`ray::core::ReferenceCounter::PushToLocationSubscribers;_raylet.so`ray::pubsub::Publisher::Publish;_raylet.so`ray::pubsub::pub_internal::Subscriber::QueueMessage;_raylet.so`ray::rpc::WorkerObjectLocationsPubMessage::MergeFrom;_raylet.so`google::protobuf::internal::RepeatedPtrFieldBase::InternalExtend;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`set_tiny_meta_header_in_use 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeObjectLocations;_raylet.so`ray::core::ReferenceCounter::PublishObjectLocationSnapshot;_raylet.so`ray::core::ReferenceCounter::PushToLocationSubscribers;_raylet.so`ray::pubsub::Publisher::Publish;_raylet.so`ray::pubsub::pub_internal::Subscriber::QueueMessage;_raylet.so`ray::rpc::PubMessage::MergeFrom;_raylet.so`ray::rpc::WorkerObjectLocationsPubMessage* google::protobuf::Arena::CreateMaybeMessage;libc++abi.dylib`operator new;libsystem_malloc.dylib`_malloc_zone_malloc;libsystem_malloc.dylib`szone_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_should_clear;libsystem_malloc.dylib`tiny_malloc_from_free_list 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeObjectLocations;_raylet.so`ray::core::ReferenceCounter::PublishObjectLocationSnapshot;_raylet.so`ray::core::ReferenceCounter::PushToLocationSubscribers;_raylet.so`ray::pubsub::Publisher::Publish;_raylet.so`absl::lts_20210324::container_internal::raw_hash_set::iterator absl::lts_20210324::container_internal::raw_hash_set<absl::lts_20210324::container_internal::FlatHashMapPolicy<ray::ObjectID, absl::lts_20210324::flat_hash_set<ray::UniqueID, absl::lts_20210324::hash_internal::Hash<ray::UniqueID>, std::__1::equal_to<ray::UniqueID>, std::__1::allocator<ray::UniqueID> > >, absl::lts_20210324::hash_internal::Hash<ray::ObjectID>, std::__1::equal_� 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeObjectLocations;_raylet.so`ray::core::ReferenceCounter::PublishObjectLocationSnapshot;_raylet.so`ray::core::ReferenceCounter::PushToLocationSubscribers;_raylet.so`ray::core::ReferenceCounter::FillObjectInformationInternal 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeObjectLocations;_raylet.so`ray::core::ReferenceCounter::PublishObjectLocationSnapshot;_raylet.so`ray::core::ReferenceCounter::PushToLocationSubscribers;_raylet.so`ray::core::ReferenceCounter::FillObjectInformationInternal;_raylet.so`google::protobuf::internal::ArenaStringPtr::Set;libc++.1.dylib`std::__1::basic_string::basic_string 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeObjectLocations;_raylet.so`ray::core::ReferenceCounter::PublishObjectLocationSnapshot;_raylet.so`absl::lts_20210324::Mutex::UnlockSlow;_raylet.so`absl::lts_20210324::synchronization_internal::Waiter::Post;libsystem_kernel.dylib`__psynch_cvsignal 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::rpc::Address::~Address 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::BaseID::FromBinary 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::pubsub::Publisher::RegisterSubscription 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`absl::lts_20210324::Mutex::Lock 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;libsystem_malloc.dylib`default_zone_free_definite_size 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`DYLD-STUB$$ray::pubsub::pub_internal::SubscriptionIndex::EraseEntry 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`boost::_bi::bind_t boost::bind(void (ray::core::ReferenceCounter::*) 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;libsystem_malloc.dylib`szone_free_definite_size 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`absl::lts_20210324::Mutex::Unlock 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;libsystem_malloc.dylib`free_tiny 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;libc++abi.dylib`operator delete 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;libc++abi.dylib`operator new 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;libsystem_malloc.dylib`free 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::core::CoreWorker::ProcessSubscribeForObjectEviction;_raylet.so`ray::core::ReferenceCounter::SetDeleteCallback;_raylet.so`std::__1::__function::__func::destroy 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`DYLD-STUB$$boost::_bi::bind_t boost::bind(void (ray::core::ReferenceCounter::*) 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`ray::core::CoreWorker::ProcessPubsubCommands;_raylet.so`ray::WorkerID::WorkerID 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`tcp_write 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`tcp_write;libsystem_kernel.dylib`__sendmsg 253
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`tcp_write;_raylet.so`tcp_flush( 7
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`tcp_write;libsystem_pthread.dylib`pthread_getspecific 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write 6
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_maybe_complete_recv_trailing_metadata 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_maybe_complete_recv_trailing_metadata;_raylet.so`grpc_metadata_batch_move;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_maybe_complete_recv_trailing_metadata;_raylet.so`grpc_metadata_batch_move;libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_maybe_complete_recv_trailing_metadata;_raylet.so`grpc_slice_buffer_reset_and_unref_internal 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_maybe_complete_recv_trailing_metadata;_raylet.so`grpc_chttp2_maybe_complete_recv_message 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_maybe_complete_recv_message 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_stream_map_delete 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_incoming_metadata_buffer_publish 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_transport_move_stats 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_mark_stream_closed;_raylet.so`grpc_chttp2_complete_closure_step 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_header 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_header;_raylet.so`hpack_enc 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_header;_raylet.so`hpack_enc;_raylet.so`grpc_slice_buffer_tiny_add 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_header;_raylet.so`grpc_slice_buffer_add_indexed 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_header;_raylet.so`grpc_slice_buffer_tiny_add 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_data 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_data;_raylet.so`grpc_slice_buffer_move_first_no_ref;_raylet.so`grpc_slice_buffer_move_into;_raylet.so`grpc_slice_buffer_add 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_data;_raylet.so`grpc_slice_buffer_move_first_no_ref;_raylet.so`grpc_slice_buffer_move_into;_raylet.so`grpc_slice_buffer_add;libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_data;_raylet.so`grpc_slice_buffer_move_first_no_ref;_raylet.so`grpc_slice_buffer_move_into;libsystem_platform.dylib`DYLD-STUB$$_platform_memmove 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_encode_data;_raylet.so`grpc_slice_buffer_add 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`add_tiny_header_data 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_maybe_complete_recv_trailing_metadata 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_stream_map_delete 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_fail_pending_writes 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_hpack_compressor_set_max_table_size 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_slice_buffer_move_into 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_chttp2_window_update_create 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;libsystem_platform.dylib`DYLD-STUB$$_platform_memmove 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_begin_write;_raylet.so`grpc_slice_buffer_tiny_add 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_mark_stream_closed 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_endpoint_write 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_core::chttp2::StreamFlowControl::MaybeSendUpdate 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_slice_buffer_add 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_chttp2_hpack_compressor_set_max_table_size 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_begin_locked;_raylet.so`grpc_core::chttp2::TransportFlowControl::MaybeSendUpdate 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent;_raylet.so`gpr_get_cycle_counter;_raylet.so`gpr_now;_raylet.so`now_impl 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent;_raylet.so`gpr_get_cycle_counter;_raylet.so`gpr_now;_raylet.so`now_impl;libsystem_c.dylib`DYLD-STUB$$__commpage_gettimeofday 4
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent;_raylet.so`gpr_get_cycle_counter;_raylet.so`gpr_now;_raylet.so`now_impl;libsystem_kernel.dylib`__commpage_gettimeofday 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent;_raylet.so`gpr_get_cycle_counter;_raylet.so`gpr_now;_raylet.so`now_impl;libsystem_c.dylib`gettimeofday;libsystem_kernel.dylib`__commpage_gettimeofday_internal 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent;_raylet.so`gpr_get_cycle_counter;_raylet.so`gpr_now;libsystem_c.dylib`gettimeofday 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent;_raylet.so`gpr_timespec_to_micros 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_slice_buffer_reset_and_unref_internal 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_chttp2_list_pop_writing_stream 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_end_write;_raylet.so`grpc_chttp2_stream_unref 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`set_write_state 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_core::channelz::SocketNode::RecordMessagesSent 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`grpc_chttp2_stream_unref 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`write_action_end_locked;_raylet.so`exec_ctx_sched 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`perform_stream_op_locked 5
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`perform_stream_op_locked;_raylet.so`continue_fetching_send_locked 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`perform_stream_op_locked;_raylet.so`grpc_metadata_batch_size 2
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`perform_stream_op_locked;_raylet.so`grpc_slice_buffer_tiny_add 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`perform_stream_op_locked;_raylet.so`combiner_finally_exec 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`perform_stream_op_locked;_raylet.so`grpc_chttp2_list_add_writable_stream 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`grpc_core::Executor::Enqueue;_raylet.so`gpr_cv_signal;libsystem_kernel.dylib`__psynch_cvsignal 8
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`grpc_core::MultiProducerSingleConsumerQueue::Pop 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`grpc_chttp2_list_add_writable_stream 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`start_bdp_ping_locked;_raylet.so`timer_cancel 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`grpc_combiner_continue_exec_ctx;_raylet.so`grpc_chttp2_complete_closure_step 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`receiving_trailing_metadata_ready 1
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`receiving_trailing_metadata_ready;_raylet.so`finish_batch_step 3
;libsystem_pthread.dylib`thread_start;libsystem_pthread.dylib`_pthread_start;_raylet.so`void* std::__1::__thread_proxy;_raylet.so`ray::core::CoreWorker::RunIOService;_raylet.so`boost::asio::io_context::run;_raylet.so`boost::asio::detail::scheduler::run;_raylet.so`boost::asio::detail::scheduler::do_run_one;_raylet.so`boost::asio::detail::completion_handler::do_complete;_raylet.so`ray::rpc::ServerCallImpl::HandleRequestImpl;_raylet.so`ray::core::CoreWorker::HandlePubsubCommandBatch;_raylet.so`void std::__1::__invoke_void_return_wrapper::__call;_raylet.so`ray::rpc::ServerCallImpl::SendReply;_raylet.so`grpc_impl::ServerAsyncResponseWriter::Finish;_raylet.so`grpc::internal::CallOpSet::ContinueFillOpsAfterInterception;_raylet.so`grpc_call_start_batch;_raylet.so`grpc_core::ExecCtx::Flush;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`exec_ctx_run;_raylet.so`receiving_trailing_metadata_ready;_raylet.so`finish_batch_step;_raylet.so`cq_end_op_for_next(grpc_completion_queue*,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment