Skip to content

Commit 6394d2b

Browse files
gruebelemdnetolzchen
authored
improve baggage performance (#4466)
* improve baggage performance * add changelog entry --------- Co-authored-by: Emídio Neto <[email protected]> Co-authored-by: Leighton Chen <[email protected]>
1 parent fcb5e21 commit 6394d2b

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4141
([#4458](https://github.com/open-telemetry/opentelemetry-python/pull/4458))
4242
- pylint-ci updated python version to 3.13
4343
([#4450](https://github.com/open-telemetry/opentelemetry-python/pull/4450))
44+
- Improve performance of baggage operations
45+
([#4466](https://github.com/open-telemetry/opentelemetry-python/pull/4466))
4446

4547
## Version 1.30.0/0.51b0 (2025-02-03)
4648

opentelemetry-api/src/opentelemetry/baggage/__init__.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from logging import getLogger
1616
from re import compile
1717
from types import MappingProxyType
18-
from typing import Mapping, Optional
18+
from typing import Dict, Mapping, Optional
1919

2020
from opentelemetry.context import create_key, get_value, set_value
2121
from opentelemetry.context.context import Context
@@ -44,10 +44,7 @@ def get_all(
4444
Returns:
4545
The name/value pairs in the Baggage
4646
"""
47-
baggage = get_value(_BAGGAGE_KEY, context=context)
48-
if isinstance(baggage, dict):
49-
return MappingProxyType(baggage)
50-
return MappingProxyType({})
47+
return MappingProxyType(_get_baggage_value(context=context))
5148

5249

5350
def get_baggage(
@@ -64,7 +61,7 @@ def get_baggage(
6461
The value associated with the given name, or null if the given name is
6562
not present.
6663
"""
67-
return get_all(context=context).get(name)
64+
return _get_baggage_value(context=context).get(name)
6865

6966

7067
def set_baggage(
@@ -80,7 +77,7 @@ def set_baggage(
8077
Returns:
8178
A Context with the value updated
8279
"""
83-
baggage = dict(get_all(context=context))
80+
baggage = _get_baggage_value(context=context).copy()
8481
baggage[name] = value
8582
return set_value(_BAGGAGE_KEY, baggage, context=context)
8683

@@ -95,7 +92,7 @@ def remove_baggage(name: str, context: Optional[Context] = None) -> Context:
9592
Returns:
9693
A Context with the name/value removed
9794
"""
98-
baggage = dict(get_all(context=context))
95+
baggage = _get_baggage_value(context=context).copy()
9996
baggage.pop(name, None)
10097

10198
return set_value(_BAGGAGE_KEY, baggage, context=context)
@@ -113,6 +110,13 @@ def clear(context: Optional[Context] = None) -> Context:
113110
return set_value(_BAGGAGE_KEY, {}, context=context)
114111

115112

113+
def _get_baggage_value(context: Optional[Context] = None) -> Dict[str, object]:
114+
baggage = get_value(_BAGGAGE_KEY, context=context)
115+
if isinstance(baggage, dict):
116+
return baggage
117+
return {}
118+
119+
116120
def _is_valid_key(name: str) -> bool:
117121
return _KEY_PATTERN.fullmatch(str(name)) is not None
118122

0 commit comments

Comments
 (0)