Skip to main content

22 docs tagged with "Temporal CLI"

View all tags

Activity Operations

Learn how to manage a running Activity Execution with commands to Pause, Unpause, Reset, Update Options, Request Cancel, Terminate, and Delete.

Delete an Activity

Terminate a Standalone Activity Execution if it's still running, then remove its record from the Temporal Service asynchronously.

Pause an Activity

Stop an Activity's retries without closing the Execution, detect a Pause from Activity code, and resume it later with Unpause.

Request Cancel for an Activity

Ask an Activity Execution to close gracefully so your code can clean up, and what to expect when an attempt is already running.

Reset an Activity

Clear an Activity's retry state and schedule a fresh attempt, including what happens when an attempt is already running.

Temporal CLI

The Temporal CLI provides terminal access to Temporal Services for managing, monitoring, and debugging Workflows and Activities, plus embedded development support.

Temporal CLI env command reference

Temporal CLI 'env' commands allow the configuration, setting, deleting, and listing of environmental properties, making it easy to manage Temporal Server instances.

Temporal CLI operator command reference

Operator commands in Temporal allow actions on Namespaces, Search Attributes, Clusters and Nexus Endpoints using specific subcommands. Execute with "temporal operator [command] [subcommand] [options]".

Temporal CLI schedule command reference

Temporal's Schedule commands allow users to create, update, and manage Workflow Executions seamlessly for automation, supporting commands for creation, backfill, deletion, and more.

Temporal CLI server command reference

Manage your Temporal Server easily with CLI commands. Start a local server using `temporal server start-dev` and access the Web UI at http://localhost:8233. Customize with multiple options.

Temporal CLI task-queue command reference

Temporal Task Queue commands facilitate operations like describing poller info, displaying partitions, fetching compatible Build IDs, and determining Build ID reachability for effective Workflow and Activity management.

Temporal CLI workflow command reference

Temporal Workflow commands enable operations on Workflow Executions, such as cancel, count, delete, describe, execute, list, update-options, query, reset, reset-batch, show, signal, stack, start, terminate, trace, and update, enhancing efficiency and control.

Terminate an Activity

Forcefully close a Standalone Activity Execution immediately, with no opportunity for your Activity code to clean up first.

Unpause an Activity

Resume a Paused Activity Execution so its next attempt starts immediately, with options to reset retry state as it resumes.

Update Activity Options

Change an Activity's timeouts, Retry Policy, or Task Queue while it runs, without restarting the Execution or losing retry state.