9
9
# ###########################################################
10
10
```
11
11
12
-
13
-
14
12
Hardware & Major environment requirements
15
13
================================
16
14
- Amazon EC2 machine r4.8xlarge
@@ -26,12 +24,6 @@ sudo apt-get install build-essential cmake python-pip python-dev
26
24
sudo pip install --upgrade pip
27
25
```
28
26
29
-
30
-
31
-
32
-
33
-
34
-
35
27
## Current use cases
36
28
This article documents the details on how to reproduce the graph database benchmark result on RedisGraph.
37
29
Currently, RedisGraph benchmark supports two use cases:
@@ -73,9 +65,24 @@ Sample output:
73
65
74
66
### Data insertion
75
67
68
+ ##### Graph500
76
69
``` bash
77
- nohup ./redisgraph_load_graph500.sh
78
- nohup ./redisgraph_load_twitter.sh
70
+ ./redisgraph_load_graph500.sh
71
+ ```
72
+
73
+ Sample output:
74
+ ``` bash
75
+
76
+ ```
77
+
78
+ ##### Twitter Benchmark
79
+ ``` bash
80
+ ./redisgraph_load_twitter.sh
81
+ ```
82
+
83
+ Sample output:
84
+ ``` bash
85
+
79
86
```
80
87
81
88
@@ -89,25 +96,25 @@ Results will be stored in "result_redisgraph" output directory.
89
96
90
97
``` bash
91
98
# 300 seeds, depth 1
92
- nohup python kn.py -g graph500 -s graph500-22-seed -c 300 -d 6 -p redisgraph -l graph500-22_unique_node -t 22 -i 1
99
+ nohup python kn.py -g graph500 -s graph500_22_seed -c 300 -d 6 -p redisgraph -l graph500_22_unique_node -t 22 -i 1
93
100
# 300 seeds, depth 2
94
- nohup python kn.py -g graph500 -s graph500-22-seed -c 300 -d 6 -p redisgraph -l graph500-22_unique_node -t 22 -i 2
101
+ nohup python kn.py -g graph500 -s graph500_22_seed -c 300 -d 6 -p redisgraph -l graph500_22_unique_node -t 22 -i 2
95
102
# 10 seeds, depth 3
96
- nohup python kn.py -g graph500 -s graph500-22-seed -c 10 -d 6 -p redisgraph -l graph500-22_unique_node -t 22 -i 3
103
+ nohup python kn.py -g graph500 -s graph500_22_seed -c 10 -d 6 -p redisgraph -l graph500_22_unique_node -t 22 -i 3
97
104
# 10 seeds, depth 6
98
- nohup python kn.py -g graph500 -s graph500-22-seed -c 10 -d 6 -p redisgraph -l graph500-22_unique_node -t 22 -i 6
105
+ nohup python kn.py -g graph500 -s graph500_22_seed -c 10 -d 6 -p redisgraph -l graph500_22_unique_node -t 22 -i 6
99
106
```
100
107
101
108
102
109
##### Twitter Benchmark
103
110
104
111
``` bash
105
112
# 300 seeds, depth 1
106
- nohup python kn.py -g twitter_rv -s twitter_rv_net-seed -c 300 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 1
113
+ nohup python kn.py -g twitter_rv -s twitter_rv_net_seed -c 300 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 1
107
114
# 300 seeds, depth 2
108
- nohup python kn.py -g twitter_rv -s twitter_rv_net-seed -c 300 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 2
115
+ nohup python kn.py -g twitter_rv -s twitter_rv_net_seed -c 300 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 2
109
116
# 10 seeds, depth 3
110
- nohup python kn.py -g twitter_rv -s twitter_rv_net-seed -c 10 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 3
117
+ nohup python kn.py -g twitter_rv -s twitter_rv_net_seed -c 10 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 3
111
118
# 10 seeds, depth 6
112
- nohup python kn.py -g twitter_rv -s twitter_rv_net-seed -c 10 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 6
119
+ nohup python kn.py -g twitter_rv -s twitter_rv_net_seed -c 10 -d 6 -p redisgraph -l twitter_rv_net_unique_node -t 22 -i 6
113
120
```
0 commit comments