-
-
Notifications
You must be signed in to change notification settings - Fork 35k
gh-154194: Degrade frames in Tachyon instead of failing the sample #154195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
8aaf6f0
f45ef66
ad797d5
3e58d13
55632e9
6736133
17b4197
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -27,6 +27,10 @@ def __init__( | |||||||||
| # ─── indexing helpers ─────────────────────────────────────────── | ||||||||||
| def _format_stack_entry(elem: str|FrameInfo) -> str: | ||||||||||
| if not isinstance(elem, str): | ||||||||||
| if elem.location is None: | ||||||||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Regular collectors rely on these helpers: cpython/Lib/profiling/sampling/collector.py Lines 46 to 47 in 40f7fbf
cpython/Lib/profiling/sampling/collector.py Lines 29 to 30 in 40f7fbf
|
||||||||||
| if elem.filename in ("", "~"): | ||||||||||
| return f"{elem.funcname}" | ||||||||||
| return f"{elem.funcname} {elem.filename}" | ||||||||||
| if elem.location.lineno == 0 and elem.filename == "": | ||||||||||
| return f"{elem.funcname}" | ||||||||||
| else: | ||||||||||
|
|
@@ -190,8 +194,7 @@ def build_task_table(result): | |||||||||
| # Build coroutine stack string | ||||||||||
| frames = [frame for coro in task_info.coroutine_stack | ||||||||||
| for frame in coro.call_stack] | ||||||||||
| coro_stack = " -> ".join(_format_stack_entry(x).split(" ")[0] | ||||||||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This does not work for the |
||||||||||
| for x in frames) | ||||||||||
| coro_stack = " -> ".join(x.funcname for x in frames) | ||||||||||
|
|
||||||||||
| # Handle tasks with no awaiters | ||||||||||
| if not task_info.awaited_by: | ||||||||||
|
|
@@ -202,8 +205,7 @@ def build_task_table(result): | |||||||||
| # Handle tasks with awaiters | ||||||||||
| for coro_info in task_info.awaited_by: | ||||||||||
| parent_id = coro_info.task_name | ||||||||||
| awaiter_frames = [_format_stack_entry(x).split(" ")[0] | ||||||||||
| for x in coro_info.call_stack] | ||||||||||
| awaiter_frames = [x.funcname for x in coro_info.call_stack] | ||||||||||
| awaiter_chain = " -> ".join(awaiter_frames) | ||||||||||
| awaiter_name = id2name.get(parent_id, "Unknown") | ||||||||||
| parent_id_str = (hex(parent_id) if isinstance(parent_id, int) | ||||||||||
|
|
||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -628,6 +628,26 @@ def test_same_line_different_columns(self): | |
| collector, count = self.roundtrip(samples) | ||
| self.assertEqual(count, 3) | ||
|
|
||
| def test_synthetic_frames_roundtrip(self): | ||
| """Degraded/sentinel frames (location=None) survive the binary format.""" | ||
| frames = [ | ||
| FrameInfo(("~", None, name, None)) | ||
| for name in ( | ||
| "<GC>", | ||
| "<native>", | ||
| "<unknown function>", | ||
| "<unknown file>", | ||
| "<unreadable frame>", | ||
|
Comment on lines
+636
to
+640
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perhaps we could add something like |
||
| ) | ||
| ] | ||
| frames.append(FrameInfo(("app.py", None, "<unknown function>", None))) | ||
| frames.append(FrameInfo(("<unknown file>", None, "real_func", None))) | ||
| samples = [[make_interpreter(0, [make_thread(1, frames)])]] | ||
|
|
||
| collector, count = self.roundtrip(samples) | ||
| self.assertEqual(count, 1) | ||
| self.assert_samples_equal(samples, collector) | ||
|
|
||
|
|
||
| class TestBinaryEdgeCases(BinaryFormatTestBase): | ||
| """Tests for edge cases in binary format.""" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| Fix the sampling profiler dropping entire samples when a non-fatal read fails; | ||
| frames now keep any readable metadata, and long funcnames, filenames and | ||
| asyncio task names are truncated instead. Patch by Maurycy Pawłowski-Wieroński. |
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that
isinstance(elem, str)is dead since #135436. Perhaps we should clean this defensive code everywhere.