Skip to content

Commit

Permalink
Merge SIGMOD'20 Code
Browse files Browse the repository at this point in the history
This branch contains the sliding window code, and has been used for the first SIGMOD'20 submission
  • Loading branch information
anilpacaci authored Jan 9, 2020
2 parents 06f1306 + 1a0148c commit 0fb0785
Show file tree
Hide file tree
Showing 79 changed files with 9,200 additions and 1,987 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ hs_err_pid*
**/*.iml
**/.idea
venv/

# Project specific files
runlogs
4 changes: 3 additions & 1 deletion scripts/STwavequide.json → conf/STwavequide.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name" : "stwaveguide",
"dataset" : "/hdd1/apacaci/datasets/yago2s/tsv/yago2s_full_shuffle_virtuoso_tem53.hash",
"input-type" : "hash",
"report-folder" : "/home/apacaci/sgraffito/rpq/results-stwaveguide",
"report-folder" : "/home/apacaci/sgraffito/rpq/results-stwaveguide-50M10M",
"window-size" : 50000000,
"slide-size" : 10000000,
"buffer-size" : 50000000,
"heap-size" : 128,
"timeout" : 600,
Expand Down
156 changes: 156 additions & 0 deletions conf/StackOverflow-simple.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
{
"name" : "stackoverflow",
"dataset" : "/hdd1/apacaci/datasets/stackoverflow/labeled-sorted.txt",
"input-type" : "snap-sx",
"report-folder" : "/home/apacaci/sgraffito/results/stackoverflow",
"buffer-size" : 50000000,
"heap-size" : 192,
"timeout" : 150,
"executable" : "/home/apacaci/sgraffito/rpq/target/streamingrpq-1.0-SNAPSHOT-jar-with-dependencies.jar",
"runs" : [
{
"query-name" : "robotic1",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic2",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic3",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q",
"a2q"
]
},
{
"query-name" : "robotic4",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic5",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic6",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic7",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic8",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic9",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic10",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
},
{
"query-name" : "robotic11",
"index" : 1,
"semantics" : "simple",
"thread-count" : 32,
"window-size" : 2629743,
"slide-size" : 86400,
"labels" : [
"a2q",
"c2a",
"c2q"
]
}
]
}
Loading

0 comments on commit 0fb0785

Please sign in to comment.