How to delete graph from vineyard #1317
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
The https://github.com/alibaba/GraphScope/blob/main/python/graphscope/framework/graph.py#L605 |
Beta Was this translation helpful? Give feedback.
-
Not reproducible.
import graphscope
from graphscope.dataset import load_ogbn_mag
g = load_ogbn_mag()
import vineyard
vineyard_client = vineyard.connect(g.session.info['engine_config']['vineyard_socket'])
vineyard_client.status Note the
g.unload()
vineyard_client.status The |
Beta Was this translation helpful? Give feedback.
Not reproducible.
free -g
cannot always reflect the actual memory usage of programs, due to the complexity of modern operating system and memory allocator. Instead, you could monitor the shared memory usage of vineyard and how the usage changes before and afterg.unload
as follows,