diff --git a/README.md b/README.md index 2ebea06..9003efa 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,14 @@ This repo has multiple modules for reference. Please refer to the README in each ## FinBench Datasets +### Dataset V0.1 + +Dataset V0.1 can be downloaded from [LDBC FinBench official website](https://ldbcouncil.org/benchmarks/finbench/). + +### Dataset V0.2 (Working in Progress) + +Warning: Dataset V0.2 is still under development, the schema does not fully comply with the implementation yet. + - [SF 0.1](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf0.1/sf0.1.tar.xz) with [md5 checksum](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf0.1/sf0.1.tar.xz.md5sum) - [SF 1](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf1/sf1.tar.xz) with [md5 checksum](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf1/sf1.tar.xz.md5sum) - [SF 3](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf3/sf3.tar.xz) with [md5 checksum](https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/datasets/finbench/v0.2.0/sf3/sf3.tar.xz.md5sum) diff --git a/tugraph/data/import.conf b/tugraph/data/import.conf index 72e793e..598edd6 100644 --- a/tugraph/data/import.conf +++ b/tugraph/data/import.conf @@ -256,6 +256,14 @@ "temporal": "timestamp", "temporal_order": "DESC", "properties": [ + { + "name": "fromType", + "type": "STRING" + }, + { + "name": "toType", + "type": "STRING" + }, { "name": "timestamp", "type": "INT64" @@ -263,6 +271,10 @@ { "name": "amount", "type": "DOUBLE" + }, + { + "name": "comment", + "type": "STRING" } ] }, @@ -279,6 +291,10 @@ { "name": "amount", "type": "DOUBLE" + }, + { + "name": "comment", + "type": "STRING" } ] }, @@ -295,6 +311,10 @@ { "name": "amount", "type": "DOUBLE" + }, + { + "name": "comment", + "type": "STRING" } ] }, @@ -308,6 +328,10 @@ "name": "timestamp", "type": "INT64" }, + { + "name": "comment", + "type": "STRING" + }, { "name": "location", "type": "STRING", @@ -328,6 +352,10 @@ { "name": "ratio", "type": "DOUBLE" + }, + { + "name": "comment", + "type": "STRING" } ] }, @@ -341,6 +369,14 @@ "name": "timestamp", "type": "INT64" }, + { + "name": "comment", + "type": "STRING" + }, + { + "name": "loanAmount", + "type": "DOUBLE" + }, { "name": "org", "type": "STRING", @@ -358,6 +394,10 @@ "name": "timestamp", "type": "INT64" }, + { + "name": "comment", + "type": "STRING" + }, { "name": "relation", "type": "STRING", @@ -369,6 +409,11 @@ "label": "own", "type": "EDGE", "properties": [ + { + "name": "comment", + "type": "STRING", + "optional": true + }, { "name": "timestamp", "type": "INT64", @@ -483,8 +528,11 @@ "columns": [ "SRC_ID", "DST_ID", + "fromType", + "toType", "amount", - "timestamp" + "timestamp", + "comment" ] }, { @@ -497,7 +545,8 @@ "SRC_ID", "DST_ID", "amount", - "timestamp" + "timestamp", + "comment" ] }, { @@ -510,7 +559,8 @@ "SRC_ID", "DST_ID", "amount", - "timestamp" + "timestamp", + "comment" ] }, { @@ -523,7 +573,8 @@ "SRC_ID", "DST_ID", "timestamp", - "location" + "location", + "comment" ] }, { @@ -536,7 +587,8 @@ "SRC_ID", "DST_ID", "ratio", - "timestamp" + "timestamp", + "comment" ] }, { @@ -549,7 +601,8 @@ "SRC_ID", "DST_ID", "ratio", - "timestamp" + "timestamp", + "comment" ] }, { @@ -561,8 +614,10 @@ "columns": [ "SRC_ID", "DST_ID", + "loanAmount", "timestamp", - "org" + "org", + "comment" ] }, { @@ -574,8 +629,10 @@ "columns": [ "SRC_ID", "DST_ID", + "loanAmount", "timestamp", - "org" + "org", + "comment" ] }, { @@ -588,7 +645,8 @@ "SRC_ID", "DST_ID", "timestamp", - "relation" + "relation", + "comment" ] }, { @@ -601,7 +659,8 @@ "SRC_ID", "DST_ID", "timestamp", - "relation" + "relation", + "comment" ] }, { @@ -613,7 +672,8 @@ "columns": [ "SRC_ID", "DST_ID", - "timestamp" + "timestamp", + "comment" ] }, { @@ -625,7 +685,8 @@ "columns": [ "SRC_ID", "DST_ID", - "timestamp" + "timestamp", + "comment" ] } ]