# Runs and builds

An Actor is a combination of source code and various settings in a Docker container. To run, it must be built first.

## Builds

An Actor build consists of the source code built as a Docker image, making the Actor ready to run on the Apify platform.

What is a Docker image?

A Docker image is a lightweight, standalone, executable package of software that includes everything needed to run an application: code, runtime, system tools, system libraries, and settings. For details, see [Docker's website](https://www.docker.com/resources/what-container/).

When running an Actor, you can choose what build to run by selecting a tag or number in the run options.

![Actor run options](/assets/images/actor-run-options-f5630fa718207fa213862d50094464f1.svg)

### Build numbers

With every new version of an Actor, a new build is created. Each Actor build has its number. For example, **1.2.34**.

Each build might have different features, input, or output. By fixing the build to an exact version, you make sure that you won't be affected by a breaking change in a new Actor version. However, you will lose updates.

### Build tags

On top of the number, some builds are also tagged. For example, *latest* or *beta*.

Tags make it easier to specify which build to use when running an Actor. To reassign a tag to a different build, use the [Actor update](https://pr-2464.preview.docs.apify.com/api/v2/act-put.md) API endpoint.

## Runs

When you start an Actor, an Actor run is created. An Actor run is a Docker container created from the build's Docker image with dedicated resources, such as CPU, memory, and disk space. For details, see [Usage and resources](https://pr-2464.preview.docs.apify.com/platform/actors/running/usage-and-resources.md).

Each run has its own default [storages](https://pr-2464.preview.docs.apify.com/platform/storage.md) assigned, which it might use:

* [Key-value store](https://pr-2464.preview.docs.apify.com/platform/storage/key-value-store.md) containing the input and enabling Actor to store other files.
* [Dataset](https://pr-2464.preview.docs.apify.com/platform/storage/dataset.md) enabling Actor to store the results.
* [Request queue](https://pr-2464.preview.docs.apify.com/platform/storage/request-queue.md) to maintain a queue of URLs to be processed.

### View run logs

To view what's happening while the Actor is running:

1. In Apify Console, go to the Actor's page.
2. In the **Runs** tab, select the run you want to inspect.
3. Select the **Log** tab.

![Actor run details](/assets/images/actor-run-details-3cc2e9a8b169b68c329a83dcab4f81fa.svg)

### Origin

Both **Actor runs** and **builds** have the **Origin** field indicating how the Actor run or build was invoked, respectively. The origin is displayed in Apify Console and available via [API](https://docs.apify.com/api/v2/actor-run-get) in the `meta.origin` field.

| Name          | Origin                                                                                          |
| ------------- | ----------------------------------------------------------------------------------------------- |
| `DEVELOPMENT` | Manually from Apify Console in the Development mode (own Actor)                                 |
| `WEB`         | Manually from Apify Console in "normal" mode (someone else's Actor or task)                     |
| `API`         | From [Apify API](https://docs.apify.com/api)                                                    |
| `CLI`         | From [Apify CLI](https://docs.apify.com/cli/)                                                   |
| `SCHEDULER`   | Using a schedule                                                                                |
| `WEBHOOK`     | Using a webhook                                                                                 |
| `ACTOR`       | From another Actor run                                                                          |
| `STANDBY`     | From [Actor Standby](https://pr-2464.preview.docs.apify.com/platform/actors/running/standby.md) |

## Lifecycle

Each run and build starts with the initial status **READY** and goes through one or more transitional statuses to one of the terminal statuses.

<!-- -->

***

| Status     | Type         | Description                                 |
| ---------- | ------------ | ------------------------------------------- |
| READY      | initial      | Started but not allocated to any worker yet |
| RUNNING    | transitional | Executing on a worker machine               |
| SUCCEEDED  | terminal     | Finished successfully                       |
| FAILED     | terminal     | Run failed                                  |
| TIMING-OUT | transitional | Timing out now                              |
| TIMED-OUT  | terminal     | Timed out                                   |
| ABORTING   | transitional | Being aborted by the user                   |
| ABORTED    | terminal     | Aborted by the user                         |

### Aborting runs

You can abort runs with the statuses **READY**, **RUNNING**, or **TIMING-OUT** in two ways:

* *Immediately* - this is the default option. The Actor process is killed immediately with no grace period.
* *Gracefully* - the Actor run receives a signal about aborting via the `aborting` event and is granted a 30-second window to finish in-progress tasks before getting aborted. This is helpful in cases where you plan to resurrect the run later because it gives the Actor a chance to persist its state. When resurrected, the Actor can restart where it left off.

You can abort a run in Apify Console using the **Abort** button or via API using the [Abort run](https://pr-2464.preview.docs.apify.com/api/v2/actor-run-abort-post.md) endpoint.

### Resurrection of finished run

Any Actor run in a terminal state, i.e., run with status **FINISHED**, **FAILED**, **ABORTED**, and **TIMED-OUT**, might be resurrected back to a **RUNNING** state. This is helpful in many cases, for example, when the timeout for an Actor run was too low or in case of an unexpected error.

The whole process of resurrection looks as follows:

* Run status will be updated to **RUNNING**, and its container will be restarted with the same storage (the same behavior as when the run gets migrated to the new server).
* Updated duration will not include the time when the Actor was not running.
* Timeout will be counted from the point when this Actor run was resurrected.

Resurrection can be performed in Apify Console using the **resurrect** button or via API using the [Resurrect run](https://pr-2464.preview.docs.apify.com/api/v2/act-run-resurrect-post.md) API endpoint.

Settings adjustments

You can also adjust timeout and memory or change Actor build before the resurrection. This is especially helpful in case of an error in the Actor's source code as it enables you to:

1. Abort a broken run
2. Update the Actor's code and build the new version
3. Resurrect the run using the new build

### Data retention

Apify securely stores your ten most recent runs indefinitely, ensuring your records are always accessible. All **Actor runs** beyond the latest ten are deleted along with their default storages (Key-value store, Dataset, Request queue) after the data retention period based on your [subscription plan](https://apify.com/pricing).

**Actor builds** are deleted only when they are *not tagged* and have not been used for over 90 days.

## Share

Share your Actor runs with other Apify users via the [access rights](https://pr-2464.preview.docs.apify.com/platform/collaboration.md) system.
