グラフに次のものがあるとします。
100 Million nodes, More than 1 Billion connections/relationships
Node properties: around 10 properties, mix of int, doubles, strings, HashMaps etc.
Relationship properties: around 10 double values and 2-3 string (with avg 50 chars) values
ここで、各ノードのネイバーを 1 回クエリすることによって、すべてのノードとリレーションシップ プロパティの値を更新するとします。つまり、次のように言います。
step1: search a node, say X, with given Id,
step2: get it's neighbours,
step3: update node properties of X and all relationship properties between X and it's neighbors.
これらの 3 つの手順をすべてのノードに対して 1 回繰り返します。次のシステム構成が与えられた場合、すべてのノードの 1 回の更新にかかる時間 (おおよその時間は問題ありません。秒 / 分 / 時間である可能性があります)。
Two dual core processors, 3.0 GHz each, 4*4 GB memory, 250 GB Hard disk space.
上記のデータには、およそどれくらいのストレージ容量が必要ですか?
おおよそのサンプル パフォーマンス (時間とストレージ) 分析を提供してください。サンプルのパフォーマンス分析は、要件を視覚化するのに役立ちます。ありがとう。