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

Crash inside ForceGraph2d component #540

Open
Ars25Terra opened this issue Sep 23, 2024 · 10 comments
Open

Crash inside ForceGraph2d component #540

Ars25Terra opened this issue Sep 23, 2024 · 10 comments

Comments

@Ars25Terra
Copy link

Ars25Terra commented Sep 23, 2024

Hello, maybe you can help me.

I'm using ForceGraph2d with react.

It works fine, but occasionally (the case is not clear), when dragging nodes it crashes with following error:

TypeError: r is null
_iterableToArray3 canvas-color-tracker.mjs:26
_toConsumableArray3 canvas-color-tracker.mjs:32
lookup canvas-color-tracker.mjs:97
hexIndex force-graph.mjs:1049
hexIndex force-graph.mjs:1047
onChange8 force-graph.mjs:1041
getSetProp kapsule.mjs:170
_call react-kapsule.mjs:125
index react-kapsule.mjs:134
index react-kapsule.mjs:133
React 12
workLoop scheduler.development.js:266
flushWork scheduler.development.js:239
performWorkUntilDeadline scheduler.development.js:533

Are there any advice or workarounds for this?
@vasturiano
Copy link
Owner

@Ars25Terra thanks for reaching out. It's not so easy to figure this out without a means to reproduce it. Was this happening in your app only? Are you able to make a simplified example on https://codesandbox.io/ which can reproduce this issue?

@RomanKornev
Copy link

RomanKornev commented Sep 23, 2024

@Ars25Terra @vasturiano
I can replicate it pretty consistently in my local app (vite+react). It's a static graph with a search bar that's filtering the data. As I type, the graph is filtered and rerendered.

Some of the things I noticed:

  • It only happens in dev mode. When running in production mode I was not able to replicate the issue at all.
  • It only happens for large graphs, starting from 500+ nodes. If I increase the number of nodes, the probability of getting this crash increases.

I've managed to catch it when debugging and the __indexColor property is indeed null:
https://github.com/vasturiano/force-graph/blob/34648d0464c84b1f22195513cb09fa9b3e6c5c4f/src/force-graph.js#L134-L138
If I modify the check above to

if (!d.hasOwnProperty('__indexColor') || d.__indexColor === null) return true;

then the problem disappears, but I am unsure of the implications of this change.

My guess would be that there is some race condition which is only visible when the CPU is choking when trying to process the data. But why does that never happen in production mode is a mystery to me.

@Ars25Terra
Copy link
Author

@vasturiano, exactly what @RomanKornev mentions, but somehow I get __indexColor null also in production

@Ars25Terra
Copy link
Author

@vasturiano unfortunately it's not easy to provide example on https://codesandbox.io/, but I did a deep research and found out the following.

__indexColor in force-graph becomes null, when registry in canvas-color-tracker is full. As far as I understood this happens on big graphs, as "register" function in canvas-color-tracker constantly pushes new objects with new indexColors and finally registry is filled. When registry is full it returns null for indexColor.

@vasturiano
Copy link
Owner

@Ars25Terra @RomanKornev thanks for your effort in figuring this out. The issue was indeed the mishandling of the color tracker registry getting full, leading to a null pointer exception.

I've just fixed this issue, in a manner similar to that suggested by @RomanKornev. If you upgrade your dependency tree, to get at least v1.44 of force-graph, you shouldn't experience the issue any longer. Please let me know if this solves it for you.

@Ars25Terra
Copy link
Author

Dear @vasturiano, thank you a lot for the fix. Just one request, can you please update react-force-graph with new force-graph (1.44) dependency?

@vasturiano
Copy link
Owner

@Ars25Terra there's nothing really to upgrade in react-force-graph. This package has already the broad dependency match of "force-graph": "1".

https://github.com/vasturiano/react-force-graph/blob/ca22c59e62b8c715c4c273e405bf95b1b4ef08fc/package.json#L53C5-L53C24

So it should automatically pick up the new version of force-graph when your dependency tree is upgraded.

@RomanKornev
Copy link

I can confirm the issue is fixed. Thanks a lot for taking a look!

I assume this also fixes #512

@vasturiano
Copy link
Owner

I can confirm the issue is fixed. Thanks a lot for taking a look!

I assume this also fixes #512

Glad we figured out this one. And yeah, that issue looks the same, so it's probably fixed too.

@hyeonbeomsong
Copy link

When the graph data changes periodically while using react-force-graph-2d v1.25.2, an error such as #512 occurred.

I found it while I was checking the issues, so I found a graph library
I changed it to react-force-graph v1.45.4 and the error disappeared.

Thank you for finding this solution.

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

4 participants