Skip to content
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

Remove usage of addNonEnumerableProperty from span utils #15808

Open
AbhiPrasad opened this issue Mar 24, 2025 · 0 comments
Open

Remove usage of addNonEnumerableProperty from span utils #15808

AbhiPrasad opened this issue Mar 24, 2025 · 0 comments

Comments

@AbhiPrasad
Copy link
Member

AbhiPrasad commented Mar 24, 2025

Description

ref #15725 (comment)

addNonEnumerableProperty is pretty expensive because of Object.defineProperty, so this changes usage of span utils (which are called frequently) to avoid usage of addNonEnumerableProperty.

addNonEnumerableProperty is replaced with weak maps, which has the added benefit of being more GC friendly (addNonEnumerableProperty causes hard references to be created between the objects).

The only downside of switching to this approach is that we lose the try catch built into addNonEnumerableProperty, but I think thats fine given the nature of the changed methods.

This was originally done in #15765, but because tests were failing extracing this out to an issue.

@AbhiPrasad AbhiPrasad changed the title Remove usage of addNonEnumerableProperty from span utils Remove usage of addNonEnumerableProperty from span utils Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant