Skip to content

Commit

Permalink
Merge pull request #17 from helios-platform/chore/update-load-testing…
Browse files Browse the repository at this point in the history
…-query-desc

chore: updated query descriptions
  • Loading branch information
jamesdrabinsky authored Aug 20, 2024
2 parents 2c86c1b + 1597522 commit ab6f6e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/.vitepress/theme/components/BenchmarkTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ export default {
const databases = ref(['ClickHouse', 'Pinot', 'Elasticsearch', 'MongoDB', 'PostgreSQL']);
const queries = ref([
{
question: "How many hits were driven by advertising?",
question: "How many page views were driven by advertising?",
text: 'SELECT COUNT(*) FROM hits WHERE AdvEngineID <> 0;'
},
{
question: "What's the total ad impact, hit count, and average screen width?",
question: "What's the total ad impact, page view count, and average screen width?",
text: 'SELECT SUM(AdvEngineID), COUNT(*), AVG(ResolutionWidth) FROM hits;'
},
{
Expand All @@ -88,7 +88,7 @@ export default {
text: 'SELECT RegionID, COUNT(DISTINCT UserID) AS u FROM hits GROUP BY RegionID ORDER BY u DESC LIMIT 10;'
},
{
question: "What are the top 10 search phrases from Google?",
question: "What are the top 10 search phrases leading to Google-related URLs?",
text: 'SELECT SearchPhrase, MIN(URL), COUNT(*) AS c FROM hits WHERE URL LIKE \'%google%\' AND SearchPhrase <> \'\' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;'
}
]);
Expand Down

0 comments on commit ab6f6e1

Please sign in to comment.