mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[GH-ISSUE #1383] Error types are enormous #659
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#659
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @saethlin on GitHub (Feb 23, 2021).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/1383
I'm opening this mostly as a record that I've noticed this and it's not great. Please rename this if y'all have a better description.
I've now come across this in two places:
Many chains of
movapsin theNameparsing code, because every function returns aResultwhere theOkpayload is tiny but theErrpayload is huge, so every fallible function call relocates a bunch of dead data around. KnockingProtoErrordown to 8 bytes is significant enough to be visible in a flamegraph.In an internal codebase, we have a
ResolveErrorKindin a struct which totals 144 bytes, 80 of which are theResolveErrorKind. This is large enough that LLVM emits amemcpyto move this struct. I suspect this happens at some point in this project as well.In case 1 for the moment I boxed the internals of
ProtoError. That's a nifty optimization if creating errors truly is a cold path (it is in my current use case), but if errors are at some point used to indicate a condition that's close to common, it could be quite bad indeed.@bluejekyll commented on GitHub (Feb 23, 2021):
I'm definitely open to reducing the size of the error types, I'm guessing a quick win would be to eliminate some of the wrapped types from dependencies, that are probably not relevant to down stream use cases.
@trinity-1686a commented on GitHub (May 6, 2021):
Wrapped types from dependencies might not be the culprits, with no features enabled,
trust_dns_resolver::error::ResolveErrorKindappears to be 296 bytes (main, default features), removingResolveErrorKind::NoRecordsFoundmake it 32 bytes.NoRecordsFoundcontains aQuery(96 bytes) and anOption<SOA>(184 bytes). Having aBox<Query>and aOption<Box<SOA>>instead would make the enum 32 bytes again, at the cost of one to two allocations@djc commented on GitHub (May 6, 2021):
Nice, that sounds like an obvious win!
@qm3ster commented on GitHub (Nov 29, 2021):
Why not a
Box<(Query, Option<SOA>)>👀