-
```
select
s_acctbal,
s_name,
n_name,
p_partkey,
p_mfgr,
s_address,
s_phone,
s_comment
from
part,
supplier,
…
skyzh updated
2 weeks ago
-
**Describe the problem**
For query 7 in TPC-H benchmark:
```sql
select
supp_nation,
cust_nation,
l_year,
sum(volume) as revenue
from
(
select
n1.…
-
Has anyone thought about implementing TPC-H using the dataframe API?
I think this would be very useful to test the scope, and also to draw attention to the dataframe API.
It would mean that anyone i…
-
-
**What**
Alongside ClickBench, the most popular OLAP benchmarking framework is probably TPC-H. It's a much older benchmark, and is trusted by the older enterprises.
DataFusion already has native s…
-
### Is your feature request related to a problem?
The repository at https://github.com/Eventual-Inc/distributed-query-benchmarking currently works only with the DataFrame API. For benchmarking [TPC…
-
**Describe the problem**
For the query 2 in TPC-H benchmark:
```sql
select
s_acctbal,
s_name,
n_name,
p_partkey,
p_mfgr,
s_address,
s_phone,
s_comment
f…
-
Related: #11, #68, #127
Ran with no datafusion optimizations (all of our own optimizations)
Tests were done for whether or not the query works with perfbench. Query result may be incorrect, but …
-
### What is the problem the feature request solves?
This epic is for tracking progress on improving performance of Comet with our benchmarks derived from TPC-H.
### Current status (September 202…
-
### Check duplicate issues.
- [x] Checked for duplicates
### Description
I need help to understand an issue which we have when running on Linux on ARM when reading a file which was serialised on x8…