Skip to content

Commit

Permalink
Add new type for storing ingest field statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelewski committed Aug 26, 2024
1 parent e12d635 commit 97ed3f1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions quesma/clickhouse/clickhouse.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ const (
maxColumns = 100
)

type (
IngestFieldBucketKey struct {
indexName string
field string
insertBucket int
}
IngestFieldStatistics map[IngestFieldBucketKey]int
)

type (
// LogManager should be renamed to Connector -> TODO !!!
LogManager struct {
Expand Down

0 comments on commit 97ed3f1

Please sign in to comment.