Database Benchmarks Lie (If You Let Them)
1–10 of 13 posts
Re: Database Benchmarks Lie (If You Let Them)
#2Re: Database Benchmarks Lie (If You Let Them)
#3Re: Database Benchmarks Lie (If You Let Them)
#4Re: Database Benchmarks Lie (If You Let Them)
#5From my experience, planning is often the first headache I have to deal with (join order, hash sizing, operator choice), before concurrency and memory even come into play.
Re: Database Benchmarks Lie (If You Let Them)
#6From my experience, planning is often the first headache I have to deal with (join order, hash sizing, operator choice), before concurrency and memory even come into play.
You mean the "execution plan" for your queries? Ideally, those types of decisions are automatically done by the database.
How you actually interpret what you're seeing here? does it look like more like optimizer fragility (plans that assume ideal memory conditions) or more like runtime memory management limits (good plans, but no adaptive behavior under pressure)?
Re: Database Benchmarks Lie (If You Let Them)
#7Earlier quoted context omitted.
You mean the "execution plan" for your queries? Ideally, those types of decisions are automatically done by the database.
ideally? yes. in practice? big nope. How you actually interpret what you're seeing here? does it look like more like optimizer fragility (plans that assume ideal memory conditions) or more like runtime memory management limits (good plans, but no adaptive behavior under pressure)?
Any database should be able to handle 100 concurrent queries robustly, even if this means to slow down the execution of queries.
Re: Database Benchmarks Lie (If You Let Them)
#8TPC-H benchmarks are what convinced us to purchase Exasol 10 years ago. Still happy with that decision! Congrats to the Exasol team on these results vs ClickHouse.
Re: Database Benchmarks Lie (If You Let Them)
#9This got me curious about our Exasol environment, which we've been running since 2016 at Piedmont Healthcare. We average 2 million queries per day (DDL/DML/DQL). Our query failure rate is ~0.1%. Only 7% of those failures were due to hitting resource limits. The rest were SQL issues: constraint errors, data type issues, etc. Average connected users is ~400. Average concurrent queries is ~7 with a daily max average of…
"200k values in a WHERE clause IN statement"? What is that column about?
Average concurrent query is ~7 in what time period?
Re: Database Benchmarks Lie (If You Let Them)
#10In Google, Ai summarized results are ClickHouse, StarRocks, Snowflake, and Google BigQuery.
Clickhouse is there in both of them and Exasol is not mentioned. If these claims were relevant, why is it not in the limelight?
Clickhouse is known to ingest and analyze massive volumes of time-series data in real-time. How good is Exasol for this use case?