From bd6461a8922d1c26df6f0d114af8e4fe6f0c56da Mon Sep 17 00:00:00 2001 From: iguazio-deploy Date: Wed, 11 Mar 2020 11:25:52 +0000 Subject: [PATCH] Updated TSDB to v0.9.18 --- functions/ingest/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile | 2 +- .../vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go | 2 +- .../vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go | 2 +- functions/query/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile | 2 +- .../vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go | 2 +- .../vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/functions/ingest/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile b/functions/ingest/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile index 3a426e07..26545259 100644 --- a/functions/ingest/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile +++ b/functions/ingest/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile @@ -389,7 +389,7 @@ podTemplate(label: "${git_project}-${label}", inheritFrom: "jnlp-docker-golang") def FRAMES_NEXT_VERSION def next_versions = ['prometheus':null, 'tsdb-nuclio':null, 'frames':null] - pipelinex = library(identifier: 'pipelinex@_fix_py', retriever: modernSCM( + pipelinex = library(identifier: 'pipelinex@development', retriever: modernSCM( [$class: 'GitSCMSource', credentialsId: git_deploy_user_private_key, remote: "git@github.com:iguazio/pipelinex.git"])).com.iguazio.pipelinex diff --git a/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go b/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go index 1bffbac5..822d7224 100644 --- a/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go +++ b/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go @@ -190,7 +190,7 @@ func validateAggregatesGranularity(aggregationGranularity string, partitionInter if hasAggregates { partitionIntervalDuration, _ := utils.Str2duration(partitionInterval) // safe to ignore error since we create 'partitionInterval' if partitionIntervalDuration/duration > MaxV3ioArraySize { - return errors.New("the aggregation granularity is too close to the ingestion rate provided. Try increasing the granularity to get an aggregation performance impact") + 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") } } return nil diff --git a/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go b/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go index cefdbf53..acad54a2 100644 --- a/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go +++ b/functions/ingest/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go @@ -64,7 +64,7 @@ func newCreateCommandeer(rootCommandeer *RootCommandeer) *createCommandeer { cmd.Flags().StringVarP(&commandeer.defaultRollups, "aggregates", "a", "", "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\".") cmd.Flags().StringVarP(&commandeer.crossLabelSets, "cross-label", "l", "", - "Label sets for which cross-label pre-aggregations should be created. Must be used in conjunction with -a.\nExample: \"label1,label2;label3\".") + "NOT SUPPORTED - Label sets for which cross-label pre-aggregations should be created. Must be used in conjunction with -a.\nExample: \"label1,label2;label3\".") cmd.Flags().StringVarP(&commandeer.aggregationGranularity, "aggregation-granularity", "i", config.DefaultAggregationGranularity, "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\".") cmd.Flags().IntVarP(&commandeer.shardingBucketsCount, "sharding-buckets", "b", config.DefaultShardingBucketsCount, diff --git a/functions/query/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile b/functions/query/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile index 3a426e07..26545259 100644 --- a/functions/query/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile +++ b/functions/query/vendor/github.com/v3io/v3io-tsdb/Jenkinsfile @@ -389,7 +389,7 @@ podTemplate(label: "${git_project}-${label}", inheritFrom: "jnlp-docker-golang") def FRAMES_NEXT_VERSION def next_versions = ['prometheus':null, 'tsdb-nuclio':null, 'frames':null] - pipelinex = library(identifier: 'pipelinex@_fix_py', retriever: modernSCM( + pipelinex = library(identifier: 'pipelinex@development', retriever: modernSCM( [$class: 'GitSCMSource', credentialsId: git_deploy_user_private_key, remote: "git@github.com:iguazio/pipelinex.git"])).com.iguazio.pipelinex diff --git a/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go b/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go index 1bffbac5..822d7224 100644 --- a/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go +++ b/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdb/schema/schema.go @@ -190,7 +190,7 @@ func validateAggregatesGranularity(aggregationGranularity string, partitionInter if hasAggregates { partitionIntervalDuration, _ := utils.Str2duration(partitionInterval) // safe to ignore error since we create 'partitionInterval' if partitionIntervalDuration/duration > MaxV3ioArraySize { - return errors.New("the aggregation granularity is too close to the ingestion rate provided. Try increasing the granularity to get an aggregation performance impact") + 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") } } return nil diff --git a/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go b/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go index cefdbf53..acad54a2 100644 --- a/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go +++ b/functions/query/vendor/github.com/v3io/v3io-tsdb/pkg/tsdbctl/create.go @@ -64,7 +64,7 @@ func newCreateCommandeer(rootCommandeer *RootCommandeer) *createCommandeer { cmd.Flags().StringVarP(&commandeer.defaultRollups, "aggregates", "a", "", "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\".") cmd.Flags().StringVarP(&commandeer.crossLabelSets, "cross-label", "l", "", - "Label sets for which cross-label pre-aggregations should be created. Must be used in conjunction with -a.\nExample: \"label1,label2;label3\".") + "NOT SUPPORTED - Label sets for which cross-label pre-aggregations should be created. Must be used in conjunction with -a.\nExample: \"label1,label2;label3\".") cmd.Flags().StringVarP(&commandeer.aggregationGranularity, "aggregation-granularity", "i", config.DefaultAggregationGranularity, "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\".") cmd.Flags().IntVarP(&commandeer.shardingBucketsCount, "sharding-buckets", "b", config.DefaultShardingBucketsCount,