We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ca6ce commit 2f49f9bCopy full SHA for 2f49f9b
.changeset/short-owls-jog.md
@@ -0,0 +1,5 @@
1
+---
2
+"@hyperdx/common-utils": patch
3
4
+
5
+fix: ignore max_rows_to_read for filter values distribution
packages/common-utils/src/metadata.ts
@@ -633,6 +633,8 @@ export class Metadata {
633
// Set max_rows_to_group_by to avoid using too much memory when grouping on high cardinality key columns
634
max_rows_to_group_by: `${limit * 10}`,
635
group_by_overflow_mode: 'any',
636
+ // disable max_rows_to_read limit since this is a sampled query that only happens after the user toggles it on
637
+ max_rows_to_read: '0',
638
},
639
})
640
.then(res =>
0 commit comments