florijan
|
880a563cf3
|
Generate snapshot added
Summary:
A cool new graph generator. It's really cool!
It is currently being used for generating the Ravelin graph with the following config:
```
{
"indexes": ["Node.id"],
"nodes": [
{
"count": 40000000,
"labels": ["Node"],
"properties": {
"id" : {"type": "counter", "param" : "Node.id"},
"fradulent" : {"type" : "bernoulli", "param" : 0.0005}
}
}
],
"edges": [
{
"count": 80000000,
"from": "Node",
"to": "Node",
"type": "Edge"
}
]
}
```
Reviewers: buda, mislav.bradac
Reviewed By: mislav.bradac
Subscribers: pullbot
Differential Revision: https://phabricator.memgraph.io/D872
|
2017-10-06 15:53:02 +02:00 |
|