-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
240 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/iceberg | ||
/iceberg-test | ||
.env | ||
/benchmark/dbt3/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# BemiDB Bechmark | ||
|
||
1. Download the TPC-H .zip benchmark file from the [following link](https://www.tpc.org/tpc_documents_current_versions/current_specifications5.asp) (requires to fill a form) | ||
2. Unzip the downloaded file into the `benchmark` directory | ||
|
||
3. Run the following commands: | ||
|
||
```sh | ||
make pg-init | ||
make pg-up | ||
make benchmark-init | ||
|
||
cd benchmark | ||
dbt3-build-dbgen --patch-dir=dbt3/patches --query-dir=dbt3/queries pgsql "TPC-H V3.0.1"/ | ||
``` | ||
|
||
--- | ||
|
||
```sh | ||
make pg-init | ||
make pg-up | ||
|
||
cd benchmark | ||
git clone https://github.com/gregrahn/tpch-kit.git | ||
cd tpch-kit/dbgen | ||
make MACHINE=MACOS DATABASE=POSTGRESQL # Use MACHINE=LINUX for Linux | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters