Skip to content

[OTel C++] Fix race when adding and removing callbacks (#37485)#37508

Merged
yashykt merged 1 commit intogrpc:v1.66.xfrom
yashykt:Backport37485To166
Aug 16, 2024
Merged

[OTel C++] Fix race when adding and removing callbacks (#37485)#37508
yashykt merged 1 commit intogrpc:v1.66.xfrom
yashykt:Backport37485To166

Conversation

@yashykt
Copy link
Copy Markdown
Member

@yashykt yashykt commented Aug 16, 2024

Backport #37485 to v1.66
Split off from #37425

We are adding and removing callbacks on the OpenTelemetry Async Instruments without synchronization. This opens us to races where we have an AddCallback and RemoveCallback operation happening at the same time. The correct result after these operations is to still have a callback registered with OpenTelemetry at the end, but the two operations could race and we could just decide to remove the OpenTelemetry callback.

The fix delays removing OpenTelemetry callbacks to plugin destruction time.

Split off from grpc#37425

We are adding and removing callbacks on the OpenTelemetry Async Instruments without synchronization. This opens us to races where we have an AddCallback and RemoveCallback operation happening at the same time. The correct result after these operations is to still have a callback registered with OpenTelemetry at the end, but the two operations could race and we could just decide to remove the OpenTelemetry callback.

The fix delays removing OpenTelemetry callbacks to plugin destruction time.

Closes grpc#37485

COPYBARA_INTEGRATE_REVIEW=grpc#37485 from yashykt:FixRaceOTelGauge 016b0a4
PiperOrigin-RevId: 663492598
@yashykt yashykt added release notes: yes Indicates if PR needs to be in release notes lang/c++ labels Aug 16, 2024
@yashykt yashykt requested review from drfloob and yijiem August 16, 2024 00:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants