Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cozos/fb4579ced8a7dfdb51fdbf531ce3494f to your computer and use it in GitHub Desktop.
Save cozos/fb4579ced8a7dfdb51fdbf531ce3494f to your computer and use it in GitHub Desktop.
memray-flamegraph-profile.worker-1-2.pid-3316.html
This file has been truncated, but you can view the full file.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>memray - flamegraph report</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<style>/* Blocks */
.d3-flame-graph rect {
fill-opacity: 0.8;
stroke: #1111;
stroke-width: 1px;
}
.d3-flame-graph .frame:hover rect {
stroke: #1118;
stroke-width: 1px;
cursor: pointer;
}
.d3-flame-graph-label {
color: black;
pointer-events: none;
font-size: 13px;
line-height: 1.5;
text-align: left;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
padding: 0;
margin-left: 4px;
margin-right: 4px;
}
/* Bacckground stuff */
.d3-flame-graph .fade {
opacity: 0.6 !important;
}
/* Tooltip */
.d3-flame-graph-tip {
z-index: 10;
background: black;
border: none;
color: white;
text-align: left;
min-width: 250px;
border-radius: 2px;
padding: 2px 4px;
}
.tooltip-inner {
max-width: 300px;
}</style>
</head>
<body>
<!-- Header -->
<nav class="navbar sticky-top navbar-dark bg-dark">
<a class="navbar-brand" href="#">
<span class="navbar-brand mb-0 mr-2 h1">memray</span> flamegraph report
</a>
<div class="form-inline">
<div class="mr-3">
<span class="badge badge-primary" data-toggle="tooltip" data-placement="bottom"
title=" The pymalloc allocator holds pools of memory and only allocates
when all these pools are used. This means that allocations reported when
pymalloc is active will reflect only the allocations that happen when
the pools are full. <b>This is what happens at runtime</b> so it is fully
representative of a normal application but <b>the number of allocations
and the size may not correspond with the number of Python objects
created</b> (as pymalloc is reusing memory)."
data-html="true">
Python Allocator: pymalloc</span>
</div>
<div class="btn-toolbar">
<div class="dropdown" id="threadsDropdown" hidden>
<button class="btn btn-outline-light dropdown-toggle mr-3" type="button" id="threadsDropdownButton" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false" data-toggle-second="tooltip" data-placement="right"
title="Display only the selected thread">
Filter Thread
</button>
<div class="dropdown-menu" aria-labelledby="threadsDropdownButton" id="threadsDropdownList">
<a class="dropdown-item" data-thread="-0x1" id="resetThreadFilterItem">Reset</a>
</div>
</div>
<div class="form-check mr-3">
<input class="form-check-input" type="checkbox" data-toggle="tooltip" id="hideUninteresting"
title="Hide CPython eval frames and other, memray-related frames" checked>
<label class="form-check-label text-white bg-dark">Hide Non-Relevant Frames</label>
</div>
<button id="resetZoomButton" class="btn btn-outline-light mr-3">Reset Zoom</button>
<button id="invertButton" class="btn btn-outline-light mr-3">Invert</button>
<button type="button" class="btn btn-outline-light mr-3" data-toggle="modal" data-target="#statsModal">Stats</button>
<button type="button" class="btn btn-outline-light mr-3" data-toggle="modal" data-target="#helpModal">Help</button>
</div>
<input id="searchTerm" class="form-control" type="search" placeholder="Search">
</div>
</nav>
<nav class="navbar navbar-dark bg-dark px-0">
<div id="smallMemoryGraph" class="w-100" data-toggle="modal" data-target="#memoryModal" onclick="javascript:resizeMemoryGraph();"></div>
</nav>
<!-- Main Content -->
<main class="container-fluid">
<div class="row">
<div class="col bg-light py-3">
<div class="chart-container">
<div id="chart"></div>
</div>
</div>
</div>
</main>
<!-- Stats Modal -->
<div class="modal fade" id="memoryModal" tabindex="-1" role="dialog" aria-labelledby="memoryModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="memoryModalLabel">Resident set size over time</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div id="memoryGraph"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Stats Modal -->
<div class="modal fade" id="statsModal" tabindex="-1" role="dialog" aria-labelledby="statsModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="statsModalLabel">Memray run stats</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
Command line: <code>/databricks/python3/lib/python3.7/site-packages/memray/__main__.py run -o /tmp/memray-profile.worker-1-2.pid-3316.bin -f -m apache_beam.runners.worker.sdk_worker_main</code><br>
Start time: 2022-12-06 07:06:42.206000<br>
End time: 2022-12-06 07:06:42.206000<br>
Total number of allocations: 820332320<br>
Total number of frames seen: 0<br>
Peak memory usage: 3.9 GB<br>
Python allocator: pymalloc<br>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- Help Modal -->
<div class="modal fade" id="helpModal" tabindex="-1" role="dialog" aria-labelledby="helpModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="helpModalLabel">How to interpret flamegraph reports</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<p>
The flame graph displays a snapshot of memory used across stack frames at the time <b>when the memory usage was at its peak</b>.
</p>
<p>
The vertical ordering of the stack frames corresponds to the order of function calls, from parent to children.
The horizontal ordering does not represent the passage of time in the application: they simply represent child frames in arbitrary order.
</p>
<p>
On the flame graph, each bar represents a stack frame and shows the code which triggered the memory allocation.
Hovering over the frame you can also see the overall memory allocated in the given frame and its children and the number of times allocations have occurred.
</p>
<p>
The <b>Show/Hide Non-Relevant Frames</b> button can be used to reveal and hide frames which contain allocations in code which might not be
relevant for the application. These include frames in the CPython eval loop as well as frames introduced by memray during the analysis.
</p>
<p>
You can find more information in the <a target="_blank" href="https://bloomberg.github.io/memray/flamegraph.html">documentation</a>.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lodash.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/plotly.min.js"></script>
<script type="text/javascript">
const data = {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_shutdown_cached_bundle_processors", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "557"], "n_allocations": 1, "name": "_shutdown_cached_bundle_processors at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:557", "thread_id": "0x19", "value": 1}], "interesting": true, "location": ["shutdown_inactive_bundle_processors", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "543"], "n_allocations": 2, "name": "shutdown_inactive_bundle_processors at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:543", "thread_id": "0x19", "value": 2097153}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "208"], "n_allocations": 2, "name": "run at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:208", "thread_id": "0x19", "value": 2097153}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["wait", "/usr/lib/python3.7/threading.py", "289"], "n_allocations": 1, "name": " waiter = _allocate_lock()\n", "thread_id": "0x19", "value": 32}], "interesting": true, "location": ["wait", "/usr/lib/python3.7/threading.py", "552"], "n_allocations": 2, "name": " signaled = self._cond.wait(timeout)\n", "thread_id": "0x19", "value": 584}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "206"], "n_allocations": 2, "name": "run at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:206", "thread_id": "0x19", "value": 584}], "interesting": true, "location": ["_bootstrap_inner", "/usr/lib/python3.7/threading.py", "926"], "n_allocations": 4, "name": " self.run()\n", "thread_id": "0x19", "value": 2097737}], "interesting": true, "location": ["_bootstrap", "/usr/lib/python3.7/threading.py", "890"], "n_allocations": 4, "name": " self._bootstrap_inner()\n", "thread_id": "0x19", "value": 2097737}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["keys", "/databricks/python3/lib/python3.7/_collections_abc.py", "674"], "n_allocations": 186, "name": "keys at /databricks/python3/lib/python3.7/_collections_abc.py:674", "thread_id": "0x1d", "value": 48758784}, {"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "720"], "n_allocations": 2442, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:720", "thread_id": "0x1d", "value": 640679936}], "interesting": true, "location": ["process", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py", "72"], "n_allocations": 255593, "name": "process at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py:72", "thread_id": "0x1d", "value": 2677618992}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["stream", "/databricks/python3/lib/python3.7/site-packages/urllib3/response.py", "564"], "n_allocations": 1, "name": "stream at /databricks/python3/lib/python3.7/site-packages/urllib3/response.py:564", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["generate", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "816"], "n_allocations": 1, "name": "generate at /databricks/python3/lib/python3.7/site-packages/requests/models.py:816", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["content", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "899"], "n_allocations": 2, "name": "content at /databricks/python3/lib/python3.7/site-packages/requests/models.py:899", "thread_id": "0x1d", "value": 262672}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "745"], "n_allocations": 2, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:745", "thread_id": "0x1d", "value": 262672}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_create", "/usr/lib/python3.7/ssl.py", "863"], "n_allocations": 13, "name": " owner=self, session=self._session,\n", "thread_id": "0x1d", "value": 8384}, {"children": [{"children": [], "interesting": true, "location": ["do_handshake", "/usr/lib/python3.7/ssl.py", "1139"], "n_allocations": 417, "name": " self._sslobj.do_handshake()\n", "thread_id": "0x1d", "value": 44778}], "interesting": true, "location": ["_create", "/usr/lib/python3.7/ssl.py", "870"], "n_allocations": 417, "name": " self.do_handshake()\n", "thread_id": "0x1d", "value": 44778}], "interesting": true, "location": ["wrap_socket", "/usr/lib/python3.7/ssl.py", "423"], "n_allocations": 431, "name": " session=session\n", "thread_id": "0x1d", "value": 53754}], "interesting": true, "location": ["ssl_wrap_socket", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py", "370"], "n_allocations": 432, "name": "ssl_wrap_socket at /databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py:370", "thread_id": "0x1d", "value": 54282}, {"children": [], "interesting": true, "location": ["ssl_wrap_socket", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py", "336"], "n_allocations": 10431, "name": "ssl_wrap_socket at /databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py:336", "thread_id": "0x1d", "value": 630810}], "interesting": true, "location": ["connect", "/databricks/python3/lib/python3.7/site-packages/urllib3/connection.py", "360"], "n_allocations": 10864, "name": "connect at /databricks/python3/lib/python3.7/site-packages/urllib3/connection.py:360", "thread_id": "0x1d", "value": 685676}, {"children": [{"children": [], "interesting": true, "location": ["_match_hostname", "/databricks/python3/lib/python3.7/site-packages/urllib3/connection.py", "396"], "n_allocations": 1, "name": "_match_hostname at /databricks/python3/lib/python3.7/site-packages/urllib3/connection.py:396", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["connect", "/databricks/python3/lib/python3.7/site-packages/urllib3/connection.py", "386"], "n_allocations": 1, "name": "connect at /databricks/python3/lib/python3.7/site-packages/urllib3/connection.py:386", "thread_id": "0x1d", "value": 528}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["getaddrinfo", "/usr/lib/python3.7/socket.py", "748"], "n_allocations": 39, "name": " \"\"\"\n", "thread_id": "0x1d", "value": 1641}], "interesting": true, "location": ["create_connection", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/connection.py", "61"], "n_allocations": 40, "name": "create_connection at /databricks/python3/lib/python3.7/site-packages/urllib3/util/connection.py:61", "thread_id": "0x1d", "value": 2201}], "interesting": true, "location": ["_new_conn", "/databricks/python3/lib/python3.7/site-packages/urllib3/connection.py", "157"], "n_allocations": 41, "name": "_new_conn at /databricks/python3/lib/python3.7/site-packages/urllib3/connection.py:157", "thread_id": "0x1d", "value": 2817}], "interesting": true, "location": ["connect", "/databricks/python3/lib/python3.7/site-packages/urllib3/connection.py", "300"], "n_allocations": 41, "name": "connect at /databricks/python3/lib/python3.7/site-packages/urllib3/connection.py:300", "thread_id": "0x1d", "value": 2817}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/usr/lib/python3.7/ssl.py", "399"], "n_allocations": 3574, "name": " self = _SSLContext.__new__(cls, protocol)\n", "thread_id": "0x1d", "value": 109618}], "interesting": true, "location": ["create_urllib3_context", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py", "256"], "n_allocations": 3574, "name": "create_urllib3_context at /databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py:256", "thread_id": "0x1d", "value": 109618}, {"children": [], "interesting": true, "location": ["create_urllib3_context", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py", "258"], "n_allocations": 4, "name": "create_urllib3_context at /databricks/python3/lib/python3.7/site-packages/urllib3/util/ssl_.py:258", "thread_id": "0x1d", "value": 736}], "interesting": true, "location": ["connect", "/databricks/python3/lib/python3.7/site-packages/urllib3/connection.py", "336"], "n_allocations": 3578, "name": "connect at /databricks/python3/lib/python3.7/site-packages/urllib3/connection.py:336", "thread_id": "0x1d", "value": 110354}], "interesting": true, "location": ["_validate_conn", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "994"], "n_allocations": 14485, "name": "_validate_conn at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:994", "thread_id": "0x1d", "value": 799919}], "interesting": true, "location": ["_make_request", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "376"], "n_allocations": 14485, "name": "_make_request at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:376", "thread_id": "0x1d", "value": 799919}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["begin", "/usr/lib/python3.7/http/client.py", "315"], "n_allocations": 1, "name": " return\n", "thread_id": "0x1d", "value": 528}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/email/feedparser.py", "164"], "n_allocations": 1, "name": " self._parse = self._parsegen().__next__\n", "thread_id": "0x1d", "value": 624}], "interesting": true, "location": ["parse", "/usr/lib/python3.7/email/parser.py", "49"], "n_allocations": 1, "name": " feedparser = FeedParser(self._class, policy=self.policy)\n", "thread_id": "0x1d", "value": 624}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_parsegen", "/usr/lib/python3.7/email/feedparser.py", "240"], "n_allocations": 1, "name": " self._parse_headers(headers)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["_call_parse", "/usr/lib/python3.7/email/feedparser.py", "180"], "n_allocations": 1, "name": " self._parse()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["feed", "/usr/lib/python3.7/email/feedparser.py", "176"], "n_allocations": 1, "name": " self._call_parse()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["parse", "/usr/lib/python3.7/email/parser.py", "56"], "n_allocations": 1, "name": " feedparser.feed(data)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["parsestr", "/usr/lib/python3.7/email/parser.py", "67"], "n_allocations": 2, "name": " return self.parse(StringIO(text), headersonly=headersonly)\n", "thread_id": "0x1d", "value": 1152}], "interesting": true, "location": ["parse_headers", "/usr/lib/python3.7/http/client.py", "233"], "n_allocations": 2, "name": "\n", "thread_id": "0x1d", "value": 1152}], "interesting": true, "location": ["begin", "/usr/lib/python3.7/http/client.py", "334"], "n_allocations": 2, "name": " self.version = 11 # use HTTP/1.1 code for HTTP/1.x where x\u003e=1\n", "thread_id": "0x1d", "value": 1152}], "interesting": true, "location": ["getresponse", "/usr/lib/python3.7/http/client.py", "1348"], "n_allocations": 4, "name": " # cannot read this response\u0027s header to determine the connection-close\n", "thread_id": "0x1d", "value": 2216}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/http/client.py", "253"], "n_allocations": 1, "name": " # the server times out and closes the connection. This will\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["getresponse", "/usr/lib/python3.7/http/client.py", "1344"], "n_allocations": 1, "name": " if self.__response and self.__response.isclosed():\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_make_request", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "416"], "n_allocations": 5, "name": "_make_request at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:416", "thread_id": "0x1d", "value": 2768}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["send", "/usr/lib/python3.7/http/client.py", "991"], "n_allocations": 1, "name": " break\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_send_output", "/usr/lib/python3.7/http/client.py", "1030"], "n_allocations": 1, "name": " Appends an extra \\\\r\\\\n to the buffer.\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["endheaders", "/usr/lib/python3.7/http/client.py", "1251"], "n_allocations": 2, "name": " values = list(values)\n", "thread_id": "0x1d", "value": 1088}], "interesting": true, "location": ["_send_request", "/usr/lib/python3.7/http/client.py", "1302"], "n_allocations": 2, "name": " # only chunk body if not explicitly set for backwards\n", "thread_id": "0x1d", "value": 1088}, {"children": [], "interesting": true, "location": ["_send_request", "/usr/lib/python3.7/http/client.py", "1267"], "n_allocations": 1, "name": "\n", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["request", "/usr/lib/python3.7/http/client.py", "1256"], "n_allocations": 4, "name": " values[i] = str(one_value).encode(\u0027ascii\u0027)\n", "thread_id": "0x1d", "value": 2176}], "interesting": true, "location": ["_make_request", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "387"], "n_allocations": 4, "name": "_make_request at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:387", "thread_id": "0x1d", "value": 2176}, {"children": [{"children": [], "interesting": true, "location": ["assert_header_parsing", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/response.py", "65"], "n_allocations": 1, "name": "assert_header_parsing at /databricks/python3/lib/python3.7/site-packages/urllib3/util/response.py:65", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_make_request", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "441"], "n_allocations": 1, "name": "_make_request at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:441", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["urlopen", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "672"], "n_allocations": 14496, "name": "urlopen at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:672", "thread_id": "0x1d", "value": 806023}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/urllib3/response.py", "228"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/urllib3/response.py:228", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["from_httplib", "/databricks/python3/lib/python3.7/site-packages/urllib3/response.py", "597"], "n_allocations": 2, "name": "from_httplib at /databricks/python3/lib/python3.7/site-packages/urllib3/response.py:597", "thread_id": "0x1d", "value": 1168}], "interesting": true, "location": ["urlopen", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "690"], "n_allocations": 3, "name": "urlopen at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:690", "thread_id": "0x1d", "value": 1696}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_new_conn", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "981"], "n_allocations": 1, "name": "_new_conn at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:981", "thread_id": "0x1d", "value": 528}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["set_cert", "/databricks/python3/lib/python3.7/site-packages/urllib3/connection.py", "291"], "n_allocations": 1, "name": "set_cert at /databricks/python3/lib/python3.7/site-packages/urllib3/connection.py:291", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_prepare_conn", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "937"], "n_allocations": 1, "name": "_prepare_conn at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:937", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_new_conn", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "984"], "n_allocations": 1, "name": "_new_conn at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:984", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_get_conn", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "274"], "n_allocations": 2, "name": "_get_conn at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:274", "thread_id": "0x1d", "value": 1640}], "interesting": true, "location": ["urlopen", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "654"], "n_allocations": 2, "name": "urlopen at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:654", "thread_id": "0x1d", "value": 1640}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "499"], "n_allocations": 14502, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:499", "thread_id": "0x1d", "value": 810087}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["get_encoding_from_headers", "/databricks/python3/lib/python3.7/site-packages/requests/utils.py", "545"], "n_allocations": 1, "name": "get_encoding_from_headers at /databricks/python3/lib/python3.7/site-packages/requests/utils.py:545", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["build_response", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "315"], "n_allocations": 1, "name": "build_response at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:315", "thread_id": "0x1d", "value": 520}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "692"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/requests/models.py:692", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["build_response", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "306"], "n_allocations": 1, "name": "build_response at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:306", "thread_id": "0x1d", "value": 576}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["extract_cookies", "/usr/lib/python3.7/http/cookiejar.py", "1673"], "n_allocations": 1, "name": "\n", "thread_id": "0x1d", "value": 568}], "interesting": true, "location": ["extract_cookies_to_jar", "/databricks/python3/lib/python3.7/site-packages/requests/cookies.py", "137"], "n_allocations": 1, "name": "extract_cookies_to_jar at /databricks/python3/lib/python3.7/site-packages/requests/cookies.py:137", "thread_id": "0x1d", "value": 568}], "interesting": true, "location": ["build_response", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "325"], "n_allocations": 1, "name": "build_response at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:325", "thread_id": "0x1d", "value": 568}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "584"], "n_allocations": 3, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:584", "thread_id": "0x1d", "value": 1664}, {"children": [{"children": [], "interesting": true, "location": ["cert_verify", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "260"], "n_allocations": 1, "name": "cert_verify at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:260", "thread_id": "0x1d", "value": 536}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "460"], "n_allocations": 1, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:460", "thread_id": "0x1d", "value": 536}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "41"], "n_allocations": 1, "name": " self.mutex = threading.Lock()\n", "thread_id": "0x1d", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "49"], "n_allocations": 1, "name": " self.not_full = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "53"], "n_allocations": 1, "name": " self.all_tasks_done = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "195"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:195", "thread_id": "0x1d", "value": 1088}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["notify", "/usr/lib/python3.7/threading.py", "348"], "n_allocations": 1, "name": " waiters_to_notify = _deque(_islice(all_waiters, n))\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["put", "/usr/lib/python3.7/queue.py", "151"], "n_allocations": 1, "name": " self.not_empty.notify()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "203"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:203", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "909"], "n_allocations": 5, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:909", "thread_id": "0x1d", "value": 2160}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "919"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:919", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_new_pool", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "202"], "n_allocations": 7, "name": "_new_pool at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:202", "thread_id": "0x1d", "value": 3936}], "interesting": true, "location": ["connection_from_pool_key", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "268"], "n_allocations": 7, "name": "connection_from_pool_key at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:268", "thread_id": "0x1d", "value": 3936}], "interesting": true, "location": ["connection_from_context", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "247"], "n_allocations": 8, "name": "connection_from_context at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:247", "thread_id": "0x1d", "value": 4464}, {"children": [{"children": [], "interesting": true, "location": ["_default_key_normalizer", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "114"], "n_allocations": 1, "name": "_default_key_normalizer at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:114", "thread_id": "0x1d", "value": 824}], "interesting": true, "location": ["connection_from_context", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "245"], "n_allocations": 1, "name": "connection_from_context at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:245", "thread_id": "0x1d", "value": 824}], "interesting": true, "location": ["connection_from_host", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "234"], "n_allocations": 9, "name": "connection_from_host at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:234", "thread_id": "0x1d", "value": 5288}], "interesting": true, "location": ["connection_from_url", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "286"], "n_allocations": 9, "name": "connection_from_url at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:286", "thread_id": "0x1d", "value": 5288}], "interesting": true, "location": ["get_connection", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "358"], "n_allocations": 9, "name": "get_connection at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:358", "thread_id": "0x1d", "value": 5288}], "interesting": true, "location": ["get_connection", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_bigger_block_size_http_adapters.py", "41"], "n_allocations": 9, "name": "get_connection at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_bigger_block_size_http_adapters.py:41", "thread_id": "0x1d", "value": 5288}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "456"], "n_allocations": 9, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:456", "thread_id": "0x1d", "value": 5288}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "701"], "n_allocations": 14516, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:701", "thread_id": "0x1d", "value": 818239}, {"children": [], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "739"], "n_allocations": 1, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:739", "thread_id": "0x1d", "value": 640}], "interesting": true, "location": ["request", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "587"], "n_allocations": 14520, "name": "request at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:587", "thread_id": "0x1d", "value": 1082119}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["parse_url", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py", "381"], "n_allocations": 1, "name": "parse_url at /databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py:381", "thread_id": "0x1d", "value": 520}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py", "106"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py:106", "thread_id": "0x1d", "value": 536}], "interesting": true, "location": ["parse_url", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py", "421"], "n_allocations": 2, "name": "parse_url at /databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py:421", "thread_id": "0x1d", "value": 1088}, {"children": [], "interesting": true, "location": ["parse_url", "/databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py", "385"], "n_allocations": 1, "name": "parse_url at /databricks/python3/lib/python3.7/site-packages/urllib3/util/url.py:385", "thread_id": "0x1d", "value": 536}], "interesting": true, "location": ["prepare_url", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "434"], "n_allocations": 5, "name": "prepare_url at /databricks/python3/lib/python3.7/site-packages/requests/models.py:434", "thread_id": "0x1d", "value": 2720}, {"children": [{"children": [], "interesting": true, "location": ["_encode_params", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "132"], "n_allocations": 1, "name": "_encode_params at /databricks/python3/lib/python3.7/site-packages/requests/models.py:132", "thread_id": "0x1d", "value": 584}], "interesting": true, "location": ["prepare_url", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "474"], "n_allocations": 1, "name": "prepare_url at /databricks/python3/lib/python3.7/site-packages/requests/models.py:474", "thread_id": "0x1d", "value": 584}], "interesting": true, "location": ["prepare", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "368"], "n_allocations": 7, "name": "prepare at /databricks/python3/lib/python3.7/site-packages/requests/models.py:368", "thread_id": "0x1d", "value": 3888}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["add_cookie_header", "/usr/lib/python3.7/http/cookiejar.py", "1358"], "n_allocations": 1, "name": " try:\n", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["get_cookie_header", "/databricks/python3/lib/python3.7/site-packages/requests/cookies.py", "147"], "n_allocations": 1, "name": "get_cookie_header at /databricks/python3/lib/python3.7/site-packages/requests/cookies.py:147", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["prepare_cookies", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "627"], "n_allocations": 1, "name": "prepare_cookies at /databricks/python3/lib/python3.7/site-packages/requests/models.py:627", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["prepare", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "370"], "n_allocations": 1, "name": "prepare at /databricks/python3/lib/python3.7/site-packages/requests/models.py:370", "thread_id": "0x1d", "value": 520}, {"children": [{"children": [], "interesting": true, "location": ["prepare_headers", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "491"], "n_allocations": 1, "name": "prepare_headers at /databricks/python3/lib/python3.7/site-packages/requests/models.py:491", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["prepare", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "369"], "n_allocations": 1, "name": "prepare at /databricks/python3/lib/python3.7/site-packages/requests/models.py:369", "thread_id": "0x1d", "value": 520}, {"children": [], "interesting": true, "location": ["prepare", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "371"], "n_allocations": 1, "name": "prepare at /databricks/python3/lib/python3.7/site-packages/requests/models.py:371", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["prepare_request", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "496"], "n_allocations": 11, "name": "prepare_request at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:496", "thread_id": "0x1d", "value": 6008}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/netrc.py", "22"], "n_allocations": 1, "name": "class netrc:\n", "thread_id": "0x1d", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/netrc.py", "10"], "n_allocations": 1, "name": "class NetrcParseError(Exception):\n", "thread_id": "0x1d", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/netrc.py", "5"], "n_allocations": 1, "name": "import os, shlex, stat\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1d", "value": 2448}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1d", "value": 2448}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1d", "value": 743}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1d", "value": 743}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1d", "value": 743}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1d", "value": 3191}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1d", "value": 3191}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1d", "value": 3191}], "interesting": true, "location": ["get_netrc_auth", "/databricks/python3/lib/python3.7/site-packages/requests/utils.py", "204"], "n_allocations": 4, "name": "get_netrc_auth at /databricks/python3/lib/python3.7/site-packages/requests/utils.py:204", "thread_id": "0x1d", "value": 3191}], "interesting": true, "location": ["prepare_request", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "481"], "n_allocations": 5, "name": "prepare_request at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:481", "thread_id": "0x1d", "value": 3775}], "interesting": true, "location": ["request", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "573"], "n_allocations": 17, "name": "request at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:573", "thread_id": "0x1d", "value": 10335}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["should_bypass_proxies", "/databricks/python3/lib/python3.7/site-packages/requests/utils.py", "809"], "n_allocations": 1, "name": "should_bypass_proxies at /databricks/python3/lib/python3.7/site-packages/requests/utils.py:809", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["get_environ_proxies", "/databricks/python3/lib/python3.7/site-packages/requests/utils.py", "825"], "n_allocations": 2, "name": "get_environ_proxies at /databricks/python3/lib/python3.7/site-packages/requests/utils.py:825", "thread_id": "0x1d", "value": 1080}], "interesting": true, "location": ["merge_environment_settings", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "759"], "n_allocations": 2, "name": "merge_environment_settings at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:759", "thread_id": "0x1d", "value": 1080}], "interesting": true, "location": ["request", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "578"], "n_allocations": 3, "name": "request at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:578", "thread_id": "0x1d", "value": 1600}, {"children": [], "interesting": true, "location": ["request", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "571"], "n_allocations": 1, "name": "request at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:571", "thread_id": "0x1d", "value": 544}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py", "336"], "n_allocations": 14542, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py:336", "thread_id": "0x1d", "value": 1095270}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/http/cookiejar.py", "897"], "n_allocations": 1, "name": " self.strict_ns_set_initial_dollar = strict_ns_set_initial_dollar\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/http/cookiejar.py", "1251"], "n_allocations": 2, "name": " dots_re = re.compile(r\"^\\.+\")\n", "thread_id": "0x1d", "value": 1096}, {"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/http/cookiejar.py", "1254"], "n_allocations": 1, "name": "\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["cookiejar_from_dict", "/databricks/python3/lib/python3.7/site-packages/requests/cookies.py", "531"], "n_allocations": 3, "name": "cookiejar_from_dict at /databricks/python3/lib/python3.7/site-packages/requests/cookies.py:531", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "444"], "n_allocations": 4, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:444", "thread_id": "0x1d", "value": 1704}], "interesting": true, "location": ["open", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py", "260"], "n_allocations": 4, "name": "open at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py:260", "thread_id": "0x1d", "value": 1704}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/urllib3/_collections.py", "51"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/urllib3/_collections.py:51", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py", "162"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/urllib3/poolmanager.py:162", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["init_poolmanager", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "198"], "n_allocations": 1, "name": "init_poolmanager at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:198", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "156"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:156", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["_init_session", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py", "254"], "n_allocations": 1, "name": "_init_session at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py:254", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["open", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py", "261"], "n_allocations": 1, "name": "open at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py:261", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py", "311"], "n_allocations": 5, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py:311", "thread_id": "0x1d", "value": 1736}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "335"], "n_allocations": 14548, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:335", "thread_id": "0x1d", "value": 1097590}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "103"], "n_allocations": 14548, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:103", "thread_id": "0x1d", "value": 1097590}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14548, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1097590}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["put", "/usr/lib/python3.7/queue.py", "151"], "n_allocations": 1, "name": " self.not_empty.notify()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "135"], "n_allocations": 1, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:135", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "894"], "n_allocations": 1, "name": " self.emit(record)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["callHandlers", "/usr/lib/python3.7/logging/__init__.py", "1586"], "n_allocations": 1, "name": " hdlr.handle(record)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "1524"], "n_allocations": 1, "name": " self.callHandlers(record)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["_log", "/usr/lib/python3.7/logging/__init__.py", "1514"], "n_allocations": 1, "name": " self.handle(record)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["info", "/usr/lib/python3.7/logging/__init__.py", "1378"], "n_allocations": 1, "name": " self._log(INFO, msg, args, **kwargs)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["on_response", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "503"], "n_allocations": 1, "name": "on_response at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:503", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 2, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 1088}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "76"], "n_allocations": 2, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:76", "thread_id": "0x1d", "value": 1088}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["on_request", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "429"], "n_allocations": 1, "name": "on_request at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:429", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 2, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 1120}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "69"], "n_allocations": 2, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:69", "thread_id": "0x1d", "value": 1120}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14552, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1099798}, {"children": [{"children": [], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 1, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 568}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "69"], "n_allocations": 1, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:69", "thread_id": "0x1d", "value": 568}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py", "313"], "n_allocations": 14553, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py:313", "thread_id": "0x1d", "value": 1100366}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14554, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1100910}, {"children": [{"children": [], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 1, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "76"], "n_allocations": 1, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:76", "thread_id": "0x1d", "value": 560}, {"children": [{"children": [], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 1, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 608}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "69"], "n_allocations": 1, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:69", "thread_id": "0x1d", "value": 608}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14556, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1102078}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["on_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/authentication.py", "142"], "n_allocations": 1, "name": "on_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/authentication.py:142", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 2, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "69"], "n_allocations": 2, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:69", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14558, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1103150}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14558, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1103150}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_parse_sub", "/databricks/python3/lib/python3.7/sre_parse.py", "420"], "n_allocations": 1, "name": "_parse_sub at /databricks/python3/lib/python3.7/sre_parse.py:420", "thread_id": "0x1d", "value": 856}], "interesting": true, "location": ["_parse", "/databricks/python3/lib/python3.7/sre_parse.py", "810"], "n_allocations": 2, "name": "_parse at /databricks/python3/lib/python3.7/sre_parse.py:810", "thread_id": "0x1d", "value": 1424}], "interesting": true, "location": ["_parse_sub", "/databricks/python3/lib/python3.7/sre_parse.py", "420"], "n_allocations": 2, "name": "_parse_sub at /databricks/python3/lib/python3.7/sre_parse.py:420", "thread_id": "0x1d", "value": 1424}], "interesting": true, "location": ["parse", "/databricks/python3/lib/python3.7/sre_parse.py", "924"], "n_allocations": 2, "name": "parse at /databricks/python3/lib/python3.7/sre_parse.py:924", "thread_id": "0x1d", "value": 1424}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "764"], "n_allocations": 2, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:764", "thread_id": "0x1d", "value": 1424}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/sre_compile.py", "148"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/sre_compile.py:148", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_code", "/databricks/python3/lib/python3.7/sre_compile.py", "607"], "n_allocations": 1, "name": "_code at /databricks/python3/lib/python3.7/sre_compile.py:607", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "768"], "n_allocations": 1, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:768", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/re.py", "286"], "n_allocations": 3, "name": "_compile at /databricks/python3/lib/python3.7/re.py:286", "thread_id": "0x1d", "value": 2112}], "interesting": true, "location": ["search", "/databricks/python3/lib/python3.7/re.py", "183"], "n_allocations": 3, "name": "search at /databricks/python3/lib/python3.7/re.py:183", "thread_id": "0x1d", "value": 2112}], "interesting": true, "location": ["_findSoname_ldconfig", "/usr/lib/python3.7/ctypes/util.py", "292"], "n_allocations": 3, "name": " \u0027arm-32\u0027: \u0027libc6(,hard-float)?\u0027,\n", "thread_id": "0x1d", "value": 2112}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_get_devnull", "/usr/lib/python3.7/subprocess.py", "892"], "n_allocations": 1, "name": " self._devnull = os.open(os.devnull, os.O_RDWR)\n", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_get_handles", "/usr/lib/python3.7/subprocess.py", "1371"], "n_allocations": 1, "name": " p2cread = self._get_devnull()\n", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/subprocess.py", "753"], "n_allocations": 1, "name": " errread, errwrite) = self._get_handles(stdin, stdout, stderr)\n", "thread_id": "0x1d", "value": 1112}, {"children": [{"children": [], "interesting": true, "location": ["_execute_child", "/usr/lib/python3.7/subprocess.py", "1482"], "n_allocations": 8, "name": " restore_signals, start_new_session, preexec_fn)\n", "thread_id": "0x1d", "value": 192}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/subprocess.py", "800"], "n_allocations": 8, "name": " restore_signals, start_new_session)\n", "thread_id": "0x1d", "value": 192}], "interesting": true, "location": ["_findSoname_ldconfig", "/usr/lib/python3.7/ctypes/util.py", "291"], "n_allocations": 9, "name": " # library wins; uname doesn\u0027t tell us which ABI we\u0027re using\n", "thread_id": "0x1d", "value": 1304}], "interesting": true, "location": ["find_library", "/usr/lib/python3.7/ctypes/util.py", "322"], "n_allocations": 13, "name": " p = subprocess.Popen(cmd, stdout=subprocess.PIPE,\n", "thread_id": "0x1d", "value": 3960}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/ctypes/__init__.py", "364"], "n_allocations": 1, "name": " self._handle = _dlopen(self._name, mode)\n", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/ctypes/__init__.py", "358"], "n_allocations": 1, "name": " class _FuncPtr(_CFuncPtr):\n", "thread_id": "0x1d", "value": 936}], "interesting": true, "location": ["_load_system_functions", "/usr/lib/python3.7/uuid.py", "602"], "n_allocations": 15, "name": " lib = ctypes.CDLL(ctypes.util.find_library(libname))\n", "thread_id": "0x1d", "value": 4928}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/ctypes/util.py", "3"], "n_allocations": 1, "name": "import subprocess\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_load_system_functions", "/usr/lib/python3.7/uuid.py", "593"], "n_allocations": 1, "name": " import ctypes.util\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["uuid1", "/usr/lib/python3.7/uuid.py", "722"], "n_allocations": 17, "name": " _load_system_functions()\n", "thread_id": "0x1d", "value": 6048}], "interesting": true, "location": ["on_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py", "139"], "n_allocations": 18, "name": "on_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py:139", "thread_id": "0x1d", "value": 6624}, {"children": [], "interesting": true, "location": ["on_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py", "135"], "n_allocations": 1, "name": "on_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py:135", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 19, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 7176}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "69"], "n_allocations": 19, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:69", "thread_id": "0x1d", "value": 7176}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py", "520"], "n_allocations": 14577, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py:520", "thread_id": "0x1d", "value": 1110326}, {"children": [], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py", "517"], "n_allocations": 1, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py:517", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14579, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1111382}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_redirect.py", "153"], "n_allocations": 14579, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_redirect.py:153", "thread_id": "0x1d", "value": 1111382}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14579, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1111382}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["deserialize_from_http_generics", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "627"], "n_allocations": 1, "name": "deserialize_from_http_generics at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:627", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["on_response", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "665"], "n_allocations": 1, "name": "on_response at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:665", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 1, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "76"], "n_allocations": 1, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:76", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14580, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1111934}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14580, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1111934}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14580, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1111934}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 14580, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 1111934}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "211"], "n_allocations": 14580, "name": "run at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:211", "thread_id": "0x1d", "value": 1111934}, {"children": [{"children": [], "interesting": true, "location": ["_prepare_multipart", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "189"], "n_allocations": 1, "name": "_prepare_multipart at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:189", "thread_id": "0x1d", "value": 536}, {"children": [{"children": [], "interesting": true, "location": ["prepare_multipart_body", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_base.py", "354"], "n_allocations": 1, "name": "prepare_multipart_body at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_base.py:354", "thread_id": "0x1d", "value": 544}], "interesting": true, "location": ["_prepare_multipart", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "190"], "n_allocations": 1, "name": "_prepare_multipart at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:190", "thread_id": "0x1d", "value": 544}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "201"], "n_allocations": 2, "name": "run at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:201", "thread_id": "0x1d", "value": 1080}], "interesting": true, "location": ["get_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "1869"], "n_allocations": 14582, "name": "get_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1869", "thread_id": "0x1d", "value": 1113014}, {"children": [{"children": [], "interesting": true, "location": ["build_get_properties_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "148"], "n_allocations": 1, "name": "build_get_properties_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:148", "thread_id": "0x1d", "value": 520}, {"children": [{"children": [], "interesting": true, "location": ["url", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "703"], "n_allocations": 1, "name": "url at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:703", "thread_id": "0x1d", "value": 544}], "interesting": true, "location": ["build_get_properties_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "145"], "n_allocations": 1, "name": "build_get_properties_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:145", "thread_id": "0x1d", "value": 544}, {"children": [], "interesting": true, "location": ["build_get_properties_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "184"], "n_allocations": 1, "name": "build_get_properties_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:184", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["get_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "1863"], "n_allocations": 4, "name": "get_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1863", "thread_id": "0x1d", "value": 2240}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["parsedate_tz", "/usr/lib/python3.7/email/_parseaddr.py", "50"], "n_allocations": 1, "name": " res = _parsedate_tz(data)\n", "thread_id": "0x1d", "value": 592}], "interesting": true, "location": ["deserialize_rfc", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1904"], "n_allocations": 1, "name": "deserialize_rfc at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1904", "thread_id": "0x1d", "value": 592}], "interesting": true, "location": ["deserialize_data", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1603"], "n_allocations": 2, "name": "deserialize_data at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1603", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_deserialize", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1412"], "n_allocations": 3, "name": "_deserialize at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1412", "thread_id": "0x1d", "value": 1664}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1378"], "n_allocations": 4, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1378", "thread_id": "0x1d", "value": 2304}, {"children": [{"children": [], "interesting": true, "location": ["_unpack_content", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1546"], "n_allocations": 1, "name": "_unpack_content at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1546", "thread_id": "0x1d", "value": 544}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1377"], "n_allocations": 1, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1377", "thread_id": "0x1d", "value": 544}], "interesting": true, "location": ["get_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "1880"], "n_allocations": 5, "name": "get_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1880", "thread_id": "0x1d", "value": 2848}, {"children": [{"children": [], "interesting": true, "location": ["format_url", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_base.py", "570"], "n_allocations": 1, "name": "format_url at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_base.py:570", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["get_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "1866"], "n_allocations": 2, "name": "get_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1866", "thread_id": "0x1d", "value": 1064}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_models.py", "652"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_models.py:652", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["deserialize_blob_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_deserialize.py", "50"], "n_allocations": 1, "name": "deserialize_blob_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_deserialize.py:50", "thread_id": "0x1d", "value": 1112}, {"children": [], "interesting": true, "location": ["deserialize_blob_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_deserialize.py", "49"], "n_allocations": 1, "name": "deserialize_blob_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_deserialize.py:49", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["get_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "1967"], "n_allocations": 2, "name": "get_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1967", "thread_id": "0x1d", "value": 1640}], "interesting": true, "location": ["wrapper_use_tracer", "/databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py", "78"], "n_allocations": 14596, "name": "wrapper_use_tracer at /databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py:78", "thread_id": "0x1d", "value": 1121582}], "interesting": true, "location": ["get_blob_properties", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py", "1297"], "n_allocations": 14598, "name": "get_blob_properties at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py:1297", "thread_id": "0x1d", "value": 1122750}], "interesting": true, "location": ["wrapper_use_tracer", "/databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py", "78"], "n_allocations": 14599, "name": "wrapper_use_tracer at /databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py:78", "thread_id": "0x1d", "value": 1123310}], "interesting": true, "location": ["_get_object_properties", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "623"], "n_allocations": 14600, "name": "_get_object_properties at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:623", "thread_id": "0x1d", "value": 1123894}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/retry.py", "253"], "n_allocations": 14600, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/retry.py:253", "thread_id": "0x1d", "value": 1123894}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "609"], "n_allocations": 14601, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:609", "thread_id": "0x1d", "value": 1124526}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_parse_sub", "/databricks/python3/lib/python3.7/sre_parse.py", "420"], "n_allocations": 1, "name": "_parse_sub at /databricks/python3/lib/python3.7/sre_parse.py:420", "thread_id": "0x1d", "value": 856}], "interesting": true, "location": ["_parse", "/databricks/python3/lib/python3.7/sre_parse.py", "730"], "n_allocations": 2, "name": "_parse at /databricks/python3/lib/python3.7/sre_parse.py:730", "thread_id": "0x1d", "value": 1424}], "interesting": true, "location": ["_parse_sub", "/databricks/python3/lib/python3.7/sre_parse.py", "420"], "n_allocations": 3, "name": "_parse_sub at /databricks/python3/lib/python3.7/sre_parse.py:420", "thread_id": "0x1d", "value": 2280}], "interesting": true, "location": ["_parse", "/databricks/python3/lib/python3.7/sre_parse.py", "810"], "n_allocations": 3, "name": "_parse at /databricks/python3/lib/python3.7/sre_parse.py:810", "thread_id": "0x1d", "value": 2280}], "interesting": true, "location": ["_parse_sub", "/databricks/python3/lib/python3.7/sre_parse.py", "420"], "n_allocations": 3, "name": "_parse_sub at /databricks/python3/lib/python3.7/sre_parse.py:420", "thread_id": "0x1d", "value": 2280}], "interesting": true, "location": ["parse", "/databricks/python3/lib/python3.7/sre_parse.py", "924"], "n_allocations": 3, "name": "parse at /databricks/python3/lib/python3.7/sre_parse.py:924", "thread_id": "0x1d", "value": 2280}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "764"], "n_allocations": 3, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:764", "thread_id": "0x1d", "value": 2280}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/sre_compile.py", "148"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/sre_compile.py:148", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/sre_compile.py", "184"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/sre_compile.py:184", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/sre_compile.py", "168"], "n_allocations": 2, "name": "_compile at /databricks/python3/lib/python3.7/sre_compile.py:168", "thread_id": "0x1d", "value": 1376}], "interesting": true, "location": ["_code", "/databricks/python3/lib/python3.7/sre_compile.py", "607"], "n_allocations": 2, "name": "_code at /databricks/python3/lib/python3.7/sre_compile.py:607", "thread_id": "0x1d", "value": 1376}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "768"], "n_allocations": 2, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:768", "thread_id": "0x1d", "value": 1376}, {"children": [], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "783"], "n_allocations": 1, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:783", "thread_id": "0x1d", "value": 648}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/re.py", "286"], "n_allocations": 6, "name": "_compile at /databricks/python3/lib/python3.7/re.py:286", "thread_id": "0x1d", "value": 4304}], "interesting": true, "location": ["match", "/databricks/python3/lib/python3.7/re.py", "173"], "n_allocations": 6, "name": "match at /databricks/python3/lib/python3.7/re.py:173", "thread_id": "0x1d", "value": 4304}], "interesting": true, "location": ["parse_azfs_path", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "63"], "n_allocations": 6, "name": "parse_azfs_path at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:63", "thread_id": "0x1d", "value": 4304}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "602"], "n_allocations": 6, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:602", "thread_id": "0x1d", "value": 4304}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "538"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:538", "thread_id": "0x1d", "value": 576}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "540"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:540", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py", "60"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:60", "thread_id": "0x1d", "value": 2784}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1358"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1358", "thread_id": "0x1d", "value": 2208}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1352"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1352", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py", "61"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:61", "thread_id": "0x1d", "value": 2784}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "393"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:393", "thread_id": "0x1d", "value": 1024}], "interesting": true, "location": ["_configure", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py", "51"], "n_allocations": 1, "name": "_configure at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py:51", "thread_id": "0x1d", "value": 1024}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_retry.py", "75"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_retry.py:75", "thread_id": "0x1d", "value": 16384}], "interesting": true, "location": ["_configure", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py", "52"], "n_allocations": 1, "name": "_configure at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py:52", "thread_id": "0x1d", "value": 16384}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py", "41"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py:41", "thread_id": "0x1d", "value": 17408}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py", "56"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:56", "thread_id": "0x1d", "value": 17408}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py", "188"], "n_allocations": 6, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py:188", "thread_id": "0x1d", "value": 22976}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_create_pipeline", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "222"], "n_allocations": 1, "name": "_create_pipeline at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:222", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "112"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:112", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py", "187"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py:187", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["get_blob_client", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "744"], "n_allocations": 7, "name": "get_blob_client at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:744", "thread_id": "0x1d", "value": 23552}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "606"], "n_allocations": 7, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:606", "thread_id": "0x1d", "value": 23552}], "interesting": true, "location": ["open", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "139"], "n_allocations": 14615, "name": "open at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:139", "thread_id": "0x1d", "value": 1152910}, {"children": [], "interesting": true, "location": ["open", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "143"], "n_allocations": 2, "name": "open at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:143", "thread_id": "0x1d", "value": 16777248}], "interesting": true, "location": ["_path_open", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstoragefilesystem.py", "138"], "n_allocations": 14617, "name": "_path_open at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstoragefilesystem.py:138", "thread_id": "0x1d", "value": 17930158}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1358"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1358", "thread_id": "0x1d", "value": 2208}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "1352"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:1352", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py", "61"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:61", "thread_id": "0x1d", "value": 3312}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py", "38"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py:38", "thread_id": "0x1d", "value": 576}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_retry.py", "75"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_retry.py:75", "thread_id": "0x1d", "value": 16384}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_retry.py", "77"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_retry.py:77", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_configure", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py", "52"], "n_allocations": 2, "name": "_configure at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py:52", "thread_id": "0x1d", "value": 16960}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "393"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:393", "thread_id": "0x1d", "value": 1024}], "interesting": true, "location": ["_configure", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py", "51"], "n_allocations": 1, "name": "_configure at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py:51", "thread_id": "0x1d", "value": 1024}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py", "41"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_configuration.py:41", "thread_id": "0x1d", "value": 17984}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py", "56"], "n_allocations": 4, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:56", "thread_id": "0x1d", "value": 18560}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "540"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:540", "thread_id": "0x1d", "value": 2208}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py", "538"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_serialization.py:538", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py", "60"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/_azure_blob_storage.py:60", "thread_id": "0x1d", "value": 2784}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "139"], "n_allocations": 10, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:139", "thread_id": "0x1d", "value": 286800}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "783"], "n_allocations": 1, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:783", "thread_id": "0x1d", "value": 784}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/sre_compile.py", "148"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/sre_compile.py:148", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_code", "/databricks/python3/lib/python3.7/sre_compile.py", "607"], "n_allocations": 1, "name": "_code at /databricks/python3/lib/python3.7/sre_compile.py:607", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "768"], "n_allocations": 1, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:768", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/re.py", "286"], "n_allocations": 2, "name": "_compile at /databricks/python3/lib/python3.7/re.py:286", "thread_id": "0x1d", "value": 1472}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/re.py", "234"], "n_allocations": 2, "name": "compile at /databricks/python3/lib/python3.7/re.py:234", "thread_id": "0x1d", "value": 1472}], "interesting": true, "location": ["filterwarnings", "/databricks/python3/lib/python3.7/warnings.py", "155"], "n_allocations": 2, "name": "filterwarnings at /databricks/python3/lib/python3.7/warnings.py:155", "thread_id": "0x1d", "value": 1472}], "interesting": true, "location": ["platform", "/usr/lib/python3.7/platform.py", "1404"], "n_allocations": 2, "name": " DeprecationWarning,\n", "thread_id": "0x1d", "value": 1472}, {"children": [{"children": [], "interesting": true, "location": ["dist", "/usr/lib/python3.7/platform.py", "437"], "n_allocations": 1, "name": " full_distribution_name=0)\n", "thread_id": "0x1d", "value": 624}], "interesting": true, "location": ["platform", "/usr/lib/python3.7/platform.py", "1406"], "n_allocations": 1, "name": " distname, distversion, distid = dist(\u0027\u0027)\n", "thread_id": "0x1d", "value": 624}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "204"], "n_allocations": 4, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:204", "thread_id": "0x1d", "value": 2784}], "interesting": true, "location": ["create_configuration", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "419"], "n_allocations": 4, "name": "create_configuration at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:419", "thread_id": "0x1d", "value": 2784}, {"children": [], "interesting": true, "location": ["create_configuration", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "425"], "n_allocations": 1, "name": "create_configuration at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:425", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_create_pipeline", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "232"], "n_allocations": 5, "name": "_create_pipeline at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:232", "thread_id": "0x1d", "value": 3360}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "393"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:393", "thread_id": "0x1d", "value": 1024}], "interesting": true, "location": ["_create_pipeline", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "255"], "n_allocations": 1, "name": "_create_pipeline at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:255", "thread_id": "0x1d", "value": 1024}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "112"], "n_allocations": 7, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:112", "thread_id": "0x1d", "value": 4960}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "138"], "n_allocations": 7, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:138", "thread_id": "0x1d", "value": 4960}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["parse_qs", "/usr/lib/python3.7/urllib/parse.py", "675"], "n_allocations": 1, "name": " into Unicode characters, as accepted by the bytes.decode() method.\n", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["parse_query", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "450"], "n_allocations": 2, "name": "parse_query at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:450", "thread_id": "0x1d", "value": 1104}, {"children": [], "interesting": true, "location": ["parse_query", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "449"], "n_allocations": 1, "name": "parse_query at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:449", "thread_id": "0x1d", "value": 648}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "136"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:136", "thread_id": "0x1d", "value": 1752}, {"children": [{"children": [], "interesting": true, "location": ["urlparse", "/usr/lib/python3.7/urllib/parse.py", "374"], "n_allocations": 1, "name": " url, params = _splitparams(url)\n", "thread_id": "0x1d", "value": 520}, {"children": [], "interesting": true, "location": ["urlparse", "/usr/lib/python3.7/urllib/parse.py", "368"], "n_allocations": 1, "name": " Note that we don\u0027t break the components up in smaller bits\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "132"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:132", "thread_id": "0x1d", "value": 1608}, {"children": [{"children": [], "interesting": true, "location": ["_configure_encryption", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_encryption.py", "59"], "n_allocations": 1, "name": "_configure_encryption at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_encryption.py:59", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "141"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:141", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["from_connection_string", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "184"], "n_allocations": 25, "name": "from_connection_string at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:184", "thread_id": "0x1d", "value": 296224}, {"children": [], "interesting": true, "location": ["from_connection_string", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py", "181"], "n_allocations": 1, "name": "from_connection_string at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_service_client.py:181", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "111"], "n_allocations": 26, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:111", "thread_id": "0x1d", "value": 296744}], "interesting": true, "location": ["_path_open", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstoragefilesystem.py", "137"], "n_allocations": 26, "name": "_path_open at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstoragefilesystem.py:137", "thread_id": "0x1d", "value": 296744}], "interesting": true, "location": ["open", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstoragefilesystem.py", "177"], "n_allocations": 14643, "name": "open at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstoragefilesystem.py:177", "thread_id": "0x1d", "value": 18226902}], "interesting": true, "location": ["open", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystems.py", "244"], "n_allocations": 14643, "name": "open at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystems.py:244", "thread_id": "0x1d", "value": 18226902}, {"children": [], "interesting": true, "location": ["open", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystems.py", "243"], "n_allocations": 1, "name": "open at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystems.py:243", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["open_file", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/filebasedsource.py", "176"], "n_allocations": 14644, "name": "open_file at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/filebasedsource.py:176", "thread_id": "0x1d", "value": 18227422}], "interesting": true, "location": ["read_records", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py", "331"], "n_allocations": 14644, "name": "read_records at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py:331", "thread_id": "0x1d", "value": 18227422}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 1, "name": " save(args)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1309"], "n_allocations": 3, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1309", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 3, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 3, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 3, "name": " save(v)\n", "thread_id": "0x1d", "value": 1656}, {"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "884"], "n_allocations": 1, "name": " save(k)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 4, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 4, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 4, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 5, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 2728}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 5, "name": " save(state)\n", "thread_id": "0x1d", "value": 2728}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 1, "name": " save(cls)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 7, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 3832}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 7, "name": " save(v)\n", "thread_id": "0x1d", "value": 3832}, {"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "884"], "n_allocations": 1, "name": " save(k)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 8, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 4384}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 8, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 4384}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 8, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 4384}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 8, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 4384}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 8, "name": " save(state)\n", "thread_id": "0x1d", "value": 4384}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 1, "name": " save(cls)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 9, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 4936}], "interesting": true, "location": ["dump", "/usr/lib/python3.7/pickle.py", "437"], "n_allocations": 9, "name": " self.save(obj)\n", "thread_id": "0x1d", "value": 4936}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "445"], "n_allocations": 9, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:445", "thread_id": "0x1d", "value": 4936}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "259"], "n_allocations": 9, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:259", "thread_id": "0x1d", "value": 4936}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "265"], "n_allocations": 9, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:265", "thread_id": "0x1d", "value": 4936}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "246"], "n_allocations": 9, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:246", "thread_id": "0x1d", "value": 4936}, {"children": [{"children": [], "interesting": true, "location": ["b64encode", "/databricks/python3/lib/python3.7/base64.py", "58"], "n_allocations": 1, "name": "b64encode at /databricks/python3/lib/python3.7/base64.py:58", "thread_id": "0x1d", "value": 525}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "268"], "n_allocations": 1, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:268", "thread_id": "0x1d", "value": 525}], "interesting": true, "location": ["_nonhashable_dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "783"], "n_allocations": 10, "name": "_nonhashable_dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:783", "thread_id": "0x1d", "value": 5461}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["download", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "1587"], "n_allocations": 1, "name": "download at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1587", "thread_id": "0x1d", "value": 648}], "interesting": true, "location": ["wrapper_use_tracer", "/databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py", "78"], "n_allocations": 2, "name": "wrapper_use_tracer at /databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py:78", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["_initial_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "424"], "n_allocations": 4, "name": "_initial_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:424", "thread_id": "0x1d", "value": 2648}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["read", "/databricks/python3/lib/python3.7/site-packages/urllib3/response.py", "536"], "n_allocations": 1, "name": "read at /databricks/python3/lib/python3.7/site-packages/urllib3/response.py:536", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["stream", "/databricks/python3/lib/python3.7/site-packages/urllib3/response.py", "564"], "n_allocations": 1, "name": "stream at /databricks/python3/lib/python3.7/site-packages/urllib3/response.py:564", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["generate", "/databricks/python3/lib/python3.7/site-packages/requests/models.py", "816"], "n_allocations": 1, "name": "generate at /databricks/python3/lib/python3.7/site-packages/requests/models.py:816", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__next__", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py", "168"], "n_allocations": 1, "name": "__next__ at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py:168", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["process_content", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "47"], "n_allocations": 2, "name": "process_content at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:47", "thread_id": "0x1d", "value": 1048}], "interesting": true, "location": ["_initial_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "476"], "n_allocations": 3, "name": "_initial_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:476", "thread_id": "0x1d", "value": 1576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "366"], "n_allocations": 8, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:366", "thread_id": "0x1d", "value": 4808}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "337"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:337", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["download_blob", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py", "905"], "n_allocations": 10, "name": "download_blob at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py:905", "thread_id": "0x1d", "value": 6488}, {"children": [], "interesting": true, "location": ["download_blob", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py", "904"], "n_allocations": 1, "name": "download_blob at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py:904", "thread_id": "0x1d", "value": 624}], "interesting": true, "location": ["wrapper_use_tracer", "/databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py", "78"], "n_allocations": 11, "name": "wrapper_use_tracer at /databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py:78", "thread_id": "0x1d", "value": 7112}], "interesting": true, "location": ["get_range", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "631"], "n_allocations": 11, "name": "get_range at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:631", "thread_id": "0x1d", "value": 7112}, {"children": [{"children": [], "interesting": true, "location": ["readall", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "658"], "n_allocations": 1, "name": "readall at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:658", "thread_id": "0x1d", "value": 632}], "interesting": true, "location": ["get_range", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "633"], "n_allocations": 1, "name": "get_range at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:633", "thread_id": "0x1d", "value": 632}], "interesting": true, "location": ["readinto", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystemio.py", "112"], "n_allocations": 12, "name": "readinto at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystemio.py:112", "thread_id": "0x1d", "value": 7744}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py", "234"], "n_allocations": 1435, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py:234", "thread_id": "0x1d", "value": 104423}, {"children": [{"children": [], "interesting": true, "location": ["_build_nested_paths", "/databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py", "248"], "n_allocations": 1, "name": "_build_nested_paths at /databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py:248", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py", "237"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py:237", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["read_records", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py", "332"], "n_allocations": 1437, "name": "read_records at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py:332", "thread_id": "0x1d", "value": 107175}, {"children": [{"children": [], "interesting": true, "location": ["read", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/filebasedsource.py", "333"], "n_allocations": 1, "name": "read at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/filebasedsource.py:333", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["process", "/home/arwin.tio/.cache/bazel/_bazel_arwin.tio/67c27a0855206b8af49eb642831746da/execroot/cruise_ws/bazel-out/k8-fastbuild/bin/cruise/mlp/terra/examples/pipelines/databricks_submit_jar_job.runfiles/cruise_ws/cruise/mlp/terra/examples/pipelines/databricks_submit_jar_job_exedir/apache_beam/io/iobase.py", "1669"], "n_allocations": 1, "name": " current_restriction.range_tracker())\n", "thread_id": "0x1d", "value": 560}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 1, "name": " save(cls)\n", "thread_id": "0x1d", "value": 552}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 1, "name": " save(args)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1309"], "n_allocations": 2, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1309", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 2, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 2, "name": " save(v)\n", "thread_id": "0x1d", "value": 1104}, {"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "884"], "n_allocations": 2, "name": " save(k)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 4, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 4, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 4, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 4, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 4, "name": " save(state)\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 5, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 2760}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 5, "name": " save(v)\n", "thread_id": "0x1d", "value": 2760}, {"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "884"], "n_allocations": 1, "name": " save(k)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 6, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 3312}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 6, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 3312}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 6, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 3312}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 6, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 3312}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 6, "name": " save(state)\n", "thread_id": "0x1d", "value": 3312}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 6, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 3312}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 6, "name": " save(v)\n", "thread_id": "0x1d", "value": 3312}, {"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "884"], "n_allocations": 1, "name": " save(k)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 7, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 3864}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 7, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 3864}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 7, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 3864}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 7, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 3864}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 7, "name": " save(state)\n", "thread_id": "0x1d", "value": 3864}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 1, "name": " save(cls)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 8, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 8, "name": " save(element)\n", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 8, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["dump", "/usr/lib/python3.7/pickle.py", "437"], "n_allocations": 8, "name": " self.save(obj)\n", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "445"], "n_allocations": 8, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:445", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "259"], "n_allocations": 8, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:259", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "265"], "n_allocations": 8, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:265", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "246"], "n_allocations": 8, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:246", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["encode", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/iobase.py", "1589"], "n_allocations": 8, "name": "encode at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/iobase.py:1589", "thread_id": "0x1d", "value": 4416}], "interesting": true, "location": ["estimate_size", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "205"], "n_allocations": 8, "name": "estimate_size at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:205", "thread_id": "0x1d", "value": 4416}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_get_conn", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "251"], "n_allocations": 3, "name": "_get_conn at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:251", "thread_id": "0x1d", "value": 1560}], "interesting": true, "location": ["urlopen", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "654"], "n_allocations": 3, "name": "urlopen at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:654", "thread_id": "0x1d", "value": 1560}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["putrequest", "/usr/lib/python3.7/http/client.py", "1088"], "n_allocations": 1, "name": " `skip_accept_encoding\u0027 if True does not add automatically an\n", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_send_request", "/usr/lib/python3.7/http/client.py", "1267"], "n_allocations": 1, "name": "\n", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["request", "/usr/lib/python3.7/http/client.py", "1256"], "n_allocations": 1, "name": " values[i] = str(one_value).encode(\u0027ascii\u0027)\n", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["_make_request", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "387"], "n_allocations": 1, "name": "_make_request at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:387", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["urlopen", "/databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py", "672"], "n_allocations": 1, "name": "urlopen at /databricks/python3/lib/python3.7/site-packages/urllib3/connectionpool.py:672", "thread_id": "0x1d", "value": 1112}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/adapters.py", "499"], "n_allocations": 4, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/adapters.py:499", "thread_id": "0x1d", "value": 2672}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "701"], "n_allocations": 4, "name": "send at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:701", "thread_id": "0x1d", "value": 2672}], "interesting": true, "location": ["request", "/databricks/python3/lib/python3.7/site-packages/requests/sessions.py", "587"], "n_allocations": 4, "name": "request at /databricks/python3/lib/python3.7/site-packages/requests/sessions.py:587", "thread_id": "0x1d", "value": 2672}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py", "336"], "n_allocations": 4, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/transport/_requests_basic.py:336", "thread_id": "0x1d", "value": 2672}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py", "335"], "n_allocations": 4, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/base_client.py:335", "thread_id": "0x1d", "value": 2672}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "103"], "n_allocations": 4, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:103", "thread_id": "0x1d", "value": 2672}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 4, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 2672}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "114"], "n_allocations": 2, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:114", "thread_id": "0x1d", "value": 957}, {"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "115"], "n_allocations": 2, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:115", "thread_id": "0x1d", "value": 42}, {"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "126"], "n_allocations": 2, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:126", "thread_id": "0x1d", "value": 34}, {"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "112"], "n_allocations": 1, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:112", "thread_id": "0x1d", "value": 96}, {"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "132"], "n_allocations": 2, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:132", "thread_id": "0x1d", "value": 44}, {"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "117"], "n_allocations": 2, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:117", "thread_id": "0x1d", "value": 127}, {"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "120"], "n_allocations": 3, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:120", "thread_id": "0x1d", "value": 180}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "894"], "n_allocations": 14, "name": " self.emit(record)\n", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["callHandlers", "/usr/lib/python3.7/logging/__init__.py", "1586"], "n_allocations": 14, "name": " hdlr.handle(record)\n", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "1524"], "n_allocations": 14, "name": " self.callHandlers(record)\n", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["_log", "/usr/lib/python3.7/logging/__init__.py", "1514"], "n_allocations": 14, "name": " self.handle(record)\n", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["info", "/usr/lib/python3.7/logging/__init__.py", "1378"], "n_allocations": 14, "name": " self._log(INFO, msg, args, **kwargs)\n", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["on_response", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py", "503"], "n_allocations": 14, "name": "on_response at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_universal.py:503", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["await_result", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py", "34"], "n_allocations": 14, "name": "await_result at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_tools.py:34", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "76"], "n_allocations": 14, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:76", "thread_id": "0x1d", "value": 1480}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py", "313"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py:313", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py", "520"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_shared/policies.py:520", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_redirect.py", "153"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/policies/_redirect.py:153", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["send", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "71"], "n_allocations": 18, "name": "send at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:71", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py", "211"], "n_allocations": 18, "name": "run at /databricks/python3/lib/python3.7/site-packages/azure/core/pipeline/_base.py:211", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["download", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py", "1593"], "n_allocations": 18, "name": "download at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_generated/operations/_blob_operations.py:1593", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["wrapper_use_tracer", "/databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py", "78"], "n_allocations": 18, "name": "wrapper_use_tracer at /databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py:78", "thread_id": "0x1d", "value": 4152}], "interesting": true, "location": ["_initial_request", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "424"], "n_allocations": 19, "name": "_initial_request at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:424", "thread_id": "0x1d", "value": 4736}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py", "366"], "n_allocations": 19, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_download.py:366", "thread_id": "0x1d", "value": 4736}], "interesting": true, "location": ["download_blob", "/databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py", "905"], "n_allocations": 19, "name": "download_blob at /databricks/python3/lib/python3.7/site-packages/azure/storage/blob/_blob_client.py:905", "thread_id": "0x1d", "value": 4736}], "interesting": true, "location": ["wrapper_use_tracer", "/databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py", "78"], "n_allocations": 19, "name": "wrapper_use_tracer at /databricks/python3/lib/python3.7/site-packages/azure/core/tracing/decorator.py:78", "thread_id": "0x1d", "value": 4736}], "interesting": true, "location": ["get_range", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py", "631"], "n_allocations": 19, "name": "get_range at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/azure/blobstorageio.py:631", "thread_id": "0x1d", "value": 4736}], "interesting": true, "location": ["readinto", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystemio.py", "112"], "n_allocations": 19, "name": "readinto at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/filesystemio.py:112", "thread_id": "0x1d", "value": 4736}], "interesting": true, "location": ["read_row_group", "/databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py", "308"], "n_allocations": 408, "name": "read_row_group at /databricks/python3/lib/python3.7/site-packages/pyarrow/parquet.py:308", "thread_id": "0x1d", "value": 22855}], "interesting": true, "location": ["read_records", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py", "347"], "n_allocations": 408, "name": "read_records at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/parquetio.py:347", "thread_id": "0x1d", "value": 22855}, {"children": [], "interesting": true, "location": ["process", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "154"], "n_allocations": 1, "name": "process at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:154", "thread_id": "0x1d", "value": 16777216}, {"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py", "68"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py:68", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py", "194"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py:194", "thread_id": "0x1d", "value": 32}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["add_to_send_queue", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "523"], "n_allocations": 14, "name": "add_to_send_queue at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:523", "thread_id": "0x1d", "value": 21435282}], "interesting": true, "location": ["flush", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "133"], "n_allocations": 15, "name": "flush at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:133", "thread_id": "0x1d", "value": 32061152}], "interesting": true, "location": ["maybe_flush", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "128"], "n_allocations": 15, "name": "maybe_flush at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:128", "thread_id": "0x1d", "value": 32061152}], "interesting": true, "location": ["process", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "155"], "n_allocations": 15, "name": "process at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:155", "thread_id": "0x1d", "value": 32061152}, {"children": [], "interesting": true, "location": ["create_watermark_estimator", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py", "235"], "n_allocations": 1, "name": "create_watermark_estimator at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py:235", "thread_id": "0x1d", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/range_trackers.py", "69"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/range_trackers.py:69", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["get_range_tracker", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/filebasedsource.py", "326"], "n_allocations": 1, "name": "get_range_tracker at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/filebasedsource.py:326", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["range_tracker", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/iobase.py", "1492"], "n_allocations": 1, "name": "range_tracker at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/iobase.py:1492", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["current_restriction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/iobase.py", "1558"], "n_allocations": 1, "name": "current_restriction at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/iobase.py:1558", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["current_restriction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py", "74"], "n_allocations": 1, "name": "current_restriction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py:74", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["current_restriction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py", "172"], "n_allocations": 1, "name": "current_restriction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/sdf_utils.py:172", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["process", "/home/arwin.tio/.cache/bazel/_bazel_arwin.tio/67c27a0855206b8af49eb642831746da/execroot/cruise_ws/bazel-out/k8-fastbuild/bin/cruise/mlp/terra/examples/pipelines/databricks_submit_jar_job.runfiles/cruise_ws/cruise/mlp/terra/examples/pipelines/databricks_submit_jar_job_exedir/apache_beam/io/iobase.py", "1665"], "n_allocations": 1, "name": " current_restriction = restriction_tracker.current_restriction()\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["process_encoded", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "221"], "n_allocations": 272127, "name": "process_encoded at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:221", "thread_id": "0x1d", "value": 2744829721}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "996"], "n_allocations": 272128, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:996", "thread_id": "0x1d", "value": 2744831005}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "49"], "n_allocations": 1, "name": " self.not_full = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "53"], "n_allocations": 1, "name": " self.all_tasks_done = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["\u0026lt;lambda\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "413"], "n_allocations": 2, "name": "\u003clambda\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:413", "thread_id": "0x1d", "value": 1056}], "interesting": true, "location": ["_receiving_queue", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "447"], "n_allocations": 2, "name": "_receiving_queue at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:447", "thread_id": "0x1d", "value": 1056}], "interesting": true, "location": ["input_elements", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "479"], "n_allocations": 2, "name": "input_elements at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:479", "thread_id": "0x1d", "value": 1056}, {"children": [], "interesting": true, "location": ["input_elements", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "487"], "n_allocations": 2, "name": "input_elements at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:487", "thread_id": "0x1d", "value": 1040}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "985"], "n_allocations": 5, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:985", "thread_id": "0x1d", "value": 2624}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["wait", "/usr/lib/python3.7/threading.py", "552"], "n_allocations": 1, "name": " signaled = self._cond.wait(timeout)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "857"], "n_allocations": 1, "name": " self._started.wait()\n", "thread_id": "0x1d", "value": 552}, {"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1d", "value": 280}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["start", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statesampler.py", "128"], "n_allocations": 4, "name": "start at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statesampler.py:128", "thread_id": "0x1d", "value": 1440}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "948"], "n_allocations": 4, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:948", "thread_id": "0x1d", "value": 1440}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "618"], "n_allocations": 272138, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:618", "thread_id": "0x1d", "value": 2744835733}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "884"], "n_allocations": 1, "name": " save(k)\n", "thread_id": "0x1d", "value": 552}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "201"], "n_allocations": 2, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:201", "thread_id": "0x1d", "value": 335896}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1104}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_code", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "878"], "n_allocations": 4, "name": "save_code at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:878", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 4, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 4, "name": " save(element)\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 4, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 4, "name": " save(element)\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 4, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 4, "name": " save(args)\n", "thread_id": "0x1d", "value": 2208}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_code", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "878"], "n_allocations": 5, "name": "save_code at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:878", "thread_id": "0x1d", "value": 2760}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1314"], "n_allocations": 1, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1314", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 1, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 1, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "890"], "n_allocations": 1, "name": " save(v)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 1, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 1, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 1, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 8, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 8, "name": " save(element)\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 8, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 8, "name": " save(args)\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save_function", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1413"], "n_allocations": 8, "name": "save_function at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1413", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 8, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 8, "name": " save(element)\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 8, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 8, "name": " save(args)\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save_cell", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1147"], "n_allocations": 8, "name": "save_cell at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1147", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 8, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339208}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 8, "name": " save(element)\n", "thread_id": "0x1d", "value": 339208}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1309"], "n_allocations": 1, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1309", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 1, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_code", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "878"], "n_allocations": 1, "name": "save_code at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:878", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 9, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339760}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 9, "name": " save(element)\n", "thread_id": "0x1d", "value": 339760}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 9, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339760}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 9, "name": " save(args)\n", "thread_id": "0x1d", "value": 339760}], "interesting": true, "location": ["save_function", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1413"], "n_allocations": 9, "name": "save_function at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1413", "thread_id": "0x1d", "value": 339760}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 9, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 339760}, {"children": [], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 1, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 10, "name": " save(v)\n", "thread_id": "0x1d", "value": 340312}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 11, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 340864}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 11, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 340864}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 11, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 340864}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 11, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 340864}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 11, "name": " save(state)\n", "thread_id": "0x1d", "value": 340864}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 1, "name": " save(cls)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 12, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 341416}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_batch_appends", "/usr/lib/python3.7/pickle.py", "843"], "n_allocations": 2, "name": " save(x)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_list", "/usr/lib/python3.7/pickle.py", "819"], "n_allocations": 2, "name": " self._batch_appends(obj)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["_batch_appends", "/usr/lib/python3.7/pickle.py", "846"], "n_allocations": 2, "name": " save(tmp[0])\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_list", "/usr/lib/python3.7/pickle.py", "819"], "n_allocations": 2, "name": " self._batch_appends(obj)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 14, "name": " save(element)\n", "thread_id": "0x1d", "value": 342520}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 14, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 342520}], "interesting": true, "location": ["dump", "/usr/lib/python3.7/pickle.py", "437"], "n_allocations": 14, "name": " self.save(obj)\n", "thread_id": "0x1d", "value": 342520}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "445"], "n_allocations": 14, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:445", "thread_id": "0x1d", "value": 342520}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "259"], "n_allocations": 14, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:259", "thread_id": "0x1d", "value": 342520}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "265"], "n_allocations": 14, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:265", "thread_id": "0x1d", "value": 342520}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "246"], "n_allocations": 14, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:246", "thread_id": "0x1d", "value": 342520}, {"children": [{"children": [], "interesting": true, "location": ["b64encode", "/databricks/python3/lib/python3.7/base64.py", "58"], "n_allocations": 1, "name": "b64encode at /databricks/python3/lib/python3.7/base64.py:58", "thread_id": "0x1d", "value": 2065}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "268"], "n_allocations": 1, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:268", "thread_id": "0x1d", "value": 2065}], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1601"], "n_allocations": 15, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1601", "thread_id": "0x1d", "value": 344585}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/cruise/mlp/terra/examples/pipelines/arwin_prediction_features/group_features_by_segment.py", "105"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/cruise/mlp/terra/examples/pipelines/arwin_prediction_features/group_features_by_segment.py:105", "thread_id": "0x1d", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/cruise/mlp/terra/examples/pipelines/arwin_prediction_features/group_features_by_segment.py", "2"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/cruise/mlp/terra/examples/pipelines/arwin_prediction_features/group_features_by_segment.py:2", "thread_id": "0x1d", "value": 1128}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/cruise/mlp/terra/examples/pipelines/arwin_prediction_features/group_features_by_segment.py", "9"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/cruise/mlp/terra/examples/pipelines/arwin_prediction_features/group_features_by_segment.py:9", "thread_id": "0x1d", "value": 2562}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 5, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1d", "value": 4626}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 5, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1d", "value": 4626}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1d", "value": 1674}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1d", "value": 1674}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1d", "value": 1674}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 6, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1d", "value": 6300}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 6, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1d", "value": 6300}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 6, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1d", "value": 6300}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 6, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1d", "value": 6300}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 6, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1d", "value": 6300}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_path_importer_cache", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1222"], "n_allocations": 1, "name": "_path_importer_cache at \u003cfrozen importlib._bootstrap_external\u003e:1222", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_get_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1249"], "n_allocations": 1, "name": "_get_spec at \u003cfrozen importlib._bootstrap_external\u003e:1249", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["find_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1280"], "n_allocations": 1, "name": "find_spec at \u003cfrozen importlib._bootstrap_external\u003e:1280", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_find_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "906"], "n_allocations": 1, "name": "_find_spec at \u003cfrozen importlib._bootstrap\u003e:906", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "963"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:963", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "953"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:953", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "953"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:953", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1d", "value": 9248}], "interesting": true, "location": ["_import_module", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "827"], "n_allocations": 7, "name": "_import_module at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:827", "thread_id": "0x1d", "value": 15548}], "interesting": true, "location": ["load", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "472"], "n_allocations": 7, "name": "load at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:472", "thread_id": "0x1d", "value": 15548}], "interesting": true, "location": ["load", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "270"], "n_allocations": 7, "name": "load at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:270", "thread_id": "0x1d", "value": 15548}], "interesting": true, "location": ["loads", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "275"], "n_allocations": 7, "name": "loads at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:275", "thread_id": "0x1d", "value": 15548}], "interesting": true, "location": ["loads", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "285"], "n_allocations": 7, "name": "loads at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:285", "thread_id": "0x1d", "value": 15548}], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1588"], "n_allocations": 7, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1588", "thread_id": "0x1d", "value": 15548}, {"children": [{"children": [], "interesting": true, "location": ["scoped_state", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statesampler.py", "175"], "n_allocations": 1, "name": "scoped_state at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statesampler.py:175", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1644"], "n_allocations": 2, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1644", "thread_id": "0x1d", "value": 608}], "interesting": true, "location": ["create_par_do", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1552"], "n_allocations": 24, "name": "create_par_do at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1552", "thread_id": "0x1d", "value": 360741}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1198"], "n_allocations": 24, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1198", "thread_id": "0x1d", "value": 360741}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "904"], "n_allocations": 24, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:904", "thread_id": "0x1d", "value": 360741}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1d", "value": 280}, {"children": [{"children": [], "interesting": true, "location": ["wait", "/usr/lib/python3.7/threading.py", "552"], "n_allocations": 1, "name": " signaled = self._cond.wait(timeout)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "857"], "n_allocations": 1, "name": " self._started.wait()\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_run_channel_spin_thread", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1270"], "n_allocations": 2, "name": "_run_channel_spin_thread at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1270", "thread_id": "0x1d", "value": 832}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1d", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["_run_channel_spin_thread", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1268"], "n_allocations": 2, "name": "_run_channel_spin_thread at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1268", "thread_id": "0x1d", "value": 608}], "interesting": true, "location": ["create", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1306"], "n_allocations": 4, "name": "create at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1306", "thread_id": "0x1d", "value": 1440}, {"children": [], "interesting": true, "location": ["create", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1303"], "n_allocations": 9, "name": "create at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1303", "thread_id": "0x1d", "value": 6637}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1209"], "n_allocations": 13, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1209", "thread_id": "0x1d", "value": 8077}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "98"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:98", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1191"], "n_allocations": 2, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1191", "thread_id": "0x1d", "value": 560}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["_consume_request_iterator", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "266"], "n_allocations": 1, "name": "_consume_request_iterator at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:266", "thread_id": "0x1d", "value": 280}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1d", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["_consume_request_iterator", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "264"], "n_allocations": 2, "name": "_consume_request_iterator at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:264", "thread_id": "0x1d", "value": 608}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1211"], "n_allocations": 3, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1211", "thread_id": "0x1d", "value": 888}], "interesting": true, "location": ["continuation", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "522"], "n_allocations": 18, "name": "continuation at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:522", "thread_id": "0x1d", "value": 9525}], "interesting": true, "location": ["_intercept", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "73"], "n_allocations": 18, "name": "_intercept at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:73", "thread_id": "0x1d", "value": 9525}], "interesting": true, "location": ["intercept_stream_stream", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "59"], "n_allocations": 18, "name": "intercept_stream_stream at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:59", "thread_id": "0x1d", "value": 9525}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "526"], "n_allocations": 18, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:526", "thread_id": "0x1d", "value": 9525}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1d", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["set_inputs", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "652"], "n_allocations": 2, "name": "set_inputs at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:652", "thread_id": "0x1d", "value": 608}, {"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["set_inputs", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "654"], "n_allocations": 1, "name": "set_inputs at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:654", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "666"], "n_allocations": 22, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:666", "thread_id": "0x1d", "value": 10933}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 2, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "423"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:423", "thread_id": "0x1d", "value": 560}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "53"], "n_allocations": 1, "name": " self.all_tasks_done = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "49"], "n_allocations": 1, "name": " self.not_full = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "45"], "n_allocations": 1, "name": " self.not_empty = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "41"], "n_allocations": 1, "name": " self.mutex = threading.Lock()\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "411"], "n_allocations": 4, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:411", "thread_id": "0x1d", "value": 1616}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "422"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:422", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "665"], "n_allocations": 7, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:665", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["create_data_channel_from_url", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "768"], "n_allocations": 29, "name": "create_data_channel_from_url at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:768", "thread_id": "0x1d", "value": 13141}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1237"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1237", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1481"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1481", "thread_id": "0x1d", "value": 32}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1480"], "n_allocations": 47, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1480", "thread_id": "0x1d", "value": 4928}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1978"], "n_allocations": 48, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1978", "thread_id": "0x1d", "value": 4960}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py", "38"], "n_allocations": 48, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py:38", "thread_id": "0x1d", "value": 4960}], "interesting": true, "location": ["create_data_channel_from_url", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "759"], "n_allocations": 48, "name": "create_data_channel_from_url at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:759", "thread_id": "0x1d", "value": 4960}], "interesting": true, "location": ["create_data_channel", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "778"], "n_allocations": 77, "name": "create_data_channel at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:778", "thread_id": "0x1d", "value": 18101}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "132"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:132", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["create_sink_runner", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1329"], "n_allocations": 79, "name": "create_sink_runner at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1329", "thread_id": "0x1d", "value": 18685}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["parse_Bytes", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/proto_utils.py", "107"], "n_allocations": 5, "name": "parse_Bytes at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/proto_utils.py:107", "thread_id": "0x1d", "value": 244}], "interesting": true, "location": ["from_runner_api", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "381"], "n_allocations": 5, "name": "from_runner_api at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:381", "thread_id": "0x1d", "value": 244}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["deserialize_coder", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "130"], "n_allocations": 1, "name": "deserialize_coder at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:130", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["_pickle_from_runner_api_parameter", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "417"], "n_allocations": 1, "name": "_pickle_from_runner_api_parameter at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:417", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["from_runner_api", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "383"], "n_allocations": 1, "name": "from_runner_api at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:383", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["get_by_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "115"], "n_allocations": 6, "name": "get_by_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:115", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "382"], "n_allocations": 6, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:382", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["from_runner_api", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "382"], "n_allocations": 6, "name": "from_runner_api at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:382", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["get_by_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "115"], "n_allocations": 6, "name": "get_by_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:115", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "382"], "n_allocations": 6, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:382", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["from_runner_api", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "382"], "n_allocations": 6, "name": "from_runner_api at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:382", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["get_by_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "115"], "n_allocations": 6, "name": "get_by_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:115", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "382"], "n_allocations": 6, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:382", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["from_runner_api", "/databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py", "382"], "n_allocations": 6, "name": "from_runner_api at /databricks/python3/lib/python3.7/site-packages/apache_beam/coders/coders.py:382", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["get_by_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "115"], "n_allocations": 6, "name": "get_by_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:115", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["get_coder", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1222"], "n_allocations": 6, "name": "get_coder at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1222", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["create_sink_runner", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1320"], "n_allocations": 6, "name": "create_sink_runner at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1320", "thread_id": "0x1d", "value": 764}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1198"], "n_allocations": 86, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1198", "thread_id": "0x1d", "value": 19985}, {"children": [{"children": [], "interesting": true, "location": ["parse_Bytes", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/proto_utils.py", "107"], "n_allocations": 5, "name": "parse_Bytes at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/proto_utils.py:107", "thread_id": "0x1d", "value": 256}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1197"], "n_allocations": 5, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1197", "thread_id": "0x1d", "value": 256}, {"children": [], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1194"], "n_allocations": 4, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1194", "thread_id": "0x1d", "value": 780}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "904"], "n_allocations": 95, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:904", "thread_id": "0x1d", "value": 21021}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 95, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 21021}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "899"], "n_allocations": 95, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:899", "thread_id": "0x1d", "value": 21021}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 95, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 21021}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 95, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 21021}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["create_identity_dofn", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1719"], "n_allocations": 1, "name": "create_identity_dofn at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1719", "thread_id": "0x1d", "value": 520}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["get_windowed_coder", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1230"], "n_allocations": 74, "name": "get_windowed_coder at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1230", "thread_id": "0x1d", "value": 2464}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1245"], "n_allocations": 74, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1245", "thread_id": "0x1d", "value": 2464}], "interesting": true, "location": ["get_output_coders", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1245"], "n_allocations": 74, "name": "get_output_coders at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1245", "thread_id": "0x1d", "value": 2464}], "interesting": true, "location": ["get_only_output_coder", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1250"], "n_allocations": 74, "name": "get_only_output_coder at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1250", "thread_id": "0x1d", "value": 2464}], "interesting": true, "location": ["create_identity_dofn", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1715"], "n_allocations": 74, "name": "create_identity_dofn at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1715", "thread_id": "0x1d", "value": 2464}, {"children": [], "interesting": true, "location": ["create_identity_dofn", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1717"], "n_allocations": 1, "name": "create_identity_dofn at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1717", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1198"], "n_allocations": 77, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1198", "thread_id": "0x1d", "value": 3544}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "904"], "n_allocations": 77, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:904", "thread_id": "0x1d", "value": 3544}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 172, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 24565}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "899"], "n_allocations": 172, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:899", "thread_id": "0x1d", "value": 24565}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 172, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 24565}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 172, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 24565}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1314"], "n_allocations": 3, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1314", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 3, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 3, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 4, "name": " save(func)\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 4, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "890"], "n_allocations": 4, "name": " save(v)\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 4, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 4, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 4, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 2208}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 1, "name": " save(args)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_module", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "172"], "n_allocations": 2, "name": "save_module at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:172", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "212"], "n_allocations": 2, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:212", "thread_id": "0x1d", "value": 1104}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1104}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_code", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "878"], "n_allocations": 4, "name": "save_code at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:878", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 10, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 5520}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 11, "name": " save(element)\n", "thread_id": "0x1d", "value": 6072}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 11, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 6072}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 11, "name": " save(args)\n", "thread_id": "0x1d", "value": 6072}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_function", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1413"], "n_allocations": 13, "name": "save_function at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1413", "thread_id": "0x1d", "value": 7176}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 13, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 7176}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 13, "name": " save(element)\n", "thread_id": "0x1d", "value": 7176}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 13, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 7176}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 13, "name": " save(args)\n", "thread_id": "0x1d", "value": 7176}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_cell", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1147"], "n_allocations": 14, "name": "save_cell at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1147", "thread_id": "0x1d", "value": 7728}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 14, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 7728}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 14, "name": " save(element)\n", "thread_id": "0x1d", "value": 7728}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 1, "name": " save(args)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1309"], "n_allocations": 3, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1309", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 3, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 3, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 5, "name": " save(func)\n", "thread_id": "0x1d", "value": 2760}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_code", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "878"], "n_allocations": 8, "name": "save_code at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:878", "thread_id": "0x1d", "value": 4416}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_builtin_method", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1082"], "n_allocations": 1, "name": "save_builtin_method at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1082", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_module", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "172"], "n_allocations": 2, "name": "save_module at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:172", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "212"], "n_allocations": 3, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:212", "thread_id": "0x1d", "value": 1656}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 1, "name": " save(func)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 1, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "890"], "n_allocations": 1, "name": " save(v)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 1, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 1, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 1, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 27, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 14904}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 28, "name": " save(element)\n", "thread_id": "0x1d", "value": 15456}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 28, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 15456}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 28, "name": " save(args)\n", "thread_id": "0x1d", "value": 15456}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 2, "name": " save(func)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_function", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1413"], "n_allocations": 31, "name": "save_function at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1413", "thread_id": "0x1d", "value": 17112}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_batch_appends", "/usr/lib/python3.7/pickle.py", "843"], "n_allocations": 1, "name": " save(x)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_list", "/usr/lib/python3.7/pickle.py", "819"], "n_allocations": 1, "name": " self._batch_appends(obj)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 32, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 17664}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 32, "name": " save(v)\n", "thread_id": "0x1d", "value": 17664}, {"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "884"], "n_allocations": 1, "name": " save(k)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 33, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 18216}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 33, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 18216}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 33, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 18216}, {"children": [], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "202"], "n_allocations": 1, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:202", "thread_id": "0x1d", "value": 73752}, {"children": [], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "193"], "n_allocations": 1, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:193", "thread_id": "0x1d", "value": 262144}, {"children": [], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "201"], "n_allocations": 1, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:201", "thread_id": "0x1d", "value": 73752}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 36, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 427864}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 36, "name": " save(state)\n", "thread_id": "0x1d", "value": 427864}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1356"], "n_allocations": 1, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1356", "thread_id": "0x1d", "value": 584}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 1, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 584}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 584}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 3, "name": " save(cls)\n", "thread_id": "0x1d", "value": 1688}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 40, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 430104}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 41, "name": " save(element)\n", "thread_id": "0x1d", "value": 430656}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 41, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 430656}], "interesting": true, "location": ["dump", "/usr/lib/python3.7/pickle.py", "437"], "n_allocations": 42, "name": " self.save(obj)\n", "thread_id": "0x1d", "value": 431208}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "445"], "n_allocations": 42, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:445", "thread_id": "0x1d", "value": 431208}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "408"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:408", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "259"], "n_allocations": 43, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:259", "thread_id": "0x1d", "value": 431784}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "265"], "n_allocations": 44, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:265", "thread_id": "0x1d", "value": 432312}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "246"], "n_allocations": 44, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:246", "thread_id": "0x1d", "value": 432312}, {"children": [{"children": [], "interesting": true, "location": ["b64encode", "/databricks/python3/lib/python3.7/base64.py", "58"], "n_allocations": 1, "name": "b64encode at /databricks/python3/lib/python3.7/base64.py:58", "thread_id": "0x1d", "value": 1553}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "268"], "n_allocations": 1, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:268", "thread_id": "0x1d", "value": 1553}], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1601"], "n_allocations": 46, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1601", "thread_id": "0x1d", "value": 434385}, {"children": [], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1644"], "n_allocations": 1, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1644", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["create_par_do", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1552"], "n_allocations": 48, "name": "create_par_do at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1552", "thread_id": "0x1d", "value": 435089}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1198"], "n_allocations": 48, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1198", "thread_id": "0x1d", "value": 435089}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "904"], "n_allocations": 48, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:904", "thread_id": "0x1d", "value": 435089}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 220, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 459654}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "899"], "n_allocations": 220, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:899", "thread_id": "0x1d", "value": 459654}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 220, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 459654}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 220, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 459654}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 244, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 820395}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "899"], "n_allocations": 244, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:899", "thread_id": "0x1d", "value": 820395}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 244, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 820395}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 244, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 820395}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "889"], "n_allocations": 1, "name": " save(k)\n", "thread_id": "0x1d", "value": 552}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1314"], "n_allocations": 2, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1314", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 2, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 2, "name": " save(func)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 2, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "890"], "n_allocations": 2, "name": " save(v)\n", "thread_id": "0x1d", "value": 1104}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 3, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 3, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 3, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 3, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1656}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 3, "name": " save(state)\n", "thread_id": "0x1d", "value": 1656}, {"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 1, "name": " save(cls)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 4, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 2208}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 5, "name": " save(element)\n", "thread_id": "0x1d", "value": 2760}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 5, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 2760}], "interesting": true, "location": ["dump", "/usr/lib/python3.7/pickle.py", "437"], "n_allocations": 5, "name": " self.save(obj)\n", "thread_id": "0x1d", "value": 2760}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "445"], "n_allocations": 5, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:445", "thread_id": "0x1d", "value": 2760}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "259"], "n_allocations": 5, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:259", "thread_id": "0x1d", "value": 2760}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "265"], "n_allocations": 5, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:265", "thread_id": "0x1d", "value": 2760}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "246"], "n_allocations": 5, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:246", "thread_id": "0x1d", "value": 2760}, {"children": [{"children": [], "interesting": true, "location": ["b64encode", "/databricks/python3/lib/python3.7/base64.py", "58"], "n_allocations": 1, "name": "b64encode at /databricks/python3/lib/python3.7/base64.py:58", "thread_id": "0x1d", "value": 633}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "268"], "n_allocations": 1, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:268", "thread_id": "0x1d", "value": 633}], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1601"], "n_allocations": 6, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1601", "thread_id": "0x1d", "value": 3393}, {"children": [], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1644"], "n_allocations": 1, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1644", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["create_par_do", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1552"], "n_allocations": 7, "name": "create_par_do at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1552", "thread_id": "0x1d", "value": 3425}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1198"], "n_allocations": 7, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1198", "thread_id": "0x1d", "value": 3425}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "904"], "n_allocations": 7, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:904", "thread_id": "0x1d", "value": 3425}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 251, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 823820}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "899"], "n_allocations": 251, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:899", "thread_id": "0x1d", "value": 823820}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 251, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 823820}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 251, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 823820}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_slotnames", "/databricks/python3/lib/python3.7/copyreg.py", "141"], "n_allocations": 1, "name": "_slotnames at /databricks/python3/lib/python3.7/copyreg.py:141", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "524"], "n_allocations": 1, "name": " rv = reduce(self.proto)\n", "thread_id": "0x1d", "value": 576}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 1, "name": " save(cls)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 1, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 1, "name": " save(v)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 1, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 1, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 1, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 1, "name": " save(state)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 1, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 2, "name": " save(v)\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 2, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 2, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 2, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 2, "name": " save(state)\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 2, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 2, "name": " save(element)\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 2, "name": " save(args)\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_function", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1413"], "n_allocations": 2, "name": "save_function at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1413", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 2, "name": " save(v)\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 2, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 2, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 1128}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 2, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 1128}, {"children": [{"children": [], "interesting": true, "location": ["save_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1309"], "n_allocations": 1, "name": "save_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1309", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "124"], "n_allocations": 1, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:124", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 3, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1680}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 3, "name": " save(element)\n", "thread_id": "0x1d", "value": 1680}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 3, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1680}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 3, "name": " save(args)\n", "thread_id": "0x1d", "value": 1680}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["save_function", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "1435"], "n_allocations": 2, "name": "save_function at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:1435", "thread_id": "0x1d", "value": 1168}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1168}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "637"], "n_allocations": 2, "name": " save(func)\n", "thread_id": "0x1d", "value": 1168}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "134"], "n_allocations": 5, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:134", "thread_id": "0x1d", "value": 2848}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 5, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 2848}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "633"], "n_allocations": 6, "name": " save(cls)\n", "thread_id": "0x1d", "value": 3400}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 1, "name": " save(state)\n", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 1, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 1, "name": " save(v)\n", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 1, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 1, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 1, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 520}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "774"], "n_allocations": 1, "name": " save(element)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 1, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "638"], "n_allocations": 1, "name": " save(args)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 1, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_batch_setitems", "/usr/lib/python3.7/pickle.py", "885"], "n_allocations": 2, "name": " save(v)\n", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["save_dict", "/usr/lib/python3.7/pickle.py", "859"], "n_allocations": 2, "name": " self._batch_setitems(obj.items())\n", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["save_module_dict", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "912"], "n_allocations": 2, "name": "save_module_dict at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:912", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["new_save_module_dict", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "216"], "n_allocations": 2, "name": "new_save_module_dict at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:216", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 2, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["save_reduce", "/usr/lib/python3.7/pickle.py", "662"], "n_allocations": 2, "name": " save(state)\n", "thread_id": "0x1d", "value": 1072}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "549"], "n_allocations": 8, "name": " self.save_reduce(obj=obj, *rv)\n", "thread_id": "0x1d", "value": 4472}], "interesting": true, "location": ["save_tuple", "/usr/lib/python3.7/pickle.py", "789"], "n_allocations": 10, "name": " save(element)\n", "thread_id": "0x1d", "value": 5576}], "interesting": true, "location": ["save", "/usr/lib/python3.7/pickle.py", "504"], "n_allocations": 10, "name": " f(self, obj) # Call unbound method with explicit self\n", "thread_id": "0x1d", "value": 5576}], "interesting": true, "location": ["dump", "/usr/lib/python3.7/pickle.py", "437"], "n_allocations": 10, "name": " self.save(obj)\n", "thread_id": "0x1d", "value": 5576}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "445"], "n_allocations": 10, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:445", "thread_id": "0x1d", "value": 5576}], "interesting": true, "location": ["dump", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "259"], "n_allocations": 10, "name": "dump at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:259", "thread_id": "0x1d", "value": 5576}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "265"], "n_allocations": 10, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:265", "thread_id": "0x1d", "value": 5576}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "246"], "n_allocations": 10, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:246", "thread_id": "0x1d", "value": 5576}, {"children": [{"children": [], "interesting": true, "location": ["b64encode", "/databricks/python3/lib/python3.7/base64.py", "58"], "n_allocations": 1, "name": "b64encode at /databricks/python3/lib/python3.7/base64.py:58", "thread_id": "0x1d", "value": 2321}], "interesting": true, "location": ["dumps", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "268"], "n_allocations": 1, "name": "dumps at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:268", "thread_id": "0x1d", "value": 2321}], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1601"], "n_allocations": 11, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1601", "thread_id": "0x1d", "value": 7897}, {"children": [], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1653"], "n_allocations": 1, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1653", "thread_id": "0x1d", "value": 24}, {"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["_create_pardo_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1644"], "n_allocations": 2, "name": "_create_pardo_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1644", "thread_id": "0x1d", "value": 64}], "interesting": true, "location": ["create_process_sized_elements_and_restrictions", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1505"], "n_allocations": 14, "name": "create_process_sized_elements_and_restrictions at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1505", "thread_id": "0x1d", "value": 7985}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1198"], "n_allocations": 14, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1198", "thread_id": "0x1d", "value": 7985}, {"children": [], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1195"], "n_allocations": 2, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1195", "thread_id": "0x1d", "value": 136}, {"children": [], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1191"], "n_allocations": 1, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1191", "thread_id": "0x1d", "value": 24}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "904"], "n_allocations": 17, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:904", "thread_id": "0x1d", "value": 8145}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 268, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 831965}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "899"], "n_allocations": 268, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:899", "thread_id": "0x1d", "value": 831965}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 268, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 831965}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "901"], "n_allocations": 268, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:901", "thread_id": "0x1d", "value": 831965}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "196"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:196", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "194"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:194", "thread_id": "0x1d", "value": 1112}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "132"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:132", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "185"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:185", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["create_source_runner", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1307"], "n_allocations": 4, "name": "create_source_runner at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1307", "thread_id": "0x1d", "value": 1736}], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1198"], "n_allocations": 5, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1198", "thread_id": "0x1d", "value": 2272}, {"children": [], "interesting": true, "location": ["create_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1194"], "n_allocations": 4, "name": "create_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1194", "thread_id": "0x1d", "value": 166}], "interesting": true, "location": ["get_operation", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "904"], "n_allocations": 9, "name": "get_operation at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:904", "thread_id": "0x1d", "value": 2438}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 277, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 834403}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "919"], "n_allocations": 277, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:919", "thread_id": "0x1d", "value": 834403}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "761"], "n_allocations": 15, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:761", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "911"], "n_allocations": 15, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:911", "thread_id": "0x1d", "value": 560}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "761"], "n_allocations": 9, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:761", "thread_id": "0x1d", "value": 336}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "911"], "n_allocations": 9, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:911", "thread_id": "0x1d", "value": 336}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "761"], "n_allocations": 6, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:761", "thread_id": "0x1d", "value": 224}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "911"], "n_allocations": 6, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:911", "thread_id": "0x1d", "value": 224}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "761"], "n_allocations": 3, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:761", "thread_id": "0x1d", "value": 112}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "911"], "n_allocations": 3, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:911", "thread_id": "0x1d", "value": 112}], "interesting": true, "location": ["topological_height", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "912"], "n_allocations": 3, "name": "topological_height at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:912", "thread_id": "0x1d", "value": 112}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 3, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 112}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "913"], "n_allocations": 3, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:913", "thread_id": "0x1d", "value": 112}, {"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "761"], "n_allocations": 3, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:761", "thread_id": "0x1d", "value": 112}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "911"], "n_allocations": 3, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:911", "thread_id": "0x1d", "value": 112}], "interesting": true, "location": ["topological_height", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "912"], "n_allocations": 6, "name": "topological_height at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:912", "thread_id": "0x1d", "value": 224}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 6, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 224}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "913"], "n_allocations": 6, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:913", "thread_id": "0x1d", "value": 224}], "interesting": true, "location": ["topological_height", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "912"], "n_allocations": 12, "name": "topological_height at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:912", "thread_id": "0x1d", "value": 448}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 12, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 448}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "913"], "n_allocations": 12, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:913", "thread_id": "0x1d", "value": 448}], "interesting": true, "location": ["topological_height", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "912"], "n_allocations": 21, "name": "topological_height at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:912", "thread_id": "0x1d", "value": 784}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 21, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 784}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "913"], "n_allocations": 21, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:913", "thread_id": "0x1d", "value": 784}], "interesting": true, "location": ["topological_height", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "912"], "n_allocations": 36, "name": "topological_height at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:912", "thread_id": "0x1d", "value": 1344}], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "806"], "n_allocations": 36, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:806", "thread_id": "0x1d", "value": 1344}], "interesting": true, "location": ["create_execution_tree", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "920"], "n_allocations": 313, "name": "create_execution_tree at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:920", "thread_id": "0x1d", "value": 835747}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "232"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:232", "thread_id": "0x1d", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "744"], "n_allocations": 4, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:744", "thread_id": "0x1d", "value": 848}, {"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "743"], "n_allocations": 666, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:743", "thread_id": "0x1d", "value": 21664}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "189"], "n_allocations": 670, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:189", "thread_id": "0x1d", "value": 22512}, {"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "743"], "n_allocations": 26, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:743", "thread_id": "0x1d", "value": 976}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "190"], "n_allocations": 26, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:190", "thread_id": "0x1d", "value": 976}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/sre_compile.py", "148"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/sre_compile.py:148", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_code", "/databricks/python3/lib/python3.7/sre_compile.py", "607"], "n_allocations": 1, "name": "_code at /databricks/python3/lib/python3.7/sre_compile.py:607", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "768"], "n_allocations": 1, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:768", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/re.py", "286"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/re.py:286", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["sub", "/databricks/python3/lib/python3.7/re.py", "192"], "n_allocations": 1, "name": "sub at /databricks/python3/lib/python3.7/re.py:192", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_normalize", "/databricks/python3/lib/python3.7/site-packages/apache_beam/pipeline.py", "1498"], "n_allocations": 1, "name": "_normalize at /databricks/python3/lib/python3.7/site-packages/apache_beam/pipeline.py:1498", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["_unique_ref", "/databricks/python3/lib/python3.7/site-packages/apache_beam/pipeline.py", "1504"], "n_allocations": 1, "name": "_unique_ref at /databricks/python3/lib/python3.7/site-packages/apache_beam/pipeline.py:1504", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["get_or_assign", "/databricks/python3/lib/python3.7/site-packages/apache_beam/pipeline.py", "1492"], "n_allocations": 1, "name": "get_or_assign at /databricks/python3/lib/python3.7/site-packages/apache_beam/pipeline.py:1492", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["get_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "101"], "n_allocations": 1, "name": "get_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:101", "thread_id": "0x1d", "value": 688}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "227"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:227", "thread_id": "0x1d", "value": 688}, {"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "743"], "n_allocations": 62, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:743", "thread_id": "0x1d", "value": 1696}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py", "191"], "n_allocations": 92, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/pipeline_context.py:191", "thread_id": "0x1d", "value": 3868}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1163"], "n_allocations": 791, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1163", "thread_id": "0x1d", "value": 29140}], "interesting": true, "location": ["create_execution_tree", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "878"], "n_allocations": 791, "name": "create_execution_tree at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:878", "thread_id": "0x1d", "value": 29140}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["parse_Bytes", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/proto_utils.py", "107"], "n_allocations": 35, "name": "parse_Bytes at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/proto_utils.py:107", "thread_id": "0x1d", "value": 2235}], "interesting": true, "location": ["extract_timers_info", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1206"], "n_allocations": 35, "name": "extract_timers_info at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1206", "thread_id": "0x1d", "value": 2235}, {"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "743"], "n_allocations": 342, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:743", "thread_id": "0x1d", "value": 14864}], "interesting": true, "location": ["extract_timers_info", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1203"], "n_allocations": 342, "name": "extract_timers_info at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1203", "thread_id": "0x1d", "value": 14864}], "interesting": true, "location": ["create_execution_tree", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "880"], "n_allocations": 377, "name": "create_execution_tree at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:880", "thread_id": "0x1d", "value": 17099}, {"children": [{"children": [], "interesting": true, "location": ["__iter__", "/databricks/python3/lib/python3.7/_collections_abc.py", "743"], "n_allocations": 36, "name": "__iter__ at /databricks/python3/lib/python3.7/_collections_abc.py:743", "thread_id": "0x1d", "value": 1344}], "interesting": true, "location": ["create_execution_tree", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "891"], "n_allocations": 36, "name": "create_execution_tree at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:891", "thread_id": "0x1d", "value": 1344}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "863"], "n_allocations": 1518, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:863", "thread_id": "0x1d", "value": 883890}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_signature_from_callable", "/usr/lib/python3.7/inspect.py", "2217"], "n_allocations": 2, "name": " sigcls=sigcls)\n", "thread_id": "0x1d", "value": 1232}], "interesting": true, "location": ["from_callable", "/usr/lib/python3.7/inspect.py", "2833"], "n_allocations": 2, "name": " follow_wrapper_chains=follow_wrapped)\n", "thread_id": "0x1d", "value": 1232}], "interesting": true, "location": ["signature", "/usr/lib/python3.7/inspect.py", "3083"], "n_allocations": 2, "name": " return Signature.from_callable(obj, follow_wrapped=follow_wrapped)\n", "thread_id": "0x1d", "value": 1232}], "interesting": true, "location": ["get_signature", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "138"], "n_allocations": 2, "name": "get_signature at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:138", "thread_id": "0x1d", "value": 1232}], "interesting": true, "location": ["get_function_args_defaults", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py", "382"], "n_allocations": 2, "name": "get_function_args_defaults at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py:382", "thread_id": "0x1d", "value": 1232}], "interesting": true, "location": ["get_function_arguments", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py", "368"], "n_allocations": 2, "name": "get_function_arguments at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py:368", "thread_id": "0x1d", "value": 1232}], "interesting": true, "location": ["get_dofn_specs", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py", "242"], "n_allocations": 2, "name": "get_dofn_specs at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py:242", "thread_id": "0x1d", "value": 1232}], "interesting": true, "location": ["validate_stateful_dofn", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py", "275"], "n_allocations": 2, "name": "validate_stateful_dofn at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py:275", "thread_id": "0x1d", "value": 1232}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_create_type", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "580"], "n_allocations": 1, "name": "_create_type at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:580", "thread_id": "0x1d", "value": 936}], "interesting": true, "location": ["load", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "472"], "n_allocations": 1, "name": "load at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:472", "thread_id": "0x1d", "value": 936}], "interesting": true, "location": ["load", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "270"], "n_allocations": 1, "name": "load at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:270", "thread_id": "0x1d", "value": 936}], "interesting": true, "location": ["loads", "/databricks/python3/lib/python3.7/site-packages/dill/_dill.py", "275"], "n_allocations": 1, "name": "loads at /databricks/python3/lib/python3.7/site-packages/dill/_dill.py:275", "thread_id": "0x1d", "value": 936}], "interesting": true, "location": ["loads", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py", "285"], "n_allocations": 1, "name": "loads at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/pickler.py:285", "thread_id": "0x1d", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_signature_from_callable", "/usr/lib/python3.7/inspect.py", "2217"], "n_allocations": 1, "name": " sigcls=sigcls)\n", "thread_id": "0x1d", "value": 616}], "interesting": true, "location": ["from_callable", "/usr/lib/python3.7/inspect.py", "2833"], "n_allocations": 1, "name": " follow_wrapper_chains=follow_wrapped)\n", "thread_id": "0x1d", "value": 616}], "interesting": true, "location": ["signature", "/usr/lib/python3.7/inspect.py", "3083"], "n_allocations": 1, "name": " return Signature.from_callable(obj, follow_wrapped=follow_wrapped)\n", "thread_id": "0x1d", "value": 616}], "interesting": true, "location": ["get_signature", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "138"], "n_allocations": 1, "name": "get_signature at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:138", "thread_id": "0x1d", "value": 616}], "interesting": true, "location": ["get_function_args_defaults", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py", "382"], "n_allocations": 1, "name": "get_function_args_defaults at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py:382", "thread_id": "0x1d", "value": 616}], "interesting": true, "location": ["get_function_arguments", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py", "368"], "n_allocations": 1, "name": "get_function_arguments at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py:368", "thread_id": "0x1d", "value": 616}], "interesting": true, "location": ["get_dofn_specs", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py", "242"], "n_allocations": 1, "name": "get_dofn_specs at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py:242", "thread_id": "0x1d", "value": 616}], "interesting": true, "location": ["is_stateful_dofn", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py", "265"], "n_allocations": 1, "name": "is_stateful_dofn at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/userstate.py:265", "thread_id": "0x1d", "value": 616}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_signature_from_callable", "/usr/lib/python3.7/inspect.py", "2217"], "n_allocations": 6, "name": " sigcls=sigcls)\n", "thread_id": "0x1d", "value": 3696}], "interesting": true, "location": ["from_callable", "/usr/lib/python3.7/inspect.py", "2833"], "n_allocations": 6, "name": " follow_wrapper_chains=follow_wrapped)\n", "thread_id": "0x1d", "value": 3696}], "interesting": true, "location": ["signature", "/usr/lib/python3.7/inspect.py", "3083"], "n_allocations": 6, "name": " return Signature.from_callable(obj, follow_wrapped=follow_wrapped)\n", "thread_id": "0x1d", "value": 3696}], "interesting": true, "location": ["get_signature", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "138"], "n_allocations": 6, "name": "get_signature at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:138", "thread_id": "0x1d", "value": 3696}], "interesting": true, "location": ["get_function_args_defaults", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py", "382"], "n_allocations": 6, "name": "get_function_args_defaults at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py:382", "thread_id": "0x1d", "value": 3696}], "interesting": true, "location": ["get_function_arguments", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py", "368"], "n_allocations": 6, "name": "get_function_arguments at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/core.py:368", "thread_id": "0x1d", "value": 3696}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "865"], "n_allocations": 11, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:865", "thread_id": "0x1d", "value": 6512}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statesampler.py", "107"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statesampler.py:107", "thread_id": "0x1d", "value": 584}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "862"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:862", "thread_id": "0x1d", "value": 584}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "866"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:866", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "859"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:859", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["get", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "445"], "n_allocations": 1533, "name": "get at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:445", "thread_id": "0x1d", "value": 891050}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "98"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:98", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1191"], "n_allocations": 2, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1191", "thread_id": "0x1d", "value": 560}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 2, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 560}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 2, "name": " self._started = Event()\n", "thread_id": "0x1d", "value": 560}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_run_channel_spin_thread", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1268"], "n_allocations": 3, "name": "_run_channel_spin_thread at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1268", "thread_id": "0x1d", "value": 1136}, {"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["_run_channel_spin_thread", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1270"], "n_allocations": 1, "name": "_run_channel_spin_thread at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1270", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["create", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1306"], "n_allocations": 4, "name": "create at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1306", "thread_id": "0x1d", "value": 1416}, {"children": [], "interesting": true, "location": ["create", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1303"], "n_allocations": 10, "name": "create at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1303", "thread_id": "0x1d", "value": 6719}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1209"], "n_allocations": 14, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1209", "thread_id": "0x1d", "value": 8135}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["_consume_request_iterator", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "266"], "n_allocations": 1, "name": "_consume_request_iterator at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:266", "thread_id": "0x1d", "value": 280}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["_consume_request_iterator", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "264"], "n_allocations": 2, "name": "_consume_request_iterator at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:264", "thread_id": "0x1d", "value": 608}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1211"], "n_allocations": 3, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1211", "thread_id": "0x1d", "value": 888}], "interesting": true, "location": ["continuation", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "522"], "n_allocations": 19, "name": "continuation at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:522", "thread_id": "0x1d", "value": 9583}], "interesting": true, "location": ["_intercept", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "73"], "n_allocations": 19, "name": "_intercept at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:73", "thread_id": "0x1d", "value": 9583}], "interesting": true, "location": ["intercept_stream_stream", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "59"], "n_allocations": 19, "name": "intercept_stream_stream at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:59", "thread_id": "0x1d", "value": 9583}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "526"], "n_allocations": 19, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:526", "thread_id": "0x1d", "value": 9583}], "interesting": true, "location": ["start", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "952"], "n_allocations": 19, "name": "start at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:952", "thread_id": "0x1d", "value": 9583}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1d", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1d", "value": 576}], "interesting": true, "location": ["start", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "967"], "n_allocations": 2, "name": "start at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:967", "thread_id": "0x1d", "value": 608}, {"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["start", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "969"], "n_allocations": 1, "name": "start at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:969", "thread_id": "0x1d", "value": 280}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "926"], "n_allocations": 22, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:926", "thread_id": "0x1d", "value": 10471}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "53"], "n_allocations": 1, "name": " self.all_tasks_done = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "41"], "n_allocations": 1, "name": " self.mutex = threading.Lock()\n", "thread_id": "0x1d", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "49"], "n_allocations": 1, "name": " self.not_full = threading.Condition(self.mutex)\n", "thread_id": "0x1d", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "920"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:920", "thread_id": "0x1d", "value": 1088}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "918"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:918", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["create_state_handler", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "821"], "n_allocations": 26, "name": "create_state_handler at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:821", "thread_id": "0x1d", "value": 11591}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1317"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1317", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1482"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1482", "thread_id": "0x1d", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1237"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1237", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1481"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1481", "thread_id": "0x1d", "value": 32}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1d", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1480"], "n_allocations": 47, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1480", "thread_id": "0x1d", "value": 4928}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1978"], "n_allocations": 49, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1978", "thread_id": "0x1d", "value": 4992}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py", "38"], "n_allocations": 49, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py:38", "thread_id": "0x1d", "value": 4992}], "interesting": true, "location": ["create_state_handler", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "809"], "n_allocations": 49, "name": "create_state_handler at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:809", "thread_id": "0x1d", "value": 4992}], "interesting": true, "location": ["get", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "444"], "n_allocations": 79, "name": "get at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:444", "thread_id": "0x1d", "value": 16855}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_blocking", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "922"], "n_allocations": 1, "name": "_blocking at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:922", "thread_id": "0x1d", "value": 568}, {"children": [], "interesting": true, "location": ["_blocking", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "932"], "n_allocations": 3, "name": "_blocking at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:932", "thread_id": "0x1d", "value": 199}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_transform", "/databricks/python3/lib/python3.7/site-packages/grpc/_common.py", "90"], "n_allocations": 1679, "name": "_transform at /databricks/python3/lib/python3.7/site-packages/grpc/_common.py:90", "thread_id": "0x1d", "value": 93195}], "interesting": true, "location": ["deserialize", "/databricks/python3/lib/python3.7/site-packages/grpc/_common.py", "103"], "n_allocations": 1679, "name": "deserialize at /databricks/python3/lib/python3.7/site-packages/grpc/_common.py:103", "thread_id": "0x1d", "value": 93195}], "interesting": true, "location": ["_handle_event", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "146"], "n_allocations": 1679, "name": "_handle_event at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:146", "thread_id": "0x1d", "value": 93195}], "interesting": true, "location": ["_blocking", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "934"], "n_allocations": 1679, "name": "_blocking at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:934", "thread_id": "0x1d", "value": 93195}], "interesting": true, "location": ["with_call", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "956"], "n_allocations": 1684, "name": "with_call at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:956", "thread_id": "0x1d", "value": 94546}], "interesting": true, "location": ["continuation", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "280"], "n_allocations": 1685, "name": "continuation at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:280", "thread_id": "0x1d", "value": 95082}], "interesting": true, "location": ["_intercept", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "73"], "n_allocations": 1686, "name": "_intercept at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:73", "thread_id": "0x1d", "value": 95674}], "interesting": true, "location": ["intercept_unary_unary", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "49"], "n_allocations": 1686, "name": "intercept_unary_unary at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:49", "thread_id": "0x1d", "value": 95674}], "interesting": true, "location": ["_with_call", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "289"], "n_allocations": 1686, "name": "_with_call at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:289", "thread_id": "0x1d", "value": 95674}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "252"], "n_allocations": 1687, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:252", "thread_id": "0x1d", "value": 96218}], "interesting": true, "location": ["default_factory", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "186"], "n_allocations": 1693, "name": "default_factory at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:186", "thread_id": "0x1d", "value": 96998}], "interesting": true, "location": ["__missing__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "1293"], "n_allocations": 1693, "name": "__missing__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:1293", "thread_id": "0x1d", "value": 96998}], "interesting": true, "location": ["get", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "442"], "n_allocations": 1693, "name": "get at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:442", "thread_id": "0x1d", "value": 96998}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "612"], "n_allocations": 3305, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:612", "thread_id": "0x1d", "value": 1004903}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["update", "/databricks/python3/lib/python3.7/_collections_abc.py", "841"], "n_allocations": 10, "name": "update at /databricks/python3/lib/python3.7/_collections_abc.py:841", "thread_id": "0x1d", "value": 541}], "interesting": true, "location": ["create_monitoring_info", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "303"], "n_allocations": 35, "name": "create_monitoring_info at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:303", "thread_id": "0x1d", "value": 1959}], "interesting": true, "location": ["int64_counter", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "204"], "n_allocations": 35, "name": "int64_counter at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:204", "thread_id": "0x1d", "value": 1959}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["update", "/databricks/python3/lib/python3.7/_collections_abc.py", "841"], "n_allocations": 2, "name": "update at /databricks/python3/lib/python3.7/_collections_abc.py:841", "thread_id": "0x1d", "value": 101}], "interesting": true, "location": ["create_monitoring_info", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "303"], "n_allocations": 5, "name": "create_monitoring_info at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:303", "thread_id": "0x1d", "value": 249}], "interesting": true, "location": ["int64_distribution", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "238"], "n_allocations": 5, "name": "int64_distribution at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:238", "thread_id": "0x1d", "value": 249}], "interesting": true, "location": ["monitoring_infos", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "226"], "n_allocations": 40, "name": "monitoring_infos at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:226", "thread_id": "0x1d", "value": 2208}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["update", "/databricks/python3/lib/python3.7/_collections_abc.py", "841"], "n_allocations": 10, "name": "update at /databricks/python3/lib/python3.7/_collections_abc.py:841", "thread_id": "0x1d", "value": 771}], "interesting": true, "location": ["create_monitoring_info", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "303"], "n_allocations": 25, "name": "create_monitoring_info at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:303", "thread_id": "0x1d", "value": 1534}], "interesting": true, "location": ["int64_distribution", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "238"], "n_allocations": 25, "name": "int64_distribution at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:238", "thread_id": "0x1d", "value": 1534}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["update", "/databricks/python3/lib/python3.7/_collections_abc.py", "841"], "n_allocations": 58, "name": "update at /databricks/python3/lib/python3.7/_collections_abc.py:841", "thread_id": "0x1d", "value": 3859}], "interesting": true, "location": ["create_monitoring_info", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "303"], "n_allocations": 145, "name": "create_monitoring_info at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:303", "thread_id": "0x1d", "value": 8244}], "interesting": true, "location": ["int64_counter", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "204"], "n_allocations": 145, "name": "int64_counter at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:204", "thread_id": "0x1d", "value": 8244}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["update", "/databricks/python3/lib/python3.7/_collections_abc.py", "841"], "n_allocations": 2, "name": "update at /databricks/python3/lib/python3.7/_collections_abc.py:841", "thread_id": "0x1d", "value": 110}], "interesting": true, "location": ["create_monitoring_info", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "303"], "n_allocations": 5, "name": "create_monitoring_info at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:303", "thread_id": "0x1d", "value": 249}], "interesting": true, "location": ["int64_counter", "/databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py", "204"], "n_allocations": 5, "name": "int64_counter at /databricks/python3/lib/python3.7/site-packages/apache_beam/metrics/monitoring_infos.py:204", "thread_id": "0x1d", "value": 249}], "interesting": true, "location": ["monitoring_infos", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "230"], "n_allocations": 5, "name": "monitoring_infos at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:230", "thread_id": "0x1d", "value": 249}], "interesting": true, "location": ["monitoring_infos", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1131"], "n_allocations": 215, "name": "monitoring_infos at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1131", "thread_id": "0x1d", "value": 12235}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "619"], "n_allocations": 215, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:619", "thread_id": "0x1d", "value": 12235}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["get_short_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "115"], "n_allocations": 41, "name": "get_short_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:115", "thread_id": "0x1d", "value": 7872}, {"children": [], "interesting": true, "location": ["get_short_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "120"], "n_allocations": 1, "name": "get_short_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:120", "thread_id": "0x1d", "value": 1112}, {"children": [], "interesting": true, "location": ["get_short_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "119"], "n_allocations": 1, "name": "get_short_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:119", "thread_id": "0x1d", "value": 1112}, {"children": [], "interesting": true, "location": ["get_short_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "116"], "n_allocations": 246, "name": "get_short_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:116", "thread_id": "0x1d", "value": 6560}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "628"], "n_allocations": 289, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:628", "thread_id": "0x1d", "value": 16656}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "628"], "n_allocations": 289, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:628", "thread_id": "0x1d", "value": 16656}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["process_instruction_id", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "1085"], "n_allocations": 1, "name": "process_instruction_id at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:1085", "thread_id": "0x1d", "value": 520}], "interesting": true, "location": ["__exit__", "/usr/lib/python3.7/contextlib.py", "119"], "n_allocations": 1, "name": " next(self.gen)\n", "thread_id": "0x1d", "value": 520}, {"children": [], "interesting": true, "location": ["update", "/databricks/python3/lib/python3.7/_collections_abc.py", "841"], "n_allocations": 82, "name": "update at /databricks/python3/lib/python3.7/_collections_abc.py:841", "thread_id": "0x1d", "value": 2231}], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "630"], "n_allocations": 517, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:630", "thread_id": "0x1d", "value": 21997}, {"children": [], "interesting": true, "location": ["process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "615"], "n_allocations": 3, "name": "process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:615", "thread_id": "0x1d", "value": 160}], "interesting": true, "location": ["do_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "581"], "n_allocations": 276471, "name": "do_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:581", "thread_id": "0x1d", "value": 2745892388}], "interesting": true, "location": ["\u0026lt;lambda\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "340"], "n_allocations": 276471, "name": "\u003clambda\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:340", "thread_id": "0x1d", "value": 2745892388}], "interesting": true, "location": ["_execute", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "267"], "n_allocations": 276471, "name": "_execute at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:267", "thread_id": "0x1d", "value": 2745892388}], "interesting": true, "location": ["task", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "340"], "n_allocations": 276471, "name": "task at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:340", "thread_id": "0x1d", "value": 2745892388}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "37"], "n_allocations": 276471, "name": "run at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:37", "thread_id": "0x1d", "value": 2745892388}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "53"], "n_allocations": 276471, "name": "run at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:53", "thread_id": "0x1d", "value": 2745892388}, {"children": [{"children": [], "interesting": true, "location": ["acquire", "/usr/lib/python3.7/threading.py", "427"], "n_allocations": 1, "name": " self._cond.wait(timeout)\n", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "57"], "n_allocations": 1, "name": "run at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:57", "thread_id": "0x1d", "value": 552}], "interesting": true, "location": ["_bootstrap_inner", "/usr/lib/python3.7/threading.py", "926"], "n_allocations": 276472, "name": " self.run()\n", "thread_id": "0x1d", "value": 2745892940}], "interesting": true, "location": ["_bootstrap", "/usr/lib/python3.7/threading.py", "890"], "n_allocations": 276472, "name": " self._bootstrap_inner()\n", "thread_id": "0x1d", "value": 2745892940}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 262144}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/concurrent/futures/thread.py", "108"], "n_allocations": 1, "name": "class ThreadPoolExecutor(_base.Executor):\n", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/concurrent/futures/thread.py", "102"], "n_allocations": 2, "name": "class BrokenThreadPool(_base.BrokenExecutor):\n", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/concurrent/futures/thread.py", "45"], "n_allocations": 1, "name": "class _WorkItem(object):\n", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 3920}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 3920}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 266064}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 266064}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 266064}], "interesting": true, "location": ["__getattr__", "/usr/lib/python3.7/concurrent/futures/__init__.py", "48"], "n_allocations": 5, "name": " from .thread import ThreadPoolExecutor as te\n", "thread_id": "0x1", "value": 266064}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/concurrent/futures/thread.py", "135"], "n_allocations": 1, "name": " self._work_queue = queue.SimpleQueue()\n", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/concurrent/futures/thread.py", "139"], "n_allocations": 1, "name": " self._shutdown_lock = threading.Lock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "211"], "n_allocations": 7, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:211", "thread_id": "0x1", "value": 266128}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "201"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:201", "thread_id": "0x1", "value": 32}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "196"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:196", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["_schedule_periodic_shutdown", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "547"], "n_allocations": 3, "name": "_schedule_periodic_shutdown at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:547", "thread_id": "0x1", "value": 640}, {"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["_schedule_periodic_shutdown", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "549"], "n_allocations": 1, "name": "_schedule_periodic_shutdown at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:549", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "396"], "n_allocations": 4, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:396", "thread_id": "0x1", "value": 920}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "397"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:397", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "193"], "n_allocations": 5, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:193", "thread_id": "0x1", "value": 952}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1480"], "n_allocations": 47, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1480", "thread_id": "0x1", "value": 4928}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1237"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1237", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1481"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1481", "thread_id": "0x1", "value": 32}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1317"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1317", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1482"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1482", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1978"], "n_allocations": 49, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1978", "thread_id": "0x1", "value": 4992}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py", "38"], "n_allocations": 49, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py:38", "thread_id": "0x1", "value": 4992}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "166"], "n_allocations": 49, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:166", "thread_id": "0x1", "value": 4992}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "735"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:735", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "177"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:177", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "206"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:206", "thread_id": "0x1", "value": 576}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["wait", "/usr/lib/python3.7/threading.py", "552"], "n_allocations": 1, "name": " signaled = self._cond.wait(timeout)\n", "thread_id": "0x1", "value": 552}], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "857"], "n_allocations": 1, "name": " self._started.wait()\n", "thread_id": "0x1", "value": 552}], "interesting": true, "location": ["_subscribe", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1420"], "n_allocations": 1, "name": "_subscribe at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1420", "thread_id": "0x1", "value": 552}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["_subscribe", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1418"], "n_allocations": 1, "name": "_subscribe at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1418", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["subscribe", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1494"], "n_allocations": 2, "name": "subscribe at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1494", "thread_id": "0x1", "value": 1080}], "interesting": true, "location": ["start", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "169"], "n_allocations": 2, "name": "start at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:169", "thread_id": "0x1", "value": 1080}], "interesting": true, "location": ["channel_ready_future", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "179"], "n_allocations": 2, "name": "channel_ready_future at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:179", "thread_id": "0x1", "value": 1080}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "76"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:76", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["channel_ready_future", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "178"], "n_allocations": 1, "name": "channel_ready_future at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:178", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["channel_ready_future", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1958"], "n_allocations": 3, "name": "channel_ready_future at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1958", "thread_id": "0x1", "value": 1608}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "171"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:171", "thread_id": "0x1", "value": 1608}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["notify", "/usr/lib/python3.7/threading.py", "348"], "n_allocations": 1, "name": " waiters_to_notify = _deque(_islice(all_waiters, n))\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["put", "/usr/lib/python3.7/queue.py", "151"], "n_allocations": 2, "name": " self.not_empty.notify()\n", "thread_id": "0x1", "value": 1056}], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "135"], "n_allocations": 2, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:135", "thread_id": "0x1", "value": 1056}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "894"], "n_allocations": 2, "name": " self.emit(record)\n", "thread_id": "0x1", "value": 1056}], "interesting": true, "location": ["callHandlers", "/usr/lib/python3.7/logging/__init__.py", "1586"], "n_allocations": 2, "name": " hdlr.handle(record)\n", "thread_id": "0x1", "value": 1056}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "1524"], "n_allocations": 2, "name": " self.callHandlers(record)\n", "thread_id": "0x1", "value": 1056}], "interesting": true, "location": ["_log", "/usr/lib/python3.7/logging/__init__.py", "1514"], "n_allocations": 2, "name": " self.handle(record)\n", "thread_id": "0x1", "value": 1056}], "interesting": true, "location": ["info", "/usr/lib/python3.7/logging/__init__.py", "1378"], "n_allocations": 2, "name": " self._log(INFO, msg, args, **kwargs)\n", "thread_id": "0x1", "value": 1056}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "215"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:215", "thread_id": "0x1", "value": 1056}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "53"], "n_allocations": 1, "name": " self.all_tasks_done = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "49"], "n_allocations": 1, "name": " self.not_full = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "41"], "n_allocations": 1, "name": " self.mutex = threading.Lock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "213"], "n_allocations": 3, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:213", "thread_id": "0x1", "value": 1088}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py", "176"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py:176", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "160"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:160", "thread_id": "0x1", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "788"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:788", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "179"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:179", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "125"], "n_allocations": 74, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:125", "thread_id": "0x1", "value": 277064}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "783"], "n_allocations": 1, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:783", "thread_id": "0x1", "value": 544}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/re.py", "286"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/re.py:286", "thread_id": "0x1", "value": 544}], "interesting": true, "location": ["match", "/databricks/python3/lib/python3.7/re.py", "173"], "n_allocations": 1, "name": "match at /databricks/python3/lib/python3.7/re.py:173", "thread_id": "0x1", "value": 544}], "interesting": true, "location": ["_get_data_buffer_time_limit_ms", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "218"], "n_allocations": 1, "name": "_get_data_buffer_time_limit_ms at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:218", "thread_id": "0x1", "value": 544}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "122"], "n_allocations": 1, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:122", "thread_id": "0x1", "value": 544}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "89"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:89", "thread_id": "0x1", "value": 608}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "380"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:380", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "26"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:26", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "19"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:19", "thread_id": "0x1", "value": 552}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "175"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:175", "thread_id": "0x1", "value": 2048}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "64"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:64", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "531"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:531", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "30"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:30", "thread_id": "0x1", "value": 263080}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "490"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:490", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "106"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:106", "thread_id": "0x1", "value": 2048}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "62"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:62", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "229"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:229", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "339"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:339", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 19, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 19, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 19, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 19, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 19, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 19, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 19, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["intercept_channel", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "2029"], "n_allocations": 19, "name": "intercept_channel at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:2029", "thread_id": "0x1", "value": 277696}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "86"], "n_allocations": 19, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:86", "thread_id": "0x1", "value": 277696}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py", "63"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py:63", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "424"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:424", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "183"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:183", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "264"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:264", "thread_id": "0x1", "value": 576}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 2, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 560}], "interesting": true, "location": ["ChannelCache", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "77"], "n_allocations": 2, "name": "ChannelCache at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:77", "thread_id": "0x1", "value": 560}, {"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["ChannelCache", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "75"], "n_allocations": 1, "name": "ChannelCache at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:75", "thread_id": "0x1", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["ChannelCache", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "76"], "n_allocations": 1, "name": "ChannelCache at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:76", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "72"], "n_allocations": 6, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:72", "thread_id": "0x1", "value": 2632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "344"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:344", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py", "21"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_simple_stubs.py:21", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 11, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 6048}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 11, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 6048}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 4, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 11207}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 4, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 11207}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 11207}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 15, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 17255}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 15, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 17255}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 15, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 17255}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py", "124"], "n_allocations": 15, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py:124", "thread_id": "0x1", "value": 17255}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py", "41"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py:41", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py", "30"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py:30", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py", "59"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/experimental/__init__.py:59", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 19, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 21175}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 19, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 21175}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 542}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 542}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 542}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 20, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 21717}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 20, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 21717}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 20, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 21717}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "29"], "n_allocations": 20, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:29", "thread_id": "0x1", "value": 21717}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "885"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:885", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1216"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1216", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "652"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:652", "thread_id": "0x1", "value": 3720}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "93"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:93", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "361"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:361", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1032"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1032", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1462"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1462", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "982"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:982", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "25"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:25", "thread_id": "0x1", "value": 552}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1314"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1314", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1234"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1234", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1085"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1085", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 3, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 2103}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "455"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:455", "thread_id": "0x1", "value": 2103}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "283"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:283", "thread_id": "0x1", "value": 2048}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1171"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1171", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 43, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 42164}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 43, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 42164}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 5, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 264696}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 5, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 264696}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 5, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 264696}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 48, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 306860}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 48, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 306860}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 48, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 306860}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 48, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 306860}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 48, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 306860}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1976"], "n_allocations": 48, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1976", "thread_id": "0x1", "value": 306860}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1237"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1237", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1481"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1481", "thread_id": "0x1", "value": 32}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1480"], "n_allocations": 175, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1480", "thread_id": "0x1", "value": 22627}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1317"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1317", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1482"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1482", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1978"], "n_allocations": 177, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1978", "thread_id": "0x1", "value": 22691}], "interesting": true, "location": ["insecure_channel", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py", "38"], "n_allocations": 225, "name": "insecure_channel at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py:38", "thread_id": "0x1", "value": 329551}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "83"], "n_allocations": 225, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:83", "thread_id": "0x1", "value": 329551}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "34"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:34", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "46"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:46", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "68"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:68", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "20"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:20", "thread_id": "0x1", "value": 552}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "42"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:42", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 8, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 6560}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 8, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 6560}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 8, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 6560}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 8, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 6560}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 8, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 6560}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 8, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 6560}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 8, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 6560}], "interesting": true, "location": ["channel_ready_future", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1957"], "n_allocations": 8, "name": "channel_ready_future at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1957", "thread_id": "0x1", "value": 6560}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["_subscribe", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1418"], "n_allocations": 1, "name": "_subscribe at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1418", "thread_id": "0x1", "value": 528}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["wait", "/usr/lib/python3.7/threading.py", "552"], "n_allocations": 1, "name": " signaled = self._cond.wait(timeout)\n", "thread_id": "0x1", "value": 552}], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "857"], "n_allocations": 1, "name": " self._started.wait()\n", "thread_id": "0x1", "value": 552}], "interesting": true, "location": ["_subscribe", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1420"], "n_allocations": 1, "name": "_subscribe at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1420", "thread_id": "0x1", "value": 552}], "interesting": true, "location": ["subscribe", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1494"], "n_allocations": 2, "name": "subscribe at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1494", "thread_id": "0x1", "value": 1080}], "interesting": true, "location": ["start", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "169"], "n_allocations": 2, "name": "start at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:169", "thread_id": "0x1", "value": 1080}], "interesting": true, "location": ["channel_ready_future", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "179"], "n_allocations": 2, "name": "channel_ready_future at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:179", "thread_id": "0x1", "value": 1080}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "76"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:76", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["channel_ready_future", "/databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py", "178"], "n_allocations": 1, "name": "channel_ready_future at /databricks/python3/lib/python3.7/site-packages/grpc/_utilities.py:178", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["channel_ready_future", "/databricks/python3/lib/python3.7/site-packages/grpc/__init__.py", "1958"], "n_allocations": 3, "name": "channel_ready_future at /databricks/python3/lib/python3.7/site-packages/grpc/__init__.py:1958", "thread_id": "0x1", "value": 1608}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "85"], "n_allocations": 11, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:85", "thread_id": "0x1", "value": 8168}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["createLock", "/usr/lib/python3.7/logging/__init__.py", "835"], "n_allocations": 1, "name": " self.lock = threading.RLock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/logging/__init__.py", "813"], "n_allocations": 1, "name": " self.createLock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "75"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:75", "thread_id": "0x1", "value": 32}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "49"], "n_allocations": 1, "name": " self.not_full = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "53"], "n_allocations": 1, "name": " self.all_tasks_done = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "45"], "n_allocations": 1, "name": " self.not_empty = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "41"], "n_allocations": 1, "name": " self.mutex = threading.Lock()\n", "thread_id": "0x1", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["_init", "/usr/lib/python3.7/queue.py", "206"], "n_allocations": 1, "name": " self.queue = deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "35"], "n_allocations": 1, "name": " self._init(maxsize)\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "80"], "n_allocations": 5, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:80", "thread_id": "0x1", "value": 2144}, {"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "91"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:91", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "60"], "n_allocations": 264, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:60", "thread_id": "0x1", "value": 618479}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "186"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:186", "thread_id": "0x1", "value": 552}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/argparse.py", "1669"], "n_allocations": 1, "name": " self._subparsers = None\n", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "195"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:195", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["from_dictionary", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "251"], "n_allocations": 2, "name": "from_dictionary at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:251", "thread_id": "0x1", "value": 1664}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["encode", "/usr/lib/python3.7/json/encoder.py", "199"], "n_allocations": 1, "name": " chunks = self.iterencode(o, _one_shot=True)\n", "thread_id": "0x1", "value": 544}], "interesting": true, "location": ["dumps", "/usr/lib/python3.7/json/__init__.py", "231"], "n_allocations": 1, "name": " return _default_encoder.encode(obj)\n", "thread_id": "0x1", "value": 544}], "interesting": true, "location": ["from_dictionary", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "247"], "n_allocations": 2, "name": "from_dictionary at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:247", "thread_id": "0x1", "value": 1120}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "77"], "n_allocations": 4, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:77", "thread_id": "0x1", "value": 2784}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "112"], "n_allocations": 10, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:112", "thread_id": "0x1", "value": 580}, {"children": [], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "135"], "n_allocations": 1, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:135", "thread_id": "0x1", "value": 520}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "894"], "n_allocations": 12, "name": " self.emit(record)\n", "thread_id": "0x1", "value": 1636}], "interesting": true, "location": ["callHandlers", "/usr/lib/python3.7/logging/__init__.py", "1586"], "n_allocations": 12, "name": " hdlr.handle(record)\n", "thread_id": "0x1", "value": 1636}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "1524"], "n_allocations": 12, "name": " self.callHandlers(record)\n", "thread_id": "0x1", "value": 1636}], "interesting": true, "location": ["_log", "/usr/lib/python3.7/logging/__init__.py", "1514"], "n_allocations": 12, "name": " self.handle(record)\n", "thread_id": "0x1", "value": 1636}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/logging/__init__.py", "323"], "n_allocations": 1, "name": " self.stack_info = sinfo\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["makeRecord", "/usr/lib/python3.7/logging/__init__.py", "1483"], "n_allocations": 2, "name": " sinfo)\n", "thread_id": "0x1", "value": 1160}], "interesting": true, "location": ["_log", "/usr/lib/python3.7/logging/__init__.py", "1513"], "n_allocations": 3, "name": " exc_info, func, extra, sinfo)\n", "thread_id": "0x1", "value": 1744}], "interesting": true, "location": ["info", "/usr/lib/python3.7/logging/__init__.py", "1378"], "n_allocations": 16, "name": " self._log(INFO, msg, args, **kwargs)\n", "thread_id": "0x1", "value": 3972}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "64"], "n_allocations": 16, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:64", "thread_id": "0x1", "value": 3972}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_parse_sub", "/databricks/python3/lib/python3.7/sre_parse.py", "420"], "n_allocations": 1, "name": "_parse_sub at /databricks/python3/lib/python3.7/sre_parse.py:420", "thread_id": "0x1", "value": 856}], "interesting": true, "location": ["_parse", "/databricks/python3/lib/python3.7/sre_parse.py", "810"], "n_allocations": 2, "name": "_parse at /databricks/python3/lib/python3.7/sre_parse.py:810", "thread_id": "0x1", "value": 1424}], "interesting": true, "location": ["_parse_sub", "/databricks/python3/lib/python3.7/sre_parse.py", "420"], "n_allocations": 2, "name": "_parse_sub at /databricks/python3/lib/python3.7/sre_parse.py:420", "thread_id": "0x1", "value": 1424}], "interesting": true, "location": ["parse", "/databricks/python3/lib/python3.7/sre_parse.py", "924"], "n_allocations": 2, "name": "parse at /databricks/python3/lib/python3.7/sre_parse.py:924", "thread_id": "0x1", "value": 1424}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "764"], "n_allocations": 2, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:764", "thread_id": "0x1", "value": 1424}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/sre_compile.py", "168"], "n_allocations": 1, "name": "_compile at /databricks/python3/lib/python3.7/sre_compile.py:168", "thread_id": "0x1", "value": 688}], "interesting": true, "location": ["_code", "/databricks/python3/lib/python3.7/sre_compile.py", "607"], "n_allocations": 1, "name": "_code at /databricks/python3/lib/python3.7/sre_compile.py:607", "thread_id": "0x1", "value": 688}], "interesting": true, "location": ["compile", "/databricks/python3/lib/python3.7/sre_compile.py", "768"], "n_allocations": 1, "name": "compile at /databricks/python3/lib/python3.7/sre_compile.py:768", "thread_id": "0x1", "value": 688}], "interesting": true, "location": ["_compile", "/databricks/python3/lib/python3.7/re.py", "286"], "n_allocations": 3, "name": "_compile at /databricks/python3/lib/python3.7/re.py:286", "thread_id": "0x1", "value": 2112}], "interesting": true, "location": ["match", "/databricks/python3/lib/python3.7/re.py", "173"], "n_allocations": 3, "name": "match at /databricks/python3/lib/python3.7/re.py:173", "thread_id": "0x1", "value": 2112}], "interesting": true, "location": ["\u0026lt;dictcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "177"], "n_allocations": 4, "name": "\u003cdictcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:177", "thread_id": "0x1", "value": 4320}], "interesting": true, "location": ["_load_pipeline_options", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "177"], "n_allocations": 4, "name": "_load_pipeline_options at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:177", "thread_id": "0x1", "value": 4320}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "74"], "n_allocations": 4, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:74", "thread_id": "0x1", "value": 4320}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["add_argument", "/usr/lib/python3.7/argparse.py", "1368"], "n_allocations": 1, "name": " action = action_class(**kwargs)\n", "thread_id": "0x1", "value": 520}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_add_action", "/usr/lib/python3.7/argparse.py", "1400"], "n_allocations": 1, "name": " action.container = self\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_add_action", "/usr/lib/python3.7/argparse.py", "1586"], "n_allocations": 1, "name": " action = super(_ArgumentGroup, self)._add_action(action)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_add_action", "/usr/lib/python3.7/argparse.py", "1745"], "n_allocations": 1, "name": " self._optionals._add_action(action)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["add_argument", "/usr/lib/python3.7/argparse.py", "1382"], "n_allocations": 1, "name": " return self._add_action(action)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_add_argparse_args", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "511"], "n_allocations": 2, "name": "_add_argparse_args at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:511", "thread_id": "0x1", "value": 1096}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_add_action", "/usr/lib/python3.7/argparse.py", "1400"], "n_allocations": 1, "name": " action.container = self\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_add_action", "/usr/lib/python3.7/argparse.py", "1586"], "n_allocations": 1, "name": " action = super(_ArgumentGroup, self)._add_action(action)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_add_action", "/usr/lib/python3.7/argparse.py", "1745"], "n_allocations": 1, "name": " self._optionals._add_action(action)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["add_argument", "/usr/lib/python3.7/argparse.py", "1382"], "n_allocations": 1, "name": " return self._add_action(action)\n", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["add_argument", "/usr/lib/python3.7/argparse.py", "1368"], "n_allocations": 1, "name": " action = action_class(**kwargs)\n", "thread_id": "0x1", "value": 592}], "interesting": true, "location": ["_add_argparse_args", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "451"], "n_allocations": 2, "name": "_add_argparse_args at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:451", "thread_id": "0x1", "value": 1168}], "interesting": true, "location": ["get_all_options", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "286"], "n_allocations": 4, "name": "get_all_options at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:286", "thread_id": "0x1", "value": 2264}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "102"], "n_allocations": 5, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:102", "thread_id": "0x1", "value": 2824}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["notify", "/usr/lib/python3.7/threading.py", "348"], "n_allocations": 1, "name": " waiters_to_notify = _deque(_islice(all_waiters, n))\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["put", "/usr/lib/python3.7/queue.py", "151"], "n_allocations": 1, "name": " self.not_empty.notify()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["emit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "135"], "n_allocations": 1, "name": "emit at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:135", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "894"], "n_allocations": 1, "name": " self.emit(record)\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["callHandlers", "/usr/lib/python3.7/logging/__init__.py", "1586"], "n_allocations": 1, "name": " hdlr.handle(record)\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["handle", "/usr/lib/python3.7/logging/__init__.py", "1524"], "n_allocations": 1, "name": " self.callHandlers(record)\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["_log", "/usr/lib/python3.7/logging/__init__.py", "1514"], "n_allocations": 1, "name": " self.handle(record)\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["info", "/usr/lib/python3.7/logging/__init__.py", "1378"], "n_allocations": 1, "name": " self._log(INFO, msg, args, **kwargs)\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "85"], "n_allocations": 1, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:85", "thread_id": "0x1", "value": 528}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_ParseOrMerge", "/databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py", "837"], "n_allocations": 1, "name": "_ParseOrMerge at /databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py:837", "thread_id": "0x1", "value": 568}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py", "1252"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py:1252", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_ParseOrMerge", "/databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py", "835"], "n_allocations": 1, "name": "_ParseOrMerge at /databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py:835", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["MergeLines", "/databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py", "818"], "n_allocations": 2, "name": "MergeLines at /databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py:818", "thread_id": "0x1", "value": 1144}], "interesting": true, "location": ["MergeLines", "/databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py", "793"], "n_allocations": 2, "name": "MergeLines at /databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py:793", "thread_id": "0x1", "value": 1144}], "interesting": true, "location": ["Merge", "/databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py", "725"], "n_allocations": 2, "name": "Merge at /databricks/python3/lib/python3.7/site-packages/google/protobuf/text_format.py:725", "thread_id": "0x1", "value": 1144}], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "57"], "n_allocations": 2, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:57", "thread_id": "0x1", "value": 1144}, {"children": [], "interesting": true, "location": ["create_harness", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "54"], "n_allocations": 10, "name": "create_harness at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:54", "thread_id": "0x1", "value": 512}], "interesting": true, "location": ["main", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "131"], "n_allocations": 382, "name": "main at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:131", "thread_id": "0x1", "value": 912771}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "48"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:48", "thread_id": "0x1", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "385"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "47"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:47", "thread_id": "0x1", "value": 32}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "44"], "n_allocations": 2, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:44", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["submit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "103"], "n_allocations": 4, "name": "submit at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:103", "thread_id": "0x1", "value": 672}, {"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["submit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "105"], "n_allocations": 1, "name": "submit at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:105", "thread_id": "0x1", "value": 280}, {"children": [], "interesting": true, "location": ["submit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "94"], "n_allocations": 1, "name": "submit at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:94", "thread_id": "0x1", "value": 520}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/concurrent/futures/_base.py", "314"], "n_allocations": 1, "name": " self._condition = threading.Condition()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["submit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "87"], "n_allocations": 1, "name": "submit at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:87", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["_request_execute", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "342"], "n_allocations": 8, "name": "_request_execute at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:342", "thread_id": "0x1", "value": 2032}], "interesting": true, "location": ["_request_process_bundle", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "287"], "n_allocations": 8, "name": "_request_process_bundle at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:287", "thread_id": "0x1", "value": 2032}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "240"], "n_allocations": 8, "name": "run at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:240", "thread_id": "0x1", "value": 2032}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_consume_request_iterator", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "264"], "n_allocations": 2, "name": "_consume_request_iterator at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:264", "thread_id": "0x1", "value": 608}, {"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["_consume_request_iterator", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "266"], "n_allocations": 1, "name": "_consume_request_iterator at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:266", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1211"], "n_allocations": 3, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1211", "thread_id": "0x1", "value": 888}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["start", "/usr/lib/python3.7/threading.py", "852"], "n_allocations": 1, "name": " _start_new_thread(self._bootstrap, ())\n", "thread_id": "0x1", "value": 280}], "interesting": true, "location": ["_run_channel_spin_thread", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1270"], "n_allocations": 1, "name": "_run_channel_spin_thread at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1270", "thread_id": "0x1", "value": 280}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "804"], "n_allocations": 1, "name": " self._stderr = _sys.stderr\n", "thread_id": "0x1", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "500"], "n_allocations": 1, "name": " self._cond = Condition(Lock())\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "799"], "n_allocations": 1, "name": " self._started = Event()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["_run_channel_spin_thread", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1268"], "n_allocations": 2, "name": "_run_channel_spin_thread at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1268", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["create", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1306"], "n_allocations": 3, "name": "create at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1306", "thread_id": "0x1", "value": 888}, {"children": [], "interesting": true, "location": ["create", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1303"], "n_allocations": 30, "name": "create at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1303", "thread_id": "0x1", "value": 18994}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1209"], "n_allocations": 33, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1209", "thread_id": "0x1", "value": 19882}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["RLock", "/usr/lib/python3.7/threading.py", "86"], "n_allocations": 1, "name": " return _CRLock(*args, **kwargs)\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "218"], "n_allocations": 1, "name": " lock = RLock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "98"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:98", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "1191"], "n_allocations": 1, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:1191", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["continuation", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "522"], "n_allocations": 37, "name": "continuation at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:522", "thread_id": "0x1", "value": 20802}], "interesting": true, "location": ["_intercept", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "73"], "n_allocations": 37, "name": "_intercept at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:73", "thread_id": "0x1", "value": 20802}], "interesting": true, "location": ["intercept_stream_stream", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "59"], "n_allocations": 37, "name": "intercept_stream_stream at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:59", "thread_id": "0x1", "value": 20802}], "interesting": true, "location": ["__call__", "/databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py", "526"], "n_allocations": 37, "name": "__call__ at /databricks/python3/lib/python3.7/site-packages/grpc/_interceptor.py:526", "thread_id": "0x1", "value": 20802}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["wait", "/usr/lib/python3.7/threading.py", "289"], "n_allocations": 1, "name": " waiter = _allocate_lock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["_wait_once", "/databricks/python3/lib/python3.7/site-packages/grpc/_common.py", "112"], "n_allocations": 1, "name": "_wait_once at /databricks/python3/lib/python3.7/site-packages/grpc/_common.py:112", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["wait", "/databricks/python3/lib/python3.7/site-packages/grpc/_common.py", "150"], "n_allocations": 1, "name": "wait at /databricks/python3/lib/python3.7/site-packages/grpc/_common.py:150", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["_next", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "817"], "n_allocations": 1, "name": "_next at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:817", "thread_id": "0x1", "value": 32}, {"children": [], "interesting": true, "location": ["_next", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "803"], "n_allocations": 3, "name": "_next at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:803", "thread_id": "0x1", "value": 494}], "interesting": true, "location": ["__next__", "/databricks/python3/lib/python3.7/site-packages/grpc/_channel.py", "426"], "n_allocations": 5, "name": "__next__ at /databricks/python3/lib/python3.7/site-packages/grpc/_channel.py:426", "thread_id": "0x1", "value": 1046}], "interesting": true, "location": ["run", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "234"], "n_allocations": 42, "name": "run at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:234", "thread_id": "0x1", "value": 21848}], "interesting": true, "location": ["main", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "153"], "n_allocations": 50, "name": "main at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:153", "thread_id": "0x1", "value": 23880}, {"children": [{"children": [], "interesting": true, "location": ["view_as", "/databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py", "366"], "n_allocations": 1, "name": "view_as at /databricks/python3/lib/python3.7/site-packages/apache_beam/options/pipeline_options.py:366", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["main", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "134"], "n_allocations": 1, "name": "main at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:134", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "262"], "n_allocations": 434, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:262", "thread_id": "0x1", "value": 938323}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1230}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1230}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1230}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "224"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:224", "thread_id": "0x1", "value": 2624}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "270"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:270", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "141"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:141", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "207"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:207", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "246"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:246", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "170"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:170", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "157"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:157", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "103"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:103", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "118"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:118", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "94"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:94", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "286"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:286", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "297"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:297", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["build_worker_instruction", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "49"], "n_allocations": 2, "name": "build_worker_instruction at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:49", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py", "188"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/operation_specs.py:188", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 27, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 20768}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 27, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 20768}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1202}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1202}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1202}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 29, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 21970}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 29, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 21970}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 29, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 21970}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 29, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 21970}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 29, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 21970}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "65"], "n_allocations": 29, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:65", "thread_id": "0x1", "value": 21970}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "163"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:163", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "462"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:462", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "441"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:441", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "362"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:362", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "529"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:529", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_make_nmtuple", "/usr/lib/python3.7/typing.py", "1330"], "n_allocations": 2, "name": " pass\n", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["__new__", "/usr/lib/python3.7/typing.py", "1436"], "n_allocations": 2, "name": " fields, = args # allow the \"fields\" keyword be passed\n", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sideinputs.py", "210"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sideinputs.py:210", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sideinputs.py", "56"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sideinputs.py:56", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sideinputs.py", "51"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sideinputs.py:51", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2984}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2984}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2984}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2984}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2984}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2984}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 3, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 2984}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 8, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5136}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1050"], "n_allocations": 8, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:1050", "thread_id": "0x1", "value": 5136}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 8, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 5136}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 8, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 5136}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 8, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 5136}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 29, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 283985}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1050"], "n_allocations": 29, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:1050", "thread_id": "0x1", "value": 283985}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 29, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 283985}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 29, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 283985}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 29, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 283985}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 29, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 283985}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 29, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 283985}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "66"], "n_allocations": 29, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:66", "thread_id": "0x1", "value": 283985}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "573"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:573", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "685"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:685", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["append", "/usr/lib/python3.7/logging/__init__.py", "1175"], "n_allocations": 1, "name": " self.loggerMap[alogger] = None\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_fixupParents", "/usr/lib/python3.7/logging/__init__.py", "1285"], "n_allocations": 1, "name": " obj.append(alogger)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["getLogger", "/usr/lib/python3.7/logging/__init__.py", "1245"], "n_allocations": 1, "name": " self._fixupParents(rv)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["getLogger", "/usr/lib/python3.7/logging/__init__.py", "1932"], "n_allocations": 1, "name": " If no name is specified, return the root logger.\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "115"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:115", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "335"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:335", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1147"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1147", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "638"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:638", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "692"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:692", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "144"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:144", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["wrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1181"], "n_allocations": 1, "name": "wrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1181", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1907"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1907", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "1141"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:1141", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "508"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:508", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "812"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:812", "thread_id": "0x1", "value": 4632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "118"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:118", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py", "818"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/bundle_processor.py:818", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 80, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 328979}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 80, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 328979}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 82, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 330209}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 82, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 330209}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 82, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 330209}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 82, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 330209}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 82, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 330209}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "58"], "n_allocations": 82, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:58", "thread_id": "0x1", "value": 330209}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "22"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:22", "thread_id": "0x1", "value": 576}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "45"], "n_allocations": 1, "name": " self.not_empty = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["_init", "/usr/lib/python3.7/queue.py", "206"], "n_allocations": 1, "name": " self.queue = deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "35"], "n_allocations": 1, "name": " self._init(maxsize)\n", "thread_id": "0x1", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "53"], "n_allocations": 1, "name": " self.all_tasks_done = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/threading.py", "238"], "n_allocations": 1, "name": " self._waiters = _deque()\n", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "49"], "n_allocations": 1, "name": " self.not_full = threading.Condition(self.mutex)\n", "thread_id": "0x1", "value": 528}, {"children": [], "interesting": true, "location": ["__init__", "/usr/lib/python3.7/queue.py", "41"], "n_allocations": 1, "name": " self.mutex = threading.Lock()\n", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "76"], "n_allocations": 5, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:76", "thread_id": "0x1", "value": 2144}, {"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "80"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:80", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "130"], "n_allocations": 6, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:130", "thread_id": "0x1", "value": 2176}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "23"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:23", "thread_id": "0x1", "value": 552}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "74"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:74", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "26"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:26", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "124"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:124", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py", "42"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/thread_pool_executor.py:42", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 12, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 7048}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 12, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 7048}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 12, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 7048}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 12, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 7048}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 12, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 7048}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 12, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 7048}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 12, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 7048}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "66"], "n_allocations": 12, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:66", "thread_id": "0x1", "value": 7048}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_status.py", "39"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_status.py:39", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_status.py", "37"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_status.py:37", "thread_id": "0x1", "value": 528}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_status.py", "135"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_status.py:135", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 3152}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 3152}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3152}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3152}, {"children": [], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "971"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:971", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 4264}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "65"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:65", "thread_id": "0x1", "value": 4264}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "726"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:726", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 924}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 924}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 924}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py", "36"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py:36", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [], "interesting": true, "location": ["StateCache", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py", "233"], "n_allocations": 2, "name": "StateCache at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py:233", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py", "150"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py:150", "thread_id": "0x1", "value": 3900}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py", "48"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/statecache.py:48", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 8, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 6524}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 8, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 6524}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 9, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 7448}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 9, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 7448}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 9, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 7448}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "63"], "n_allocations": 9, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:63", "thread_id": "0x1", "value": 7448}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "1283"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:1283", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 263080}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "722"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:722", "thread_id": "0x1", "value": 263080}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "315"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:315", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "138"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:138", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "72"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:72", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "112"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:112", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "657"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:657", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "669"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:669", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "698"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:698", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1775}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "217"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:217", "thread_id": "0x1", "value": 2351}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "186"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:186", "thread_id": "0x1", "value": 3144}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "403"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:403", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py", "788"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/data_plane.py:788", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 19, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 278727}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 19, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 278727}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1461}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1461}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1461}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 21, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 280188}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 21, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 280188}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 21, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 280188}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 21, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 280188}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 21, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 280188}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "59"], "n_allocations": 22, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:59", "thread_id": "0x1", "value": 282396}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "89"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:89", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "833"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:833", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "1250"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:1250", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "763"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:763", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "94"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:94", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "136"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:136", "thread_id": "0x1", "value": 32}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "780"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:780", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["GlobalCachingStateHandler", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "1231"], "n_allocations": 1, "name": "GlobalCachingStateHandler at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:1231", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "1043"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:1043", "thread_id": "0x1", "value": 2448}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "870"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:870", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "563"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:563", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "139"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:139", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "354"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:354", "thread_id": "0x1", "value": 2431}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "912"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:912", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["append", "/usr/lib/python3.7/logging/__init__.py", "1175"], "n_allocations": 1, "name": " self.loggerMap[alogger] = None\n", "thread_id": "0x1", "value": 2208}], "interesting": true, "location": ["_fixupParents", "/usr/lib/python3.7/logging/__init__.py", "1285"], "n_allocations": 1, "name": " obj.append(alogger)\n", "thread_id": "0x1", "value": 2208}], "interesting": true, "location": ["getLogger", "/usr/lib/python3.7/logging/__init__.py", "1245"], "n_allocations": 1, "name": " self._fixupParents(rv)\n", "thread_id": "0x1", "value": 2208}], "interesting": true, "location": ["getLogger", "/usr/lib/python3.7/logging/__init__.py", "1932"], "n_allocations": 1, "name": " If no name is specified, return the root logger.\n", "thread_id": "0x1", "value": 2208}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py", "77"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker.py:77", "thread_id": "0x1", "value": 2208}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 155, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 652236}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 155, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 652236}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 263111}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 263111}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 263111}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 157, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 915347}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 157, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 915347}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 157, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 915347}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "41"], "n_allocations": 157, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:41", "thread_id": "0x1", "value": 915347}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["create_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1043"], "n_allocations": 2, "name": "create_module at \u003cfrozen importlib._bootstrap_external\u003e:1043", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["module_from_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "583"], "n_allocations": 2, "name": "module_from_spec at \u003cfrozen importlib._bootstrap\u003e:583", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "670"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:670", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1680}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/cProfile.py", "9"], "n_allocations": 3, "name": "import _lsprof\n", "thread_id": "0x1", "value": 1680}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/profile.py", "29"], "n_allocations": 1, "name": "import marshal\n", "thread_id": "0x1", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["Profile", "/usr/lib/python3.7/profile.py", "358"], "n_allocations": 1, "name": " class fake_frame:\n", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["Profile", "/usr/lib/python3.7/profile.py", "348"], "n_allocations": 1, "name": " class fake_code:\n", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/profile.py", "102"], "n_allocations": 5, "name": "class Profile:\n", "thread_id": "0x1", "value": 5985}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/profile.py", "41"], "n_allocations": 1, "name": "class _Utils:\n", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 7, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 7497}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 7, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 7497}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 2676}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 2676}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 2676}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 9, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 10173}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 9, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 10173}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 9, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 10173}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/cProfile.py", "10"], "n_allocations": 10, "name": "import profile as _pyprofile\n", "thread_id": "0x1", "value": 10749}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/cProfile.py", "27"], "n_allocations": 2, "name": "class Profile(_lsprof.Profiler):\n", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 15, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 13941}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 15, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 13941}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 15, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 13941}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 15, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 13941}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 15, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 13941}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py", "26"], "n_allocations": 15, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py:26", "thread_id": "0x1", "value": 13941}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/pstats.py", "500"], "n_allocations": 1, "name": "def func_std_string(func_name): # match what old profile produced\n", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [], "interesting": true, "location": ["Stats", "/usr/lib/python3.7/pstats.py", "196"], "n_allocations": 1, "name": " \"tottime\" : (((2,-1), ), \"internal time\"),\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/pstats.py", "55"], "n_allocations": 4, "name": "class Stats:\n", "thread_id": "0x1", "value": 4380}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__setattr__", "/databricks/python3/lib/python3.7/enum.py", "387"], "n_allocations": 1, "name": "__setattr__ at /databricks/python3/lib/python3.7/enum.py:387", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/enum.py", "258"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/enum.py:258", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/enum.py", "170"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/enum.py:170", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/enum.py", "247"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/enum.py:247", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/pstats.py", "34"], "n_allocations": 3, "name": "class SortKey(str, Enum):\n", "thread_id": "0x1", "value": 2624}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/pstats.py", "468"], "n_allocations": 1, "name": "class TupleComp:\n", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/usr/lib/python3.7/pstats.py", "28"], "n_allocations": 1, "name": "from enum import Enum\n", "thread_id": "0x1", "value": 552}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 10, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 9604}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 10, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 9604}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1804}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1804}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1804}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 11, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 11408}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 11, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 11408}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 11, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 11408}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py", "30"], "n_allocations": 11, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py:30", "thread_id": "0x1", "value": 11408}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py", "28"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py:28", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py", "42"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/profiler.py:42", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 29, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 27437}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 29, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 27437}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 699}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 699}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 699}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 30, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 28136}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 30, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 28136}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 30, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 28136}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 30, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 28136}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 30, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 28136}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "42"], "n_allocations": 30, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:42", "thread_id": "0x1", "value": 28136}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "226"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:226", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "304"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:304", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "464"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:464", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "8"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:8", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "384"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:384", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "176"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:176", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "198"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:198", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "38"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:38", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "422"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:422", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "326"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:326", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "86"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:86", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "277"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:277", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "347"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:347", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "150"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:150", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "239"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:239", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "5"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:5", "thread_id": "0x1", "value": 552}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "439"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:439", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "260"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:260", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "133"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:133", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py", "214"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/portability/api/beam_fn_api_pb2_grpc.py:214", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 20, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 18512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 20, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 18512}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 20, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 18512}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 20, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 18512}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 20, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 18512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 20, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 18512}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 20, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 18512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "40"], "n_allocations": 20, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:40", "thread_id": "0x1", "value": 18512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "127"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:127", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "35"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:35", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "29"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:29", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "23"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:23", "thread_id": "0x1", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py", "30"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/worker_id_interceptor.py:30", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 6, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 4536}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 4536}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 6, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 4536}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 6, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 4536}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 6, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 4536}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "43"], "n_allocations": 6, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:43", "thread_id": "0x1", "value": 4536}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "37"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:37", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "52"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:52", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/enum.py", "170"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/enum.py:170", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/utils/sentinel.py", "23"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/utils/sentinel.py:23", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "44"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:44", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py", "24"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/channel_factory.py:24", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py", "42"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/log_handler.py:42", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 31, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 27544}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 31, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 27544}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 31, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 27544}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 31, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 27544}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 31, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 27544}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "40"], "n_allocations": 31, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:40", "thread_id": "0x1", "value": 27544}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py", "37"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/worker/sdk_worker_main.py:37", "thread_id": "0x1", "value": 1112}], "interesting": false, "location": ["_run_code", "/usr/lib/python3.7/runpy.py", "85"], "n_allocations": 654, "name": " exec(code, run_globals)\n", "thread_id": "0x1", "value": 1911398}], "interesting": false, "location": ["_run_module_code", "/usr/lib/python3.7/runpy.py", "96"], "n_allocations": 655, "name": " mod_name, mod_spec, pkg_name, script_name)\n", "thread_id": "0x1", "value": 1911950}], "interesting": false, "location": ["run_module", "/usr/lib/python3.7/runpy.py", "205"], "n_allocations": 655, "name": " return _run_module_code(code, init_globals, run_name, mod_spec)\n", "thread_id": "0x1", "value": 1911950}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_subs_tvars", "/usr/lib/python3.7/typing.py", "186"], "n_allocations": 1, "name": " new_args = list(tp.__args__)\n", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["__getitem__", "/usr/lib/python3.7/typing.py", "631"], "n_allocations": 1, "name": " if not isinstance(params, tuple):\n", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["inner", "/usr/lib/python3.7/typing.py", "251"], "n_allocations": 1, "name": " return cached(*args, **kwds)\n", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["_BigQueryReadSplit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py", "231"], "n_allocations": 1, "name": "_BigQueryReadSplit at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py:231", "thread_id": "0x1", "value": 262144}, {"children": [], "interesting": true, "location": ["_BigQueryReadSplit", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py", "199"], "n_allocations": 1, "name": "_BigQueryReadSplit at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py:199", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py", "181"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py:181", "thread_id": "0x1", "value": 264232}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py", "135"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py:135", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py", "376"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py:376", "thread_id": "0x1", "value": 3720}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py", "100"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py:100", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py", "379"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_read_internal.py:379", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 11, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 271336}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 11, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 271336}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 11, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 271336}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 11, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 271336}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 11, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 271336}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "298"], "n_allocations": 11, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:298", "thread_id": "0x1", "value": 271336}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1638"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1638", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 136}], "interesting": true, "location": ["create_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1043"], "n_allocations": 2, "name": "create_module at \u003cfrozen importlib._bootstrap_external\u003e:1043", "thread_id": "0x1", "value": 136}], "interesting": true, "location": ["module_from_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "583"], "n_allocations": 2, "name": "module_from_spec at \u003cfrozen importlib._bootstrap\u003e:583", "thread_id": "0x1", "value": 136}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "670"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:670", "thread_id": "0x1", "value": 136}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 6, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 26689}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1050"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:1050", "thread_id": "0x1", "value": 26689}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 6, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 26689}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 8, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 26825}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 8, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 26825}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/orjson/__init__.py", "1"], "n_allocations": 9, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/orjson/__init__.py:1", "thread_id": "0x1", "value": 27937}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 9, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 27937}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 9, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 27937}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 9, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 27937}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 9, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 27937}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 9, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 27937}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "78"], "n_allocations": 10, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:78", "thread_id": "0x1", "value": 30145}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["append", "/usr/lib/python3.7/logging/__init__.py", "1175"], "n_allocations": 1, "name": " self.loggerMap[alogger] = None\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_fixupParents", "/usr/lib/python3.7/logging/__init__.py", "1285"], "n_allocations": 1, "name": " obj.append(alogger)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["getLogger", "/usr/lib/python3.7/logging/__init__.py", "1245"], "n_allocations": 1, "name": " self._fixupParents(rv)\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["getLogger", "/usr/lib/python3.7/logging/__init__.py", "1932"], "n_allocations": 1, "name": " If no name is specified, return the root logger.\n", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "93"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:93", "thread_id": "0x1", "value": 576}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "286"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:286", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "248"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:248", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "157"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:157", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "62"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:62", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "276"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:276", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "302"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:302", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "268"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:268", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "322"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:322", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "212"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:212", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "85"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:85", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py", "280"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/runners/dataflow/native_io/iobase.py:280", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 14, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 12560}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 14, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 12560}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 2388}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 2388}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 2388}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 16, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 14948}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 16, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 14948}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 16, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 14948}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 16, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 14948}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 16, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 14948}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "60"], "n_allocations": 16, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:60", "thread_id": "0x1", "value": 14948}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1788"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1788", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1580"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1580", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/apache_beam/internal/metrics/metric.py", "129"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/apache_beam/internal/metrics/metric.py:129", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["BigQueryWrapper", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "324"], "n_allocations": 1, "name": "BigQueryWrapper at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:324", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "310"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:310", "thread_id": "0x1", "value": 2080}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1540"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1540", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_io_metadata.py", "77"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_io_metadata.py:77", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/gce_metadata_util.py", "27"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/gce_metadata_util.py:27", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 1, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_io_metadata.py", "24"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_io_metadata.py:24", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_io_metadata.py", "26"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_io_metadata.py:26", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2088}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 681}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 681}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 681}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2769}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2769}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2769}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "55"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:55", "thread_id": "0x1", "value": 2769}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1335"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1335", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1454"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1454", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1515"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1515", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_avro_tools.py", "61"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_avro_tools.py:61", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_avro_tools.py", "93"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_avro_tools.py:93", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 2, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 1152}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "53"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:53", "thread_id": "0x1", "value": 1152}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "971"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:971", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 1, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "56"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:56", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "103"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:103", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "109"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:109", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py", "1658"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery_tools.py:1658", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 49, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 62758}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 49, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 62758}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 6, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 266703}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 6, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 266703}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 266703}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 55, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 329461}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 55, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 329461}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 55, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 329461}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 55, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 329461}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 55, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 329461}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "296"], "n_allocations": 55, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:296", "thread_id": "0x1", "value": 329461}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "412"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:412", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["ReadFromBigQuery", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "2347"], "n_allocations": 1, "name": "ReadFromBigQuery at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:2347", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "2255"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:2255", "thread_id": "0x1", "value": 7504}, {"children": [{"children": [], "interesting": true, "location": ["_StreamToBigQuery", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1805"], "n_allocations": 1, "name": "_StreamToBigQuery at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1805", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1775"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1775", "thread_id": "0x1", "value": 1872}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "531"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:531", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "452"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:452", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["_CustomBigQueryStorageSource", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "977"], "n_allocations": 1, "name": "_CustomBigQueryStorageSource at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:977", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "920"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:920", "thread_id": "0x1", "value": 3636}, {"children": [{"children": [], "interesting": true, "location": ["WriteToBigQuery", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1890"], "n_allocations": 1, "name": "WriteToBigQuery at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1890", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1883"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1883", "thread_id": "0x1", "value": 2448}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "2473"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:2473", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "660"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:660", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "482"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:482", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1192"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1192", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1275"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1275", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1303"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1303", "thread_id": "0x1", "value": 5568}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "1471"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:1471", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py", "2525"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/gcp/bigquery.py:2525", "thread_id": "0x1", "value": 1850}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 95, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 634403}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 95, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 634403}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 9, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 37301}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 9, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 37301}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 9, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 37301}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 104, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 671704}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 104, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 671704}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 104, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 671704}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/__init__.py", "36"], "n_allocations": 104, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/__init__.py:36", "thread_id": "0x1", "value": 671704}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["spec_from_file_location", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "606"], "n_allocations": 1, "name": "spec_from_file_location at \u003cfrozen importlib._bootstrap_external\u003e:606", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["_get_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1354"], "n_allocations": 1, "name": "_get_spec at \u003cfrozen importlib._bootstrap_external\u003e:1354", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["find_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1384"], "n_allocations": 1, "name": "find_spec at \u003cfrozen importlib._bootstrap_external\u003e:1384", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["_get_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1252"], "n_allocations": 1, "name": "_get_spec at \u003cfrozen importlib._bootstrap_external\u003e:1252", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["find_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1280"], "n_allocations": 1, "name": "find_spec at \u003cfrozen importlib._bootstrap_external\u003e:1280", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["_find_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "906"], "n_allocations": 1, "name": "_find_spec at \u003cfrozen importlib._bootstrap\u003e:906", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "963"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:963", "thread_id": "0x1", "value": 262144}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/decimal128.py", "48"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/decimal128.py:48", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/decimal128.py", "139"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/decimal128.py:139", "thread_id": "0x1", "value": 4868}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5980}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 5980}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 3324}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 3324}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 3324}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 9304}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 9304}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 9304}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "91"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:91", "thread_id": "0x1", "value": 9304}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/code.py", "18"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/code.py:18", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/code.py", "21"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/code.py:21", "thread_id": "0x1", "value": 2680}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 3256}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 3256}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 4472}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 4472}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 4472}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "88"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:88", "thread_id": "0x1", "value": 4472}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/max_key.py", "19"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/max_key.py:19", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "94"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:94", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/codec_options.py", "59"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/codec_options.py:59", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/codec_options.py", "364"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/codec_options.py:364", "thread_id": "0x1", "value": 528}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/codec_options.py", "38"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/codec_options.py:38", "thread_id": "0x1", "value": 2048}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/codec_options.py", "80"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/codec_options.py:80", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/codec_options.py", "189"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/codec_options.py:189", "thread_id": "0x1", "value": 4191}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/codec_options.py", "179"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/codec_options.py:179", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/codec_options.py", "96"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/codec_options.py:96", "thread_id": "0x1", "value": 2126}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 11, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 12277}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 11, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 12277}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 3, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 5059}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 3, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 5059}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 5059}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 14, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 17336}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 14, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 17336}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 14, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 17336}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "89"], "n_allocations": 14, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:89", "thread_id": "0x1", "value": 17336}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_fill_cache", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1416"], "n_allocations": 1, "name": "_fill_cache at \u003cfrozen importlib._bootstrap_external\u003e:1416", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["find_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1368"], "n_allocations": 1, "name": "find_spec at \u003cfrozen importlib._bootstrap_external\u003e:1368", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_get_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1252"], "n_allocations": 1, "name": "_get_spec at \u003cfrozen importlib._bootstrap_external\u003e:1252", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["find_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1280"], "n_allocations": 1, "name": "find_spec at \u003cfrozen importlib._bootstrap_external\u003e:1280", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_find_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "906"], "n_allocations": 1, "name": "_find_spec at \u003cfrozen importlib._bootstrap\u003e:906", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "963"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:963", "thread_id": "0x1", "value": 2048}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/binary.py", "349"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/binary.py:349", "thread_id": "0x1", "value": 3203}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/binary.py", "180"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/binary.py:180", "thread_id": "0x1", "value": 2490}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/py3compat.py", "46"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/py3compat.py:46", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/binary.py", "18"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/binary.py:18", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/binary.py", "155"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/binary.py:155", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/binary.py", "60"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/binary.py:60", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 8, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 8853}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 8, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 8853}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 4, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 4755}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 4, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 4755}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 4755}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 12, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 13608}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 12, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 13608}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 13, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 15656}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "78"], "n_allocations": 13, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:78", "thread_id": "0x1", "value": 15656}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 885}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 885}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 885}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/son.py", "24"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/son.py:24", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/son.py", "31"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/son.py:31", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2624}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2624}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2624}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2624}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2624}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/dbref.py", "20"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/dbref.py:20", "thread_id": "0x1", "value": 2624}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/dbref.py", "19"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/dbref.py:19", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/dbref.py", "23"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/dbref.py:23", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 6, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 4712}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 4712}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 7, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 5597}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 7, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 5597}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 7, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 5597}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "90"], "n_allocations": 7, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:90", "thread_id": "0x1", "value": 5597}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["randrange", "/databricks/python3/lib/python3.7/random.py", "198"], "n_allocations": 1, "name": "randrange at /databricks/python3/lib/python3.7/random.py:198", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["randint", "/databricks/python3/lib/python3.7/random.py", "222"], "n_allocations": 2, "name": "randint at /databricks/python3/lib/python3.7/random.py:222", "thread_id": "0x1", "value": 1048}], "interesting": true, "location": ["ObjectId", "/databricks/python3/lib/python3.7/site-packages/bson/objectid.py", "52"], "n_allocations": 2, "name": "ObjectId at /databricks/python3/lib/python3.7/site-packages/bson/objectid.py:52", "thread_id": "0x1", "value": 1048}, {"children": [], "interesting": true, "location": ["ObjectId", "/databricks/python3/lib/python3.7/site-packages/bson/objectid.py", "53"], "n_allocations": 1, "name": "ObjectId at /databricks/python3/lib/python3.7/site-packages/bson/objectid.py:53", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/objectid.py", "47"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/objectid.py:47", "thread_id": "0x1", "value": 3168}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/tz_util.py", "19"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/tz_util.py:19", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/tz_util.py", "22"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/tz_util.py:22", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/objectid.py", "30"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/objectid.py:30", "thread_id": "0x1", "value": 2624}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 8, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5792}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 8, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 5792}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 2799}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 2799}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 2799}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 10, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 8591}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 10, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 8591}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 10, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 8591}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "96"], "n_allocations": 10, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:96", "thread_id": "0x1", "value": 8591}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "1044"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:1044", "thread_id": "0x1", "value": 9248}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/errors.py", "30"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/errors.py:30", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/errors.py", "18"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/errors.py:18", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/errors.py", "26"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/errors.py:26", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/errors.py", "22"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/errors.py:22", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/errors.py", "34"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/errors.py:34", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 6, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5256}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 5256}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 6, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 5256}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 6, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 5256}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 6, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 5256}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "92"], "n_allocations": 6, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:92", "thread_id": "0x1", "value": 5256}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/int64.py", "23"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/int64.py:23", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "93"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:93", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 262871}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 262871}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 262871}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/timestamp.py", "27"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/timestamp.py:27", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/timestamp.py", "21"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/timestamp.py:21", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 264959}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 264959}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 264959}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "100"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:100", "thread_id": "0x1", "value": 264959}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "506"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:506", "thread_id": "0x1", "value": 8056}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "1200"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:1200", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1569}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1569}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1569}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/regex.py", "20"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/regex.py:20", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/regex.py", "42"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/regex.py:42", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3657}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3657}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3657}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "98"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:98", "thread_id": "0x1", "value": 3657}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["create_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1043"], "n_allocations": 1, "name": "create_module at \u003cfrozen importlib._bootstrap_external\u003e:1043", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["module_from_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "583"], "n_allocations": 1, "name": "module_from_spec at \u003cfrozen importlib._bootstrap\u003e:583", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "670"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:670", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 1, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "104"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:104", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "774"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:774", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/min_key.py", "19"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/min_key.py:19", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "95"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:95", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/__init__.py", "431"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/__init__.py:431", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 82, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 359868}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 82, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 359868}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 9, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 10844}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 9, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 10844}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 9, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 10844}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 91, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 370712}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 91, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 370712}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 92, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 632856}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/database.py", "28"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/database.py:28", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py", "81"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py:81", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py", "124"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py:124", "thread_id": "0x1", "value": 1509}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py", "42"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py:42", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py", "38"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py:38", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py", "115"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py:115", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py", "99"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/son_manipulator.py:99", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 7, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5829}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 7, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 5829}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1742}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1742}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1742}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 9, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 7571}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 9, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 7571}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 9, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 7571}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/database.py", "38"], "n_allocations": 9, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/database.py:38", "thread_id": "0x1", "value": 7571}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/database.py", "1763"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/database.py:1763", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/periodic_executor.py", "19"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/periodic_executor.py:19", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/uri_parser.py", "397"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/uri_parser.py:397", "thread_id": "0x1", "value": 2208}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/_ipaddress.py", "22"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/_ipaddress.py:22", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/srv_resolver.py", "25"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/srv_resolver.py:25", "thread_id": "0x1", "value": 1152}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/srv_resolver.py", "59"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/srv_resolver.py:59", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2664}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2664}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2664}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2664}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2664}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/uri_parser.py", "35"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/uri_parser.py:35", "thread_id": "0x1", "value": 2664}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/database.py", "55"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/database.py:55", "thread_id": "0x1", "value": 3144}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/periodic_executor.py", "24"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/periodic_executor.py:24", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 22, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 20299}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 22, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 20299}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 26, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 303227}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 26, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 303227}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 26, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 303227}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 48, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 323526}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 48, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 323526}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 48, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 323526}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 48, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 323526}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 48, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 323526}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "44"], "n_allocations": 48, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:44", "thread_id": "0x1", "value": 323526}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py", "476"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py:476", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py", "43"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py:43", "thread_id": "0x1", "value": 2048}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py", "35"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py:35", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py", "37"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology_description.py:37", "thread_id": "0x1", "value": 520}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 6, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5192}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 5192}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 3, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1623}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 3, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1623}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1623}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 9, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 6815}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 9, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 6815}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 9, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 6815}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/settings.py", "26"], "n_allocations": 9, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/settings.py:26", "thread_id": "0x1", "value": 6815}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_description.py", "19"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_description.py:19", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_description.py", "23"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_description.py:23", "thread_id": "0x1", "value": 4064}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 4640}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 4640}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 4640}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 4640}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 4640}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py", "28"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py:28", "thread_id": "0x1", "value": 5752}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py", "101"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py:101", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py", "40"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py:40", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py", "334"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py:334", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py", "284"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitor.py:284", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 11, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 11224}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 11, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 11224}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 11, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 11224}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 11, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 11224}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 11, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 11224}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 11, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 11224}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 11, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 11224}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/settings.py", "21"], "n_allocations": 11, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/settings.py:21", "thread_id": "0x1", "value": 11224}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/settings.py", "29"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/settings.py:29", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/settings.py", "20"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/settings.py:20", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 23, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 20127}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 23, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 20127}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 23, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 20127}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 23, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 20127}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 23, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 20127}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "75"], "n_allocations": 23, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:75", "thread_id": "0x1", "value": 20127}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor_manager.py", "33"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor_manager.py:33", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor_manager.py", "36"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor_manager.py:36", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 262687}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 262687}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 262687}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 264199}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 264199}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 264199}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "56"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:56", "thread_id": "0x1", "value": 264199}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "2511"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:2511", "thread_id": "0x1", "value": 1832}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "1145"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:1145", "thread_id": "0x1", "value": 5568}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 4416}], "interesting": true, "location": ["create_module", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "746"], "n_allocations": 2, "name": "create_module at \u003cfrozen importlib._bootstrap\u003e:746", "thread_id": "0x1", "value": 4416}], "interesting": true, "location": ["module_from_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "583"], "n_allocations": 2, "name": "module_from_spec at \u003cfrozen importlib._bootstrap\u003e:583", "thread_id": "0x1", "value": 4416}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "670"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:670", "thread_id": "0x1", "value": 4416}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 4416}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 4416}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "71"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:71", "thread_id": "0x1", "value": 4416}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py", "24"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py:24", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py", "76"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py:76", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py", "92"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py:92", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py", "29"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py:29", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py", "120"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py:120", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py", "103"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/thread_util.py:103", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 7, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5832}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 7, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 5832}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 7, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 5832}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 7, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 5832}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 7, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 5832}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 7, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 5832}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 7, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 5832}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "28"], "n_allocations": 7, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:28", "thread_id": "0x1", "value": 5832}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/hello.py", "20"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/hello.py:20", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/hello.py", "53"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/hello.py:53", "thread_id": "0x1", "value": 2248}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2824}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2824}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2824}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2824}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3352}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ismaster.py", "21"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ismaster.py:21", "thread_id": "0x1", "value": 3928}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ismaster.py", "24"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ismaster.py:24", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 6, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 4864}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 4864}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 6, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 4864}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 6, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 4864}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 6, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 4864}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "55"], "n_allocations": 6, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:55", "thread_id": "0x1", "value": 4864}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "1153"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:1153", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "243"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:243", "thread_id": "0x1", "value": 520}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ssl_match_hostname.py", "9"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ssl_match_hostname.py:9", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "65"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:65", "thread_id": "0x1", "value": 576}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/socket_checker.py", "19"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/socket_checker.py:19", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/socket_checker.py", "35"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/socket_checker.py:35", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/network.py", "38"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/network.py:38", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/network.py", "27"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/network.py:27", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2624}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2624}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 2542}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 2542}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 2542}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 5166}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 5166}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 5166}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "58"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:58", "thread_id": "0x1", "value": 5166}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "516"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:516", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "1106"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:1106", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "1114"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:1114", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "502"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:502", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/pool.py", "269"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/pool.py:269", "thread_id": "0x1", "value": 2728}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 33, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 36038}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 33, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 36038}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 6, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 4665}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 6, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 4665}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 4665}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 39, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 40703}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 39, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 40703}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 39, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 40703}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_options.py", "24"], "n_allocations": 39, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_options.py:24", "thread_id": "0x1", "value": 40703}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_options.py", "151"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_options.py:151", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_options.py", "29"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_options.py:29", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 42, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 43863}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 42, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 43863}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 42, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 43863}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 42, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 43863}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 42, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 43863}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "54"], "n_allocations": 42, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:54", "thread_id": "0x1", "value": 43863}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1398}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1398}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1398}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server.py", "29"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server.py:29", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server.py", "20"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server.py:20", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3486}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3486}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3486}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology.py", "45"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology.py:45", "thread_id": "0x1", "value": 3486}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology.py", "55"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology.py:55", "thread_id": "0x1", "value": 2208}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology.py", "81"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology.py:81", "thread_id": "0x1", "value": 3144}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/topology.py", "796"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/topology.py:796", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 9, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 9774}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 9, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 9774}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1335}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1335}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1335}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 11, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 11109}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 11, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 11109}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 11, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 11109}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "76"], "n_allocations": 11, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:76", "thread_id": "0x1", "value": 11109}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "87"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:87", "thread_id": "0x1", "value": 5568}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py", "74"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_client.py:74", "thread_id": "0x1", "value": 2208}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 133, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 672432}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 133, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 672432}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 21, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 51082}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 21, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 51082}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 21, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 51082}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 154, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 723514}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 154, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 723514}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 154, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 723514}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/__init__.py", "117"], "n_allocations": 154, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/__init__.py:117", "thread_id": "0x1", "value": 723514}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "97"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:97", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "272"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:272", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "208"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:208", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "294"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:294", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "319"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:319", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "164"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:164", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "280"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:280", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "240"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:240", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "73"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:73", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "284"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:284", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "251"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:251", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "131"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:131", "thread_id": "0x1", "value": 1523}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "300"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:300", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "151"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:151", "thread_id": "0x1", "value": 1490}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "216"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:216", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "77"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:77", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "226"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:226", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "268"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:268", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "168"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:168", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "276"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:276", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "69"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:69", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "98"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:98", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "116"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:116", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "255"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:255", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "33"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:33", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/errors.py", "233"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/errors.py:233", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 28, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 25653}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 28, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 25653}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 3, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1770}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 3, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1770}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1770}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 31, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 27423}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 31, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 27423}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 31, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 27423}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py", "33"], "n_allocations": 31, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py:33", "thread_id": "0x1", "value": 27423}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py", "24"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py:24", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py", "36"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py:36", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py", "30"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth_aws.py:30", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 34, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 29871}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 34, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 29871}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 34, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 29871}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 34, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 29871}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 34, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 29871}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "47"], "n_allocations": 34, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:47", "thread_id": "0x1", "value": 29871}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 701}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 701}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 701}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/saslprep.py", "35"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/saslprep.py:35", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 2, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1277}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 2, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1277}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 2, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1277}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "49"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:49", "thread_id": "0x1", "value": 1277}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "91"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:91", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "102"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:102", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "66"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:66", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "352"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:352", "thread_id": "0x1", "value": 2208}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "659"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:659", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "644"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:644", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/auth.py", "622"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/auth.py:622", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 47, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 41676}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 47, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 41676}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1338}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1338}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1338}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 49, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 43014}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 49, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 43014}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 49, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 43014}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "26"], "n_allocations": 49, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:26", "thread_id": "0x1", "value": 43014}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "561"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:561", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1192"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1192", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "534"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:534", "thread_id": "0x1", "value": 1712}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "988"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:988", "thread_id": "0x1", "value": 1016}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "912"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:912", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "761"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:761", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1123"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1123", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1025"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1025", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "962"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:962", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "786"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:786", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "926"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:926", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "628"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:628", "thread_id": "0x1", "value": 2118}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "851"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:851", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "358"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:358", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1053"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1053", "thread_id": "0x1", "value": 1016}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1201"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1201", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1228"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1228", "thread_id": "0x1", "value": 1632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "895"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:895", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "817"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:817", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/helpers.py", "23"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/helpers.py:23", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "187"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:187", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1114"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1114", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1039"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1039", "thread_id": "0x1", "value": 3144}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "830"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:830", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1277"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1277", "thread_id": "0x1", "value": 1632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "392"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:392", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "192"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:192", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "685"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:685", "thread_id": "0x1", "value": 2117}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "239"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:239", "thread_id": "0x1", "value": 2070}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1219"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1219", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "207"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:207", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1132"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1132", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1149"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1149", "thread_id": "0x1", "value": 1592}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "425"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:425", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1080"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1080", "thread_id": "0x1", "value": 1592}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "870"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:870", "thread_id": "0x1", "value": 1016}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1183"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1183", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "742"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:742", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "203"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:203", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "1322"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:1322", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py", "575"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monitoring.py:575", "thread_id": "0x1", "value": 1592}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 54, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 48729}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 54, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 48729}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 9, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 273617}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 9, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 273617}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 9, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 273617}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 63, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 322346}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 63, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 322346}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 63, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 322346}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py", "41"], "n_allocations": 63, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py:41", "thread_id": "0x1", "value": 322346}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py", "113"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py:113", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py", "121"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py:121", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py", "135"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py:135", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py", "91"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py:91", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/hello_compat.py", "18"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/hello_compat.py:18", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py", "40"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/compression_support.py:40", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 69, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 328138}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 69, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 328138}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 69, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 328138}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 69, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 328138}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 69, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 328138}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "27"], "n_allocations": 69, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:27", "thread_id": "0x1", "value": 328138}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_api.py", "157"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_api.py:157", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_api.py", "98"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_api.py:98", "thread_id": "0x1", "value": 263080}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_api.py", "88"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_api.py:88", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 264592}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 264592}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 3237}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 3237}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 3237}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 6, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 267829}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 6, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 267829}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 6, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 267829}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "37"], "n_allocations": 6, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:37", "thread_id": "0x1", "value": 267829}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/write_concern.py", "18"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/write_concern.py:18", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/write_concern.py", "21"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/write_concern.py:21", "thread_id": "0x1", "value": 3202}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 3778}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 3778}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1618}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1618}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1618}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 5396}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 5396}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 5396}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "39"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:39", "thread_id": "0x1", "value": 5396}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 5046}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 5046}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 5046}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/encryption_options.py", "26"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/encryption_options.py:26", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/encryption_options.py", "29"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/encryption_options.py:29", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 2, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 6558}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 6558}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 6558}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "32"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:32", "thread_id": "0x1", "value": 6558}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_selectors.py", "20"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_selectors.py:20", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_selectors.py", "77"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_selectors.py:77", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "20"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:20", "thread_id": "0x1", "value": 2088}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "446"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:446", "thread_id": "0x1", "value": 2797}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "95"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:95", "thread_id": "0x1", "value": 2248}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "509"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:509", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "306"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:306", "thread_id": "0x1", "value": 1924}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/max_staleness_selectors.py", "35"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/max_staleness_selectors.py:35", "thread_id": "0x1", "value": 576}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_type.py", "32"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_type.py:32", "thread_id": "0x1", "value": 568}, {"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/server_type.py", "30"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/server_type.py:30", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2080}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2080}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2080}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2080}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2080}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/max_staleness_selectors.py", "31"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/max_staleness_selectors.py:31", "thread_id": "0x1", "value": 2080}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2656}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2656}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 547}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 547}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 547}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3203}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3203}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3203}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 5, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 3203}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 5, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 3203}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "18"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:18", "thread_id": "0x1", "value": 3203}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "341"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:341", "thread_id": "0x1", "value": 2118}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "387"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:387", "thread_id": "0x1", "value": 1823}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "235"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:235", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "263"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:263", "thread_id": "0x1", "value": 2119}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py", "65"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_preferences.py:65", "thread_id": "0x1", "value": 1112}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 23, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 21304}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 23, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 21304}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 7, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 7746}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 7, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 7746}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 7, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 7746}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 30, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 29050}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 30, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 29050}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 30, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 29050}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "36"], "n_allocations": 30, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:36", "thread_id": "0x1", "value": 29050}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["namedtuple", "/databricks/python3/lib/python3.7/collections/__init__.py", "466"], "n_allocations": 2, "name": "namedtuple at /databricks/python3/lib/python3.7/collections/__init__.py:466", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/driver_info.py", "22"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/driver_info.py:22", "thread_id": "0x1", "value": 3024}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 3024}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 3024}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3024}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3024}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3024}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "31"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:31", "thread_id": "0x1", "value": 3024}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "663"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:663", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "741"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:741", "thread_id": "0x1", "value": 2208}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "549"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:549", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_concern.py", "75"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_concern.py:75", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/read_concern.py", "20"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/read_concern.py:20", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "35"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:35", "thread_id": "0x1", "value": 2088}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 528}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py", "27"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py:27", "thread_id": "0x1", "value": 528}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py", "59"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py:59", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ssl_context.py", "21"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ssl_context.py:21", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py", "30"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py:30", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py", "50"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/ssl_support.py:50", "thread_id": "0x1", "value": 32}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2248}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2248}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 549}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 549}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 549}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2797}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2797}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 5, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2797}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "38"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:38", "thread_id": "0x1", "value": 2797}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "1053"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:1053", "thread_id": "0x1", "value": 2568}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "1679"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:1679", "thread_id": "0x1", "value": 1672}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "820"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:820", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "762"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:762", "thread_id": "0x1", "value": 4632}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["create_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1043"], "n_allocations": 1, "name": "create_module at \u003cfrozen importlib._bootstrap_external\u003e:1043", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["module_from_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "583"], "n_allocations": 1, "name": "module_from_spec at \u003cfrozen importlib._bootstrap\u003e:583", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "670"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:670", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 1, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "46"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:46", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "1790"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:1790", "thread_id": "0x1", "value": 1672}, {"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__setitem__", "/databricks/python3/lib/python3.7/site-packages/bson/son.py", "59"], "n_allocations": 1, "name": "__setitem__ at /databricks/python3/lib/python3.7/site-packages/bson/son.py:59", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["update", "/databricks/python3/lib/python3.7/site-packages/bson/son.py", "145"], "n_allocations": 1, "name": "update at /databricks/python3/lib/python3.7/site-packages/bson/son.py:145", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["__init__", "/databricks/python3/lib/python3.7/site-packages/bson/son.py", "42"], "n_allocations": 1, "name": "__init__ at /databricks/python3/lib/python3.7/site-packages/bson/son.py:42", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "180"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:180", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "573"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:573", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "1260"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:1260", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "437"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:437", "thread_id": "0x1", "value": 1992}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "336"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:336", "thread_id": "0x1", "value": 4632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "748"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:748", "thread_id": "0x1", "value": 2208}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/message.py", "246"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/message.py:246", "thread_id": "0x1", "value": 2768}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/common.py", "905"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/common.py:905", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 199, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 721278}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 199, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 721278}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 3, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 263327}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 3, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 263327}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 263327}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 202, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 984605}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 202, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 984605}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 202, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 984605}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 202, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 984605}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 202, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 984605}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "26"], "n_allocations": 202, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:26", "thread_id": "0x1", "value": 984605}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/raw_bson.py", "56"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/raw_bson.py:56", "thread_id": "0x1", "value": 576}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1632}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/raw_bson.py", "62"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/raw_bson.py:62", "thread_id": "0x1", "value": 1632}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2208}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2208}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 2791}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 2791}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 2791}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 5, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 4999}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 5, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 4999}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 6, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 5527}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "24"], "n_allocations": 6, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:24", "thread_id": "0x1", "value": 5527}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py", "81"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py:81", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py", "28"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py:28", "thread_id": "0x1", "value": 1112}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/response.py", "18"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/response.py:18", "thread_id": "0x1", "value": 1752}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/response.py", "69"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/response.py:69", "thread_id": "0x1", "value": 1016}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2768}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2768}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 702}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 702}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 702}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3470}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3470}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3470}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py", "37"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py:37", "thread_id": "0x1", "value": 3470}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py", "130"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py:130", "thread_id": "0x1", "value": 3144}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py", "110"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py:110", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py", "1344"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/cursor.py:1344", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 10, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 10534}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 10, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 10534}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 20, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 17138}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 20, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 17138}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 20, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 17138}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 30, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 27672}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 30, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 27672}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 30, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 27672}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "145"], "n_allocations": 30, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:145", "thread_id": "0x1", "value": 27672}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/monotonic.py", "35"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/monotonic.py:35", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 1, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 1, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 1, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "144"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:144", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "354"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:354", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "439"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:439", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "345"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:345", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "328"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:328", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "219"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:219", "thread_id": "0x1", "value": 2174}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "999"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:999", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "967"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:967", "thread_id": "0x1", "value": 3144}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py", "161"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/client_session.py:161", "thread_id": "0x1", "value": 1612}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 46, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 42698}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 46, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 42698}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 5, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 273173}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 5, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 273173}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 5, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 273173}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 51, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 315871}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 51, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 315871}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 51, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 315871}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py", "25"], "n_allocations": 51, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py:25", "thread_id": "0x1", "value": 315871}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py", "99"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py:99", "thread_id": "0x1", "value": 2208}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py", "601"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py:601", "thread_id": "0x1", "value": 1632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py", "560"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py:560", "thread_id": "0x1", "value": 1632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py", "69"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py:69", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py", "145"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py:145", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py", "654"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/bulk.py:654", "thread_id": "0x1", "value": 976}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 60, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 324767}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 60, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 324767}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 3, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 2318}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 3, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 2318}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 2318}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 63, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 327085}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 63, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 327085}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 63, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 327085}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "31"], "n_allocations": 63, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:31", "thread_id": "0x1", "value": 327085}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py", "185"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py:185", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 2732}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 2732}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 2732}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collation.py", "77"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collation.py:77", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collation.py", "23"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collation.py:23", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collation.py", "64"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collation.py:64", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collation.py", "45"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collation.py:45", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collation.py", "93"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collation.py:93", "thread_id": "0x1", "value": 4236}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 8, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 8556}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 8, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 8556}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 9, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 11288}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 9, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 11288}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 9, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 11288}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py", "19"], "n_allocations": 10, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py:19", "thread_id": "0x1", "value": 11864}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py", "213"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py:213", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py", "24"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py:24", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py", "222"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/aggregation.py:222", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 15, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 16184}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 15, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 16184}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 15, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 16184}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 15, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 16184}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 15, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 16184}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "27"], "n_allocations": 15, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:27", "thread_id": "0x1", "value": 16184}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/results.py", "162"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/results.py:162", "thread_id": "0x1", "value": 1592}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/results.py", "140"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/results.py:140", "thread_id": "0x1", "value": 1016}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/results.py", "94"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/results.py:94", "thread_id": "0x1", "value": 1592}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/results.py", "20"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/results.py:20", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/results.py", "58"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/results.py:58", "thread_id": "0x1", "value": 1592}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/results.py", "73"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/results.py:73", "thread_id": "0x1", "value": 1016}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 9, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 7784}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 9, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 7784}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 262771}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 262771}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 262771}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 11, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 270555}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 11, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 270555}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 11, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 270555}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "48"], "n_allocations": 11, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:48", "thread_id": "0x1", "value": 270555}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "56"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:56", "thread_id": "0x1", "value": 1632}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "394"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:394", "thread_id": "0x1", "value": 976}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "343"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:343", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "24"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:24", "thread_id": "0x1", "value": 1552}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "235"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:235", "thread_id": "0x1", "value": 2864}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "160"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:160", "thread_id": "0x1", "value": 1712}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "292"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:292", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/operations.py", "108"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/operations.py:108", "thread_id": "0x1", "value": 1632}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 14, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 12240}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 14, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 12240}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 6, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 8747}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 6, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 8747}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 8747}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 20, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 20987}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 20, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 20987}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 20, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 20987}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "46"], "n_allocations": 20, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:46", "thread_id": "0x1", "value": 20987}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/command_cursor.py", "304"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/command_cursor.py:304", "thread_id": "0x1", "value": 2048}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/command_cursor.py", "27"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/command_cursor.py:27", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 4, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 4096}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 4096}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 1324}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 1324}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 1324}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 6, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 5420}, {"children": [{"children": [], "interesting": true, "location": ["__enter__", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "316"], "n_allocations": 1, "name": "__enter__ at \u003cfrozen importlib._bootstrap\u003e:316", "thread_id": "0x1", "value": 73752}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "671"], "n_allocations": 1, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:671", "thread_id": "0x1", "value": 73752}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 7, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 79172}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 7, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 79172}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py", "27"], "n_allocations": 7, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py:27", "thread_id": "0x1", "value": 79172}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py", "382"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py:382", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py", "418"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py:418", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py", "57"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py:57", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py", "400"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py:400", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py", "62"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/change_stream.py:62", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 13, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 85140}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 13, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 85140}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 2, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 3093}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 2, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 3093}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 2, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 3093}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 15, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 88233}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 15, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 88233}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 15, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 88233}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "32"], "n_allocations": 15, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:32", "thread_id": "0x1", "value": 88233}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "66"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:66", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "47"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:47", "thread_id": "0x1", "value": 2208}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/collection.py", "80"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/collection.py:80", "thread_id": "0x1", "value": 3144}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 336, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 1719464}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 336, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 1719464}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 41, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 87656}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 41, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 87656}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 41, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 87656}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 377, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 1807120}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 377, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 1807120}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["_fill_cache", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1416"], "n_allocations": 1, "name": "_fill_cache at \u003cfrozen importlib._bootstrap_external\u003e:1416", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["find_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1368"], "n_allocations": 1, "name": "find_spec at \u003cfrozen importlib._bootstrap_external\u003e:1368", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_get_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1252"], "n_allocations": 1, "name": "_get_spec at \u003cfrozen importlib._bootstrap_external\u003e:1252", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["find_spec", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "1280"], "n_allocations": 1, "name": "find_spec at \u003cfrozen importlib._bootstrap_external\u003e:1280", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_find_spec", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "906"], "n_allocations": 1, "name": "_find_spec at \u003cfrozen importlib._bootstrap\u003e:906", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "963"], "n_allocations": 1, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:963", "thread_id": "0x1", "value": 2048}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 378, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 1809168}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/__init__.py", "114"], "n_allocations": 378, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/__init__.py:114", "thread_id": "0x1", "value": 1809168}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/mongo_replica_set_client.py", "22"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/mongo_replica_set_client.py:22", "thread_id": "0x1", "value": 2319}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2319}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2319}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 1, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 855}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 1, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 855}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 1, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 855}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 4, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3174}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 4, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3174}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 4, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3174}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/pymongo/__init__.py", "118"], "n_allocations": 5, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/pymongo/__init__.py:118", "thread_id": "0x1", "value": 7806}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 537, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 537, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 537, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 537, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 537, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 537, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "953"], "n_allocations": 537, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:953", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 537, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2540488}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/json_util.py", "130"], "n_allocations": 537, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/json_util.py:130", "thread_id": "0x1", "value": 2540488}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/json_util.py", "181"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/json_util.py:181", "thread_id": "0x1", "value": 3144}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/json_util.py", "224"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/json_util.py:224", "thread_id": "0x1", "value": 3067}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/bson/json_util.py", "145"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/bson/json_util.py:145", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 542, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2547635}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 542, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2547635}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 7, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 10324}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 7, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 10324}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 7, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 10324}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 549, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2557959}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 549, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2557959}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 549, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2557959}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 549, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2557959}], "interesting": true, "location": ["_handle_fromlist", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "1035"], "n_allocations": 549, "name": "_handle_fromlist at \u003cfrozen importlib._bootstrap\u003e:1035", "thread_id": "0x1", "value": 2557959}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "93"], "n_allocations": 641, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:93", "thread_id": "0x1", "value": 3190815}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "83"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:83", "thread_id": "0x1", "value": 1112}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "587"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:587", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "739"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:739", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "116"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:116", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "172"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:172", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "212"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:212", "thread_id": "0x1", "value": 3155}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "774"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:774", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "723"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:723", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py", "653"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/mongodbio.py:653", "thread_id": "0x1", "value": 2049}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 653, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 3202747}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 653, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 3202747}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 8, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 8801}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 8, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 8801}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 8, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 8801}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 661, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 3211548}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 661, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 3211548}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 661, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 3211548}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/io/__init__.py", "27"], "n_allocations": 661, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/io/__init__.py:27", "thread_id": "0x1", "value": 3211548}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;genexpr\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "219"], "n_allocations": 1, "name": "\u003cgenexpr\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:219", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["_make_origin", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "219"], "n_allocations": 1, "name": "_make_origin at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:219", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["with_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "303"], "n_allocations": 1, "name": "with_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:303", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["annotate_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "863"], "n_allocations": 1, "name": "annotate_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:863", "thread_id": "0x1", "value": 262144}], "interesting": true, "location": ["Reify", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1054"], "n_allocations": 2, "name": "Reify at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1054", "thread_id": "0x1", "value": 263080}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "convert_to_beam_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_type", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "278"], "n_allocations": 1, "name": "convert_to_beam_type at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:278", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["with_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "856"], "n_allocations": 1, "name": "with_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:856", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["Reify", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1092"], "n_allocations": 1, "name": "Reify at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1092", "thread_id": "0x1", "value": 608}, {"children": [], "interesting": true, "location": ["Reify", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1080"], "n_allocations": 1, "name": "Reify at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1080", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["Reify", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1093"], "n_allocations": 1, "name": "Reify at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1093", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["Reify", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1066"], "n_allocations": 1, "name": "Reify at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1066", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1049"], "n_allocations": 7, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1049", "thread_id": "0x1", "value": 267432}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "516"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:516", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/sharded_key_type.py", "37"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/sharded_key_type.py:37", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/sharded_key_type.py", "33"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/sharded_key_type.py:33", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 3, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 3, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 3, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 3, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 3, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 2088}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "68"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:68", "thread_id": "0x1", "value": 2088}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "653"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:653", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1062"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1062", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "701"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:701", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1309"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1309", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "95"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:95", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1201"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1201", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "138"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:138", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "147"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:147", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "524"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:524", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "857"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:857", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1522"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1522", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "472"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:472", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "86"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:86", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["__setattr__", "/databricks/python3/lib/python3.7/enum.py", "387"], "n_allocations": 1, "name": "__setattr__ at /databricks/python3/lib/python3.7/enum.py:387", "thread_id": "0x1", "value": 576}], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/enum.py", "267"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/enum.py:267", "thread_id": "0x1", "value": 576}, {"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/enum.py", "170"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/enum.py:170", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__setitem__", "/databricks/python3/lib/python3.7/enum.py", "110"], "n_allocations": 1, "name": "__setitem__ at /databricks/python3/lib/python3.7/enum.py:110", "thread_id": "0x1", "value": 520}], "interesting": true, "location": ["DataLossReason", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "174"], "n_allocations": 1, "name": "DataLossReason at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:174", "thread_id": "0x1", "value": 520}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "161"], "n_allocations": 3, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:161", "thread_id": "0x1", "value": 2032}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "192"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:192", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "374"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:374", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "78"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:78", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1340"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1340", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1011"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1011", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "750"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:750", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "70"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:70", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "943"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:943", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "325"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:325", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "185"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:185", "thread_id": "0x1", "value": 2208}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "427"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:427", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "985"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:985", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "841"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:841", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1045"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1045", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1275"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1275", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 2, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 1512}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "646"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:646", "thread_id": "0x1", "value": 1512}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "104"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:104", "thread_id": "0x1", "value": 936}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "849"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:849", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "960"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:960", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py", "1242"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/trigger.py:1242", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 51, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 42472}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 51, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 42472}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 4, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 264420}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 4, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 264420}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 4, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 264420}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 55, "name": "_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:677", "thread_id": "0x1", "value": 306892}], "interesting": true, "location": ["_find_and_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "967"], "n_allocations": 55, "name": "_find_and_load_unlocked at \u003cfrozen importlib._bootstrap\u003e:967", "thread_id": "0x1", "value": 306892}], "interesting": true, "location": ["_find_and_load", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "983"], "n_allocations": 55, "name": "_find_and_load at \u003cfrozen importlib._bootstrap\u003e:983", "thread_id": "0x1", "value": 306892}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "58"], "n_allocations": 56, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:58", "thread_id": "0x1", "value": 309100}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "convert_to_beam_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_type", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "278"], "n_allocations": 1, "name": "convert_to_beam_type at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:278", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "convert_to_beam_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_type", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "278"], "n_allocations": 1, "name": "convert_to_beam_type at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:278", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["with_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "856"], "n_allocations": 1, "name": "with_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:856", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "804"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:804", "thread_id": "0x1", "value": 608}, {"children": [{"children": [], "interesting": true, "location": ["GroupIntoBatches", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "861"], "n_allocations": 1, "name": "GroupIntoBatches at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:861", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "805"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:805", "thread_id": "0x1", "value": 1872}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["updatecache", "/databricks/python3/lib/python3.7/linecache.py", "137"], "n_allocations": 1, "name": "updatecache at /databricks/python3/lib/python3.7/linecache.py:137", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["getlines", "/databricks/python3/lib/python3.7/linecache.py", "47"], "n_allocations": 1, "name": "getlines at /databricks/python3/lib/python3.7/linecache.py:47", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["getline", "/databricks/python3/lib/python3.7/linecache.py", "16"], "n_allocations": 1, "name": "getline at /databricks/python3/lib/python3.7/linecache.py:16", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["line", "/usr/lib/python3.7/traceback.py", "285"], "n_allocations": 1, "name": " self._line = linecache.getline(self.filename, self.lineno).strip()\n", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["extract", "/usr/lib/python3.7/traceback.py", "363"], "n_allocations": 1, "name": " f.line\n", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["extract_stack", "/usr/lib/python3.7/traceback.py", "211"], "n_allocations": 1, "name": " stack = StackSummary.extract(walk_stack(f), limit=limit)\n", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["format_stack", "/usr/lib/python3.7/traceback.py", "197"], "n_allocations": 1, "name": " return format_list(extract_stack(f, limit=limit))\n", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["_make_origin", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "215"], "n_allocations": 1, "name": "_make_origin at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:215", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["with_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "303"], "n_allocations": 1, "name": "with_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:303", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["annotate_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "863"], "n_allocations": 1, "name": "annotate_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:863", "thread_id": "0x1", "value": 10848}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "226"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:226", "thread_id": "0x1", "value": 10848}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "99"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:99", "thread_id": "0x1", "value": 2746}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "918"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:918", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "560"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:560", "thread_id": "0x1", "value": 2367}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "268"], "n_allocations": 2, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:268", "thread_id": "0x1", "value": 1512}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "490"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:490", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "190"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:190", "thread_id": "0x1", "value": 936}, {"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "convert_to_beam_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_type", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "278"], "n_allocations": 1, "name": "convert_to_beam_type at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:278", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 2, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["convert_to_beam_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 2, "name": "convert_to_beam_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["convert_to_beam_type", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "278"], "n_allocations": 2, "name": "convert_to_beam_type at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:278", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 2, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["convert_to_beam_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 2, "name": "convert_to_beam_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["convert_to_beam_type", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "278"], "n_allocations": 2, "name": "convert_to_beam_type at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:278", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["with_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "856"], "n_allocations": 2, "name": "with_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:856", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["Regex", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1219"], "n_allocations": 2, "name": "Regex at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1219", "thread_id": "0x1", "value": 1216}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1107"], "n_allocations": 4, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1107", "thread_id": "0x1", "value": 2728}, {"children": [{"children": [{"children": [{"children": [{"children": [], "interesting": true, "location": ["\u0026lt;listcomp\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "\u003clistcomp\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "303"], "n_allocations": 1, "name": "convert_to_beam_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:303", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["convert_to_beam_type", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py", "278"], "n_allocations": 1, "name": "convert_to_beam_type at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/native_type_compatibility.py:278", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["with_output_types", "/databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py", "856"], "n_allocations": 1, "name": "with_output_types at /databricks/python3/lib/python3.7/site-packages/apache_beam/typehints/decorators.py:856", "thread_id": "0x1", "value": 608}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "652"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:652", "thread_id": "0x1", "value": 608}, {"children": [{"children": [], "interesting": true, "location": ["__new__", "/databricks/python3/lib/python3.7/abc.py", "126"], "n_allocations": 1, "name": "__new__ at /databricks/python3/lib/python3.7/abc.py:126", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "620"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:620", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "715"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:715", "thread_id": "0x1", "value": 936}, {"children": [], "interesting": true, "location": ["\u0026lt;module\u0026gt;", "/databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py", "1018"], "n_allocations": 1, "name": "\u003cmodule\u003e at /databricks/python3/lib/python3.7/site-packages/apache_beam/transforms/util.py:1018", "thread_id": "0x1", "value": 936}], "interesting": true, "location": ["_call_with_frames_removed", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "219"], "n_allocations": 90, "name": "_call_with_frames_removed at \u003cfrozen importlib._bootstrap\u003e:219", "thread_id": "0x1", "value": 609973}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "728"], "n_allocations": 90, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:728", "thread_id": "0x1", "value": 609973}, {"children": [{"children": [{"children": [], "interesting": true, "location": ["_compile_bytecode", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "525"], "n_allocations": 6, "name": "_compile_bytecode at \u003cfrozen importlib._bootstrap_external\u003e:525", "thread_id": "0x1", "value": 267196}], "interesting": true, "location": ["get_code", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "857"], "n_allocations": 6, "name": "get_code at \u003cfrozen importlib._bootstrap_external\u003e:857", "thread_id": "0x1", "value": 267196}], "interesting": true, "location": ["exec_module", "\u0026lt;frozen importlib._bootstrap_external\u0026gt;", "724"], "n_allocations": 6, "name": "exec_module at \u003cfrozen importlib._bootstrap_external\u003e:724", "thread_id": "0x1", "value": 267196}], "interesting": true, "location": ["_load_unlocked", "\u0026lt;frozen importlib._bootstrap\u0026gt;", "677"], "n_allocations": 96, "name": "_load_unlocked at \u003cfrozen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment