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
ec0cbaf
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
2ec4e27
q1firstDraft
ghafek Jun 18, 2025
cd7cab8
first try
ghafek Jun 20, 2025
c364019
Remove large .tbl files and ignore them
ghafek Jun 20, 2025
12edfc5
modifying some paths
ghafek Jun 23, 2025
a54a1da
more paths modification
ghafek Jun 23, 2025
a3ac48e
empty the content of copied query q2_3.dml
ghafek Jun 23, 2025
c59cb71
q2_1 angepasst, order by funktioniert noch nicht
Jun 24, 2025
3496658
queries 2.1-2.3 implementiert, spec für part hinzugefügt
Jun 27, 2025
ad5c9d7
Paths modification q2_2& q2_3
ghafek Jun 27, 2025
3dfbe3c
Add SSB benchmark queries Q3 and Q4, and customer recode spec
Jun 28, 2025
15d5065
getting the right Paths
ghafek Jun 28, 2025
f30b46c
modify things
ghafek Jun 28, 2025
39461ac
Cleaning up stuffs
ghafek Jun 29, 2025
8edfb0b
queries optimizations
Jun 29, 2025
3f53a44
Some changes on the way
ghafek Jun 29, 2025
0847dbc
adding the ssb queries as comments
ghafek Jun 29, 2025
164c7fc
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
8099c00
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
9fce875
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
1a2a387
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
56a61f3
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
9c66dba
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
aa15449
[SYSTEMDS-3892] Initial out-of-core base instruction and parser
jessicapriebe Jul 11, 2025
92c15e9
[SYSTEMDS-3253] New native operator for union distinct
chihsinh Jul 12, 2025
b056333
[SYSTEMDS-3893] Basic out-of-core binary-read and acquire primitive
mboehm7 Jul 13, 2025
8a75936
[SYSTEMDS-3893] Fix out-of-core test case (metadata file locations)
mboehm7 Jul 13, 2025
4003dc4
[SYSTEMDS-3895] New out-of-core unary aggregate operations
mboehm7 Jul 13, 2025
3d4b4c2
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
517d651
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
b633b2e
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
0922af4
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
f13ffb3
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
c60d218
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
eda86f7
[MINOR] Update docs to `2.3.0-SNAPSHOT`
j143 Nov 2, 2021
5f7389d
adding first draft for shell script
ghafek Jul 14, 2025
c7833d8
WIP: SSB benchmark implementation and performance testing
ghafek Aug 31, 2025
372be7e
One more push
ghafek Sep 7, 2025
795e939
PATHs modifications, READEME Updates and deleting shell wrappers from…
ghafek Sep 15, 2025
fd7edeb
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
19 changes: 16 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 Down Expand Up @@ -157,3 +157,16 @@ docker/mountFolder/*.bin.mtd

SEAL-*/

data/lineorder.tbl
data/test/lineorder.tbl
# SSB Data and subfolders
/data/
shell/ssbOutputData/
/sql/ssb.duckdb
# 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