-
Notifications
You must be signed in to change notification settings - Fork 306
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
dd-trace causes crash in v8 internals, SIGABRT #1229
Comments
I wasn't able to reproduce the issue with a simple app, so a few follow up question:
|
Just tried with a brand new Meteor app and I still can't replicate the issue. |
This is currently happening on all of our eng team's laptops running OS X.
It never happens right away, only after clicking around through our application a little bit.
So far we have only replicated using our meteor application.
The crash happens on meteor 2.0 === node 12.20.1, regardless of which dd-trace version is used (only tried with 0.30.5 and 0.29.1) The crash does not happen on meteor 1.11.1 === node 12.18.4, with dd-trace 0.29.1 - I have yet to test with only upgrading dd-trace to 0.35.5
I have not tried yet.
We upgraded from node 12.18.4
I'll try my best to get around to this, but it will be tough for us. The most tempting route at this point is to hold off on upgrading meteor/node (which sucks) so we can focus on stuff that's more core to our business. |
The error seems to come from a C++ check in |
My understanding is that the versions are tightly coupled. I'll check whether this is possible, but my understanding is that it is not.
I don't believe there are any versions of meteor that use node 14. Meteor 2.0 is the latest release, which uses node 12 |
I have the same issue, had to DD_TRACE_ENABLED: 0, it's not meteor 2.0, downgrading does not help |
Hi @pozylon! We believe the issue is caused by using AsyncLocalStorage to track async context. This might be a bug upstream in Node.js, or in Meteor, or in the Datadog code, but @doronrk has confirmed that initializing with the If either of you can help us reproduce this, it would be super helpful for tracking down the bug so it can be fully fixed. |
The issue should be fixed in 0.30.6. However, as mentioned above, the fix was to stop using |
I'm actually going to go ahead and re-open this, since the underlying issue is not resolved. |
@bengl Given the recent development that the issue is actually with Meteor and can only be fixed by them, should we close this issue since this is not something we can do something about? |
Yeah, let's close this since the issue is in how two libraries interoperate that are not within this repo, and the issue that was immediately presenting itself to @doronrk and others was fixed in a patch release. We won't be doing any further fixes in this project/repository with respect to fibers, and the situation is stagnant until Meteor moves off of fibers. We've also added to our official documentation regarding fibers. https://docs.datadoghq.com/tracing/setup_overview/compatibility_requirements/nodejs/#fibers We can reopen this if necessary. |
Describe the bug
After upgrading to node 12.20.1, we are getting the below crash on our localhost consistently.
DD_TRACE_ENABLED=false
resolves the issue, so it looks likedd-trace
is implicated.Environment
localhost development
OS X 10.15.7
12.20.1
0.30.5
N/A, running on my localhost
The text was updated successfully, but these errors were encountered: