You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this great project! I am running into out-of-memory errors when plotting complex plots via Altair, and I guess that should be fixable by bumping the heap limit of the v8 engine. Would it be sufficient to add something like this
Hi @nbars, thanks for the kind words! Making the v8 heap configurable would be great. I haven't looked into this, so you probably know more about this than I do right now. Do you want to try making a PR?
As an aside, if your charts include aggregations then it may help to enable the VegaFusion data transformer. When this is enabled, data transformations (like filtering and aggregation) will be applied in Python before the data is sent to the vl-convert. For charts without aggregations, it will also remove unused columns which can also reduce memory usage.
But even if this helps, it would still be great to have the v8 configuration option exposed.
Hi @jonmmease, thanks for the swift response. Using VegaFusion works like a charm! I am happy to make a PR. Is it possible to assign me to the issue so that it is added to my "GitHub todo list"?
Hey,
Thanks for this great project! I am running into out-of-memory errors when plotting complex plots via Altair, and I guess that should be fixable by bumping the heap limit of the v8 engine. Would it be sufficient to add something like this
here
vl-convert/vl-convert-rs/src/converter.rs
Lines 570 to 577 in e941288
Or is there a better place to start?
Best,
Nils
The text was updated successfully, but these errors were encountered: