Stop byteslicing empty strings in breadcrumbs#2574
Merged
solnic merged 1 commit intogetsentry:masterfrom Mar 10, 2025
Merged
Conversation
a67564c to
f1a4da4
Compare
solnic
approved these changes
Mar 10, 2025
If we don't pass a message to the breadcrumb message, we default to an
empty string. However we can avoid byteslicing it, which allocates a new
empty string every time regardless.
```rb
require 'benchmark-memory'
MAX_MESSAGE_SIZE_IN_BYTES = 1024 * 8
def current(message)
(message || "").byteslice(0..MAX_MESSAGE_SIZE_IN_BYTES)
end
def updated(message)
message ? message.byteslice(0..MAX_MESSAGE_SIZE_IN_BYTES) : ""
end
Benchmark.memory do |x|
x.report("current") do
current(nil)
end
x.report("updated") do
updated(nil)
end
x.compare!
end
```
Calculating -------------------------------------
current 80.000 memsize ( 0.000 retained)
2.000 objects ( 0.000 retained)
1.000 strings ( 0.000 retained)
updated 0.000 memsize ( 0.000 retained)
0.000 objects ( 0.000 retained)
0.000 strings ( 0.000 retained)
Comparison:
updated: 0 allocated
current: 80 allocated - Infx more
f1a4da4 to
23eeaba
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2574 +/- ##
==========================================
+ Coverage 64.11% 64.52% +0.40%
==========================================
Files 123 123
Lines 4724 4679 -45
==========================================
- Hits 3029 3019 -10
+ Misses 1695 1660 -35
🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Please keep these instructions in mind so we can review it more efficiently:
Other Notes
Description
Describe your changes:
If we don't pass a message to the breadcrumb message, we default to an empty string. However we can avoid byteslicing it, which allocates a new empty string every time regardless.
This is a pretty hot path, and the tests pass. Only difference I can think of is returning a frozen empty string, which could cause issues downstream. Let me know if it should be dup-ed!
Calculating -------------------------------------
current 80.000 memsize ( 0.000 retained)
2.000 objects ( 0.000 retained)
1.000 strings ( 0.000 retained)
updated 0.000 memsize ( 0.000 retained)
0.000 objects ( 0.000 retained)
0.000 strings ( 0.000 retained)
Comparison:
updated: 0 allocated
current: 80 allocated - Infx more