You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/parca/parca.go
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ import (
37
37
"github.com/oklog/run"
38
38
"github.com/polarsignals/frostdb"
39
39
"github.com/polarsignals/frostdb/dynparquet"
40
+
"github.com/polarsignals/frostdb/index"
40
41
"github.com/polarsignals/frostdb/query"
41
42
"github.com/prometheus/client_golang/prometheus"
42
43
promconfig "github.com/prometheus/common/config"
@@ -142,6 +143,7 @@ type FlagsStorage struct {
142
143
EnableWALbool`default:"false" help:"Enables write ahead log for profile storage."`
143
144
SnapshotTriggerSizeint64`default:"134217728" help:"Number of bytes to trigger a snapshot. Defaults to 1/4 of active memory. This is only used if enable-wal is set."`
144
145
RowGroupSizeint`default:"8192" help:"Number of rows in each row group during compaction and persistence. Setting to <= 0 results in a single row group per file."`
146
+
IndexOnDiskbool`default:"false" help:"Whether to store the index on disk instead of in memory. Useful to reduce the memory footprint of the store."`
0 commit comments