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
Describe the solution you'd like and any additional context
When we add data to Property graph via add_vertex_data and add_edge_data we store the vertex_columns along with the internal _SRC_ and _DST_ . We should drop those to save on memory.
Closesrapidsai#2400
I still need to update MG tests.
I'll also remove the in-code assertions, since they won't always be True,
because a column name could have previously been used as a property.
Nevertheless, seeing these assertions pass should give us warm-fuzzies :)
Describe the solution you'd like and any additional context
When we add data to Property graph via
add_vertex_data
andadd_edge_data
we store thevertex_columns
along with the internal_SRC_
and_DST_
. We should drop those to save on memory.In this example the
input_src
andinput_dst
is redundant and we can save30%
of memory by dropping them.The text was updated successfully, but these errors were encountered: