Skip to content

Commit a7e725f

Browse files
committed
Fix NY Taxi mention
1 parent 7f03450 commit a7e725f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

versions/index.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,13 @@
365365
"SELECT URLHash, EventDate, count() AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= toDate('2013-07-01') AND EventDate <= toDate('2013-07-31') AND NOT Refresh AND TraficSourceID IN (-1, 6) AND RefererHash = halfMD5('http://yandex.ru/') GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100",
366366
"SELECT WindowClientWidth, WindowClientHeight, count() AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= toDate('2013-07-01') AND EventDate <= toDate('2013-07-31') AND NOT Refresh AND NOT DontCountHits AND URLHash = halfMD5('http://yandex.ru/') GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;",
367367
"SELECT toStartOfMinute(EventTime) AS Minute, count() AS PageViews FROM hits WHERE CounterID = 62 AND EventDate >= toDate('2013-07-01') AND EventDate <= toDate('2013-07-02') AND NOT Refresh AND NOT DontCountHits GROUP BY Minute ORDER BY Minute;",
368+
369+
/// NY Taxi
370+
"SELECT cab_type, count(*) FROM trips GROUP BY cab_type;",
371+
"SELECT passenger_count, avg(total_amount) FROM trips GROUP BY passenger_count;",
372+
"SELECT passenger_count, toYear(pickup_date) AS year, count(*) FROM trips GROUP BY passenger_count, year;",
373+
"SELECT passenger_count, toYear(pickup_date) AS year, round(trip_distance) AS distance, count(*) FROM trips GROUP BY passenger_count, year, distance ORDER BY year, count(*) DESC;",
374+
368375
];
369376

370377
const data = [
@@ -504,11 +511,12 @@ <h2>Detailed Comparison</h2>
504511
</table>
505512

506513
<div class="comments">
507-
<p>This includes a combination of three benchmarks: MgBench, Star Schema Benchmark and ClickBench.</p>
514+
<p>This includes a combination of three benchmarks: MgBench, Star Schema Benchmark, New York Taxi Rides Benchmark and ClickBench.</p>
508515
<p>Hardware used to run tests: x86_64 AWS m5.8xlarge Ubuntu 20.04.</p>
509516
<p>In 23.7 sparse columns feature is enabled by default. Tables were populated again to utilize sparse columns.</p>
510517
<p>Old versions had no support of these features/syntax: toISOWeek, SUBSTRING, EXTRACT, WITH. Queries were changed. All version runs use same queries.</p>
511518
<p>Star Schema Benchmark Patrick O'Neil, Elizabeth (Betty) O'Neil and Xuedong Chen. "The Star Schema Benchmark," Online Publication of Database Generation program., January 2007. <a href="http://www.cs.umb.edu/~poneil/StarSchemaB.pdf">http://www.cs.umb.edu/~poneil/StarSchemaB.pdf</a></p>
519+
<p>Summary of the 1.1 Billion Taxi Rides Benchmarks, Mark Litwintschik<a href="https://tech.marksblogg.com/benchmarks.html">https://tech.marksblogg.com/benchmarks.html</a> </p>
512520
</div>
513521

514522
<script type="text/javascript">

0 commit comments

Comments
 (0)