Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
f2562be
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
6239a4d
q1firstDraft
ghafek Jun 18, 2025
2fd9f4d
first try
ghafek Jun 20, 2025
815d17a
Remove large .tbl files and ignore them
ghafek Jun 20, 2025
f17d45a
modifying some paths
ghafek Jun 23, 2025
8f3ff1a
more paths modification
ghafek Jun 23, 2025
779f826
empty the content of copied query q2_3.dml
ghafek Jun 23, 2025
000b8de
q2_1 angepasst, order by funktioniert noch nicht
Jun 24, 2025
92e1c2c
queries 2.1-2.3 implementiert, spec für part hinzugefügt
Jun 27, 2025
8912259
Paths modification q2_2& q2_3
ghafek Jun 27, 2025
74c8c4f
Add SSB benchmark queries Q3 and Q4, and customer recode spec
Jun 28, 2025
eac15fd
getting the right Paths
ghafek Jun 28, 2025
d5502e3
modify things
ghafek Jun 28, 2025
13ebcfc
Cleaning up stuffs
ghafek Jun 29, 2025
3fb2ab7
queries optimizations
Jun 29, 2025
4150f39
Some changes on the way
ghafek Jun 29, 2025
2c81756
adding the ssb queries as comments
ghafek Jun 29, 2025
b5fd4e9
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
04de838
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
1e66a4a
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
bbc829e
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
6390350
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
e7ae6b3
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
3b5e8c3
[SYSTEMDS-3892] Initial out-of-core base instruction and parser
jessicapriebe Jul 11, 2025
1ac0451
[SYSTEMDS-3253] New native operator for union distinct
chihsinh Jul 12, 2025
b16ae9a
[SYSTEMDS-3893] Basic out-of-core binary-read and acquire primitive
mboehm7 Jul 13, 2025
179201f
[SYSTEMDS-3893] Fix out-of-core test case (metadata file locations)
mboehm7 Jul 13, 2025
2ae8b6b
[SYSTEMDS-3895] New out-of-core unary aggregate operations
mboehm7 Jul 13, 2025
95ed3e2
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
ad28ded
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
5ae59ed
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
be85dfd
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
1255ae9
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
f83b335
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
d6ac412
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
f515b73
adding first draft for shell script
ghafek Jul 14, 2025
9061e69
WIP: SSB benchmark implementation and performance testing
ghafek Aug 31, 2025
2bb0ba4
One more push
ghafek Sep 7, 2025
8c1acb6
PATHs modifications, READEME Updates and deleting shell wrappers from…
ghafek Sep 15, 2025
2ebb5d1
delete old ssbOutputData Folder
ghafek Sep 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/javaTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
"**.functions.builtin.part1.**",
"**.functions.builtin.part2.**",
"**.functions.frame.**,**.functions.indexing.**,**.functions.io.**,**.functions.iogen.**",
"**.functions.dnn.**",
"**.functions.dnn.**,**.functions.ooc.**",
"**.functions.paramserv.**",
"**.functions.recompile.**,**.functions.misc.**",
"**.functions.mlcontext.**",
Expand Down
14 changes: 11 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
Expand Down Expand Up @@ -127,7 +127,7 @@ derby.log
src/main/cpp/build
src/main/cpp/bin

# legacy dml
# legacy dml
*.dmlt

# Performance Test artifacts
Expand All @@ -150,3 +150,11 @@ venv/*
# resource optimization
scripts/resource/output
*.pem

# SSB data, outputs, and local DB file
/data/
/scripts/ssb/shell/ssbOutputData/
/scripts/ssb/sql/ssb.duckdb

# Auto-generated single-thread config for SSB runs
/conf/single_thread.xml
8 changes: 8 additions & 0 deletions conf/single_thread.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<configuration>
<property>
<name>sysds.cp.parallel.ops</name><value>false</value>
</property>
<property>
<name>sysds.num.threads</name><value>1</value>
</property>
</configuration>
Loading