hotfix: remove retry and concurrency task options, closes #4345

pull/4402/head
Scott Anderson 2022-08-30 09:05:06 -06:00
parent ff91ce8da2
commit 1bfd840161
5 changed files with 1 additions and 62 deletions

View File

@ -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.
}
```

View File

@ -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,
}
```

View File

@ -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,
}
```

View File

@ -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,
}
```

View File

@ -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,
}
```