Skip to content

Commit 5e7556f

Browse files
authored
Merge pull request #460 from Sharon-iguazio/doc-ig-14339-create-err-msg-edit
[IG-14339] [DOC] Rephrase the create error when the aggregation granularity is too close to the rate
2 parents 98cb495 + 479c8f6 commit 5e7556f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/tsdb/schema/schema.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func validateAggregatesGranularity(aggregationGranularity string, partitionInter
190190
if hasAggregates {
191191
partitionIntervalDuration, _ := utils.Str2duration(partitionInterval) // safe to ignore error since we create 'partitionInterval'
192192
if partitionIntervalDuration/duration > MaxV3ioArraySize {
193-
return errors.New("the aggregation granularity is too close to the ingestion rate provided. Try increasing the granularity to get an aggregation performance impact")
193+
return errors.New("the size of the aggregation-granularity interval isn't sufficiently larger than the specified ingestion rate. Try increasing the granularity to get the expected pre-aggregation performance impact")
194194
}
195195
}
196196
return nil

0 commit comments

Comments
 (0)