diff --git a/content/flux/v0.x/spec/options.md b/content/flux/v0.x/spec/options.md index 0affc5aff..b5075d4b5 100644 --- a/content/flux/v0.x/spec/options.md +++ b/content/flux/v0.x/spec/options.md @@ -38,9 +38,8 @@ The `task` option schedules the execution of a Flux query. option task = { name: "foo", // Name is required. every: 1h, // Task should be run at this interval. - delay: 10m, // Delay scheduling this task by this duration. + offset: 10m, // Delay scheduling this task by this duration. cron: "0 2 * * *", // Cron is a more sophisticated way to schedule. 'every' and 'cron' are mutually exclusive. - retry: 5, // Number of times to retry a failed query. } ``` diff --git a/content/influxdb/v2.0/process-data/task-options.md b/content/influxdb/v2.0/process-data/task-options.md index 96de22c2d..6d33a7585 100644 --- a/content/influxdb/v2.0/process-data/task-options.md +++ b/content/influxdb/v2.0/process-data/task-options.md @@ -20,7 +20,6 @@ The following task options are available: - [every](#every) - [cron](#cron) - [offset](#offset) -- [concurrency](#concurrency) {{% note %}} `every` and `cron` are mutually exclusive, but at least one is required. @@ -91,17 +90,3 @@ option task = { offset: 10m, } ``` - -## concurrency -The number task of executions that can run concurrently. -If the concurrency limit is reached, all subsequent executions are queued until -other running task executions complete. - -_**Data type:** Integer_ - -```js -option task = { - // ... - concurrency: 2, -} -``` diff --git a/content/influxdb/v2.1/process-data/task-options.md b/content/influxdb/v2.1/process-data/task-options.md index 71dc6180a..93ed1dfb2 100644 --- a/content/influxdb/v2.1/process-data/task-options.md +++ b/content/influxdb/v2.1/process-data/task-options.md @@ -20,7 +20,6 @@ The following task options are available: - [every](#every) - [cron](#cron) - [offset](#offset) -- [concurrency](#concurrency) {{% note %}} `every` and `cron` are mutually exclusive, but at least one is required. @@ -91,17 +90,3 @@ option task = { offset: 10m, } ``` - -## concurrency -The number task of executions that can run concurrently. -If the concurrency limit is reached, all subsequent executions are queued until -other running task executions complete. - -_**Data type:** Integer_ - -```js -option task = { - // ... - concurrency: 2, -} -``` diff --git a/content/influxdb/v2.2/process-data/task-options.md b/content/influxdb/v2.2/process-data/task-options.md index d00143b7c..ff20ea84a 100644 --- a/content/influxdb/v2.2/process-data/task-options.md +++ b/content/influxdb/v2.2/process-data/task-options.md @@ -20,7 +20,6 @@ The following task options are available: - [every](#every) - [cron](#cron) - [offset](#offset) -- [concurrency](#concurrency) {{% note %}} `every` and `cron` are mutually exclusive, but at least one is required. @@ -91,17 +90,3 @@ option task = { offset: 10m, } ``` - -## concurrency -The number task of executions that can run concurrently. -If the concurrency limit is reached, all subsequent executions are queued until -other running task executions complete. - -_**Data type:** Integer_ - -```js -option task = { - // ... - concurrency: 2, -} -``` diff --git a/content/influxdb/v2.4/process-data/task-options.md b/content/influxdb/v2.4/process-data/task-options.md index d023d65ba..235556a6d 100644 --- a/content/influxdb/v2.4/process-data/task-options.md +++ b/content/influxdb/v2.4/process-data/task-options.md @@ -20,7 +20,6 @@ The following task options are available: - [every](#every) - [cron](#cron) - [offset](#offset) -- [concurrency](#concurrency) {{% note %}} `every` and `cron` are mutually exclusive, but at least one is required. @@ -91,17 +90,3 @@ option task = { offset: 10m, } ``` - -## concurrency -The number task of executions that can run concurrently. -If the concurrency limit is reached, all subsequent executions are queued until -other running task executions complete. - -_**Data type:** Integer_ - -```js -option task = { - // ... - concurrency: 2, -} -```