Run a task
This page documents an earlier version of InfluxDB. InfluxDB v2.7 is the latest stable version. View this page in the v2.7 documentation.
InfluxDB data processing tasks generally run in defined intervals or at a specific time,
however, you can manually run a task from the InfluxDB user interface (UI) or the
influx
command line interface (CLI).
Run a task from the InfluxDB UI
In the navigation menu on the left, select Tasks.
<div class="nav-items-v3"> <div class="nav-item-v3"> <div class="nav-icon-v3"> <span class="v3 cf-icon calendar"></span> </div> </div> <div class="nav-item-v3"> <div class="nav-icon-v3"> <span class="v3 cf-icon calendar"></span> </div> <p class="nav-label-v3">Tasks</p> </div> </div>
Find the task you want to run and click the icon located far right of the task name.
Click Run.
Run a task with the influx CLI
Use the influx task run retry
command to run a task.
To run a task from the influx
CLI, the task must have already run at least once.
Authentication credentials
The examples below assume your InfluxDB host, organization, and token are
provided by either the active influx
CLI configuration or by environment variables (INFLUX_HOST
, INFLUX_ORG
, and INFLUX_TOKEN
).
If you do not have a CLI configuration set up or the environment variables set, include these required credentials for each command with the following flags:
--host
: InfluxDB host-o, --org
or--org-id
: InfluxDB organization name or ID-t, --token
: InfluxDB API token
# List all tasks to find the ID of the task to run
influx task list
# Use the task ID to list previous runs of the task
influx task run list --task-id=0000000000000000
# Use the task ID and run ID to retry a run
influx task run retry --task-id=0000000000000000 --run-id=0000000000000000
Retry failed task runs
Use the influx task retry-failed
command
to retry failed task runs.
# Retry failed tasks for a specific task
influx task retry-failed \
--id 0000000000000000
# Print information about runs that will be retried
influx task retry-failed \
--dry-run
# Retry failed task runs that occurred in a specific time range
influx task retry-failed \
--after 2021-01-01T00:00:00Z \
--before 2021-01-01T23:59:59Z
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, use the following resources:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.