-
Notifications
You must be signed in to change notification settings - Fork 417
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
Hitting issue of large alloc which crashes application #3090
Labels
bug
Something isn't working
Comments
github-actions
bot
added
the
needs-triage
Indicates an issue or PR lacks a `triage/foo` label and requires one.
label
Oct 10, 2024
Adding some more info about the code
|
Do you use cmake and how do you import otel-cpp. |
CMake to build otel:
Import:
|
I just resolved this by turn both STL and Abseil OFF, I though I need to choose one from them, turns out that build without neither of them bypass this issue. |
marcalff
removed
the
needs-triage
Indicates an issue or PR lacks a `triage/foo` label and requires one.
label
Oct 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recently bumped up our OTEL CPP client version to
1.16.1
and also useSTL
instead ofABSEIL
, but hit into this issue at run time:The line of code hitting this issue is
tracer_ = trace::Provider::GetTracerProvider()->GetTracer("otel", "1.16.1");
If I change back to use abseil then I don't see this issue, but I have some other problem of using abseil and need to get rid of it.
The text was updated successfully, but these errors were encountered: