-
Notifications
You must be signed in to change notification settings - Fork 329
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
About GraphEngine Data Loading #293
Comments
@simple221 The GE is an In-Memory Graph Engine so if you want to load 600GB resident in RAM you will ultimately need available memory to load your data. The GE is a distributed memory cloud so you can load the data across what it "AvailabilityGroup" facility. Here is an excerpt from the GE Developer's Guide: https://github.com/Microsoft/GraphEngine/wiki/config-v2 The GE also allows you to configure "Storage" nodes; you are going to want to experience with "TrunkCount" and "StorageCapacity" attributes. |
|
@simple221 Yes, if you need to run "stand-alone" on a single machine then and need to have all 600 GB loaded on then you would need to have available RAM on it. Unlike a lot of other Graph Engines that GE is an in-memory cloud; it does have a persistent storage capability so you can write to disk what you load into RAM so as to save it. |
@TaviTruman thank you.I see now. |
@simple221 if you're good with the explanation here you can close this issue. |
I need to store 600G of data, but only 32G of computer memory, the program will prompt memory overflow, how to solve, what solutions?
The text was updated successfully, but these errors were encountered: