Skip to content

Commit b105c27

Browse files
authored
Merge pull request #467 from v3io/development
Development
2 parents e5e6535 + 5e7556f commit b105c27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: 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

Diff for: pkg/tsdbctl/create.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func newCreateCommandeer(rootCommandeer *RootCommandeer) *createCommandeer {
6464
cmd.Flags().StringVarP(&commandeer.defaultRollups, "aggregates", "a", "",
6565
"Default aggregates to calculate in real time during\nthe samples ingestion, as a comma-separated list of\nsupported aggregation functions - count | avg | sum |\nmin | max | stddev | stdvar | last | rate.\nExample: \"sum,avg,max\".")
6666
cmd.Flags().StringVarP(&commandeer.crossLabelSets, "cross-label", "l", "",
67-
"Label sets for which cross-label pre-aggregations should be created. Must be used in conjunction with -a.\nExample: \"label1,label2;label3\".")
67+
"NOT SUPPORTED - Label sets for which cross-label pre-aggregations should be created. Must be used in conjunction with -a.\nExample: \"label1,label2;label3\".")
6868
cmd.Flags().StringVarP(&commandeer.aggregationGranularity, "aggregation-granularity", "i", config.DefaultAggregationGranularity,
6969
"Aggregation granularity - a time interval for applying\nthe aggregation functions (if configured - see the\n-a|--aggregates flag), of the format \"[0-9]+[mhd]\"\n(where 'm' = minutes, 'h' = hours, and 'd' = days).\nExamples: \"2h\"; \"90m\".")
7070
cmd.Flags().IntVarP(&commandeer.shardingBucketsCount, "sharding-buckets", "b", config.DefaultShardingBucketsCount,

0 commit comments

Comments
 (0)