Run a task

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

  1. In the navigation menu on the left, select Tasks.

    Tasks

  2. Hover over the task you want to run and click the icon.

  3. Select Run Task.

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 the active influx CLI configuration. If you do not have a CLI configuration set up, use the appropriate flags to provide these required credentials.

  1. # List all tasks to find the ID of the task to run
  2. influx task list
  3. # Use the task ID to list previous runs of the task
  4. influx task run list --task-id=0000000000000000
  5. # Use the task ID and run ID to retry a run
  6. 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.

  1. # Retry failed tasks for a specific task
  2. influx task retry-failed \
  3. --id 0000000000000000
  4. # Print information about runs that will be retried
  5. influx task retry-failed \
  6. --dry-run
  7. # Retry failed task runs that occurred in a specific time range
  8. influx task retry-failed \
  9. --after 2021-01-01T00:00:00Z \
  10. --before 2021-01-01T23:59:59Z