Skip to content

Commit f3fe75e

Browse files
committed
2 parents 074343c + 16f18c6 commit f3fe75e

File tree

3 files changed

+182
-4
lines changed

3 files changed

+182
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11

22
![LDBC_LOGO](https://raw.github.com/wiki/ldbc/ldbc_socialnet_bm/images/ldbc-logo.png)
3-
LDBC-SNB DataGenerator
3+
LDBC-SNB Data Generator
44
----------------------
55

6-
The LDBC-SNB DataGenerator (DGEN) is the responsible of providing the data sets used by all the LDBC benchmarks. This data generator is designed to produce directed labeled graphs that mimic the characteristics of those graphs of real data. A detailed description of the generator can be found in the following pages:
6+
The LDBC-SNB Data Generator (DATAGEN) is the responsible of providing the data sets used by all the LDBC benchmarks. This data generator is designed to produce directed labeled graphs that mimic the characteristics of those graphs of real data. A detailed description of the generator can be found in the following pages:
77

88
* In **[Data Schema](https://github.com/ldbc/ldbc_socialnet_bm/wiki/Data-Schema)**, a description of the schema of the data produced by the generator.
99
* In **[Data Generation Process](https://github.com/ldbc/ldbc_socialnet_bm/wiki/Data-Generation)**, information about the generation process of the data.
1010
* In **[Data Output](https://github.com/ldbc/ldbc_socialnet_bm/wiki/Data-Output)**, a description of the contents and the format of the files produced by the generator.
1111

1212

13-
ldbc_socialnet_dbgen is part of the LDBC project (http://www.ldbc.eu/).
14-
ldbc_socialnet_dbgen is GPLv3 licensed, to see detailed information about this license read the LICENSE.txt.
13+
ldbc_snb_datagen is part of the LDBC project (http://www.ldbc.eu/).
14+
ldbc_snb_datagen is GPLv3 licensed, to see detailed information about this license read the LICENSE.txt.
1515

1616
* Releases
1717
* **[Configuration](https://github.com/ldbc/ldbc_socialnet_bm/wiki/Configuration)**
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
\begin{table}[H]
2+
\centering
3+
\begin{tabular} {| l | c | c |}
4+
\hline
5+
\textbf{Entity} & \textbf{Num Entities} & \textbf{Bytes} \\
6+
\hline
7+
\hline
8+
comment & 2335637135 & 258944003306 \\
9+
\hline
10+
forum & 36098481 & 2222966076 \\
11+
\hline
12+
organisation & 7996 & 813396 \\
13+
\hline
14+
person & 3600000 & 324485964 \\
15+
\hline
16+
place & 1466 & 83793 \\
17+
\hline
18+
post & 555306166 & 83647390485 \\
19+
\hline
20+
tag & 16080 & 1122520 \\
21+
\hline
22+
tagclass & 71 & 4037 \\
23+
\hline
24+
\hline
25+
\textbf{Relation} & \textbf{Num Relations} & \textbf{Bytes} \\
26+
\hline
27+
\hline
28+
comment\_hasCreator\_person & 2335637135 & 69009917568 \\
29+
\hline
30+
comment\_hasTag\_tag & 3042978961 & 63451008509 \\
31+
\hline
32+
comment\_isLocatedIn\_place & 2335637135 & 44333145872 \\
33+
\hline
34+
comment\_replyOf\_comment & 1184778982 & 36597884006 \\
35+
\hline
36+
comment\_replyOf\_post & 1150858153 & 35549852967 \\
37+
\hline
38+
forum\_containerOf\_post & 555306166 & 16985930071 \\
39+
\hline
40+
forum\_hasMember\_person & 3277239057 & 167465482785 \\
41+
\hline
42+
forum\_hasModerator\_person & 36098481 & 1071895282 \\
43+
\hline
44+
forum\_hasTag\_tag & 116727525 & 2398752244 \\
45+
\hline
46+
organisation\_isLocatedIn\_place & 7996 & 79492 \\
47+
\hline
48+
person\_isLocatedIn\_place & 3600000 & 64736060 \\
49+
\hline
50+
person\_hasInterest\_tag & 84229044 & 1692899009 \\
51+
\hline
52+
person\_knows\_person & 447163916 & 22530441760 \\
53+
\hline
54+
person\_likes\_comment & 2858070323 & 146129764930 \\
55+
\hline
56+
person\_likes\_post & 1361722197 & 69623238723 \\
57+
\hline
58+
person\_studyAt\_organisation & 2878718 & 72544726 \\
59+
\hline
60+
person\_workAt\_organisation & 7829672 & 190876421 \\
61+
\hline
62+
place\_isPartOf\_place & 1460 & 12098 \\
63+
\hline
64+
post\_hasCreator\_person & 555306166 & 16467663132 \\
65+
\hline
66+
post\_hasTag\_tag & 793254841 & 16381717061 \\
67+
\hline
68+
post\_isLocatedIn\_place & 555306166 & 10543790321 \\
69+
\hline
70+
tag\_hasType\_tagclass & 16080 & 163488 \\
71+
\hline
72+
tagclass\_isSubclassOf\_tagclass & 70 & 791 \\
73+
\hline
74+
\hline
75+
\textbf{Property Files} & \textbf{Num Properties} & \textbf{Bytes} \\
76+
\hline
77+
\hline
78+
person\_email\_emailaddress & 6141306 & 276081939 \\
79+
\hline
80+
person\_speaks\_language & 7932926 & 144358836 \\
81+
\hline
82+
\hline
83+
\textbf{Total Entities} & \textbf{Total Relations} & \textbf{Total Bytes} \\
84+
\hline
85+
\hline
86+
2930667395 & 20704648244 & 1066123107668 \\
87+
\hline
88+
\end{tabular}
89+
\end{table}
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
\begin{table}[H]
2+
\centering
3+
\begin{tabular} {| l | c | c |}
4+
\hline
5+
\textbf{Entity} & \textbf{Num Entities} & \textbf{Bytes} \\
6+
\hline
7+
\hline
8+
comment & 2335637135 & 258944003306 \\
9+
\hline
10+
forum & 36098481 & 2222966076 \\
11+
\hline
12+
organisation & 7996 & 813396 \\
13+
\hline
14+
person & 3600000 & 324485964 \\
15+
\hline
16+
place & 1466 & 83793 \\
17+
\hline
18+
post & 555306166 & 83647390485 \\
19+
\hline
20+
tag & 16080 & 1122520 \\
21+
\hline
22+
tagclass & 71 & 4037 \\
23+
\hline
24+
\hline
25+
\textbf{Relation} & \textbf{Num Relations} & \textbf{Bytes} \\
26+
\hline
27+
\hline
28+
comment\_hasCreator\_person & 2335637135 & 69009917568 \\
29+
\hline
30+
comment\_hasTag\_tag & 3042978961 & 63451008509 \\
31+
\hline
32+
comment\_isLocatedIn\_place & 2335637135 & 44333145872 \\
33+
\hline
34+
comment\_replyOf\_comment & 1184778982 & 36597884006 \\
35+
\hline
36+
comment\_replyOf\_post & 1150858153 & 35549852967 \\
37+
\hline
38+
forum\_containerOf\_post & 555306166 & 16985930071 \\
39+
\hline
40+
forum\_hasMember\_person & 3277239057 & 167465482785 \\
41+
\hline
42+
forum\_hasModerator\_person & 36098481 & 1071895282 \\
43+
\hline
44+
forum\_hasTag\_tag & 116727525 & 2398752244 \\
45+
\hline
46+
organisation\_isLocatedIn\_place & 7996 & 79492 \\
47+
\hline
48+
person\_isLocatedIn\_place & 3600000 & 64736060 \\
49+
\hline
50+
person\_hasInterest\_tag & 84229044 & 1692899009 \\
51+
\hline
52+
person\_knows\_person & 447163916 & 22530441760 \\
53+
\hline
54+
person\_likes\_comment & 2858070323 & 146129764930 \\
55+
\hline
56+
person\_likes\_post & 1361722197 & 69623238723 \\
57+
\hline
58+
person\_studyAt\_organisation & 2878718 & 72544726 \\
59+
\hline
60+
person\_workAt\_organisation & 7829672 & 190876421 \\
61+
\hline
62+
place\_isPartOf\_place & 1460 & 12098 \\
63+
\hline
64+
post\_hasCreator\_person & 555306166 & 16467663132 \\
65+
\hline
66+
post\_hasTag\_tag & 793254841 & 16381717061 \\
67+
\hline
68+
post\_isLocatedIn\_place & 555306166 & 10543790321 \\
69+
\hline
70+
tag\_hasType\_tagclass & 16080 & 163488 \\
71+
\hline
72+
tagclass\_isSubclassOf\_tagclass & 70 & 791 \\
73+
\hline
74+
\hline
75+
\textbf{Property Files} & \textbf{Num Properties} & \textbf{Bytes} \\
76+
\hline
77+
\hline
78+
person\_email\_emailaddress & 6141306 & 276081939 \\
79+
\hline
80+
person\_speaks\_language & 7932926 & 144358836 \\
81+
\hline
82+
\hline
83+
\textbf{Total Entities} & \textbf{Total Relations} & \textbf{Total Bytes} \\
84+
\hline
85+
\hline
86+
2930667395 & 20704648244 & 1066123107668 \\
87+
\hline
88+
\end{tabular}
89+
\end{table}

0 commit comments

Comments
 (0)