> ## Documentation Index
> Fetch the complete documentation index at: https://www.octoparse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Standard vs boost mode

> Understand the difference between Standard Mode and Boost Mode for Octoparse cloud extraction.

Standard Mode and Boost Mode are cloud extraction options for running Octoparse tasks. They are designed for different performance needs.

Use Standard Mode for regular cloud extraction. Use Boost Mode when the task and plan support higher-speed or higher-concurrency execution.

## How it works

### Standard Mode

In Standard Mode, the entire task runs on a single cloud node without being divided. All data records are collected sequentially by that one node. This keeps the workflow simple and predictable, but means that if the run is interrupted — due to a website error, or a timeout — the task has to restart from the beginning. For large datasets, a single long-running node also increases the risk of mid-run failures.

Standard Mode is best suited for small datasets, test runs, or websites that only allow one active login session at a time.

### Boost Mode

In Boost Mode, the task is automatically split into multiple sub-tasks. Each sub-task is assigned to one cloud node and collects only a portion of the total data. The number of sub-tasks depends on the specific task configuration.

This parallel approach offers several advantages:

* **Faster completion** — Sub-tasks run concurrently, reducing overall run time significantly.
* **Lower risk of data loss** — Each sub-task only handles a smaller portion of data, so a mid-run failure affects fewer records.
* **Independent recovery** — If one sub-task fails, it can be restarted individually without affecting or re-running the others, saving significant recovery time.

Boost Mode is recommended for large-scale data collection where speed and resilience are priorities.

## Comparison

| Area              | Standard Mode                                       | Boost Mode                                                               |
| ----------------- | --------------------------------------------------- | ------------------------------------------------------------------------ |
| How it works      | One task runs on a single cloud node, no sub-tasks  | Task is split into multiple sub-tasks, each run by a separate cloud node |
| Best for          | Small datasets, testing, or single-session websites | Large-scale extraction where speed and resilience matter                 |
| Performance       | Normal cloud execution                              | Higher-speed parallel execution                                          |
| Failure impact    | A failure interrupts the entire task                | Only the affected sub-task is interrupted; others continue unaffected    |
| Recovery          | Must restart the full task                          | Restart only the failed sub-task                                         |
| Cost/availability | Depends on plan                                     | May require specific plan or usage allowance                             |
| Recommended use   | For stable, smaller tasks                           | Use when speed matters and the task supports concurrent execution        |

## When to use Standard Mode

Use Standard Mode when:

* You are running a normal [scheduled task](/docs/platform/schedules)
* Speed is not the main constraint
* You want a stable default cloud run mode
* The dataset size is moderate
* You are still validating task reliability
* The target website only allows one active session at a time

Standard Mode is usually the starting point for cloud extraction.

## When to use Boost Mode

Use Boost Mode when:

* You need faster extraction
* The task collects a larger dataset
* The task can safely run with higher concurrency
* You have already tested the workflow
* Your plan supports the mode

Boost Mode is most useful when the bottleneck is run time and the task can handle faster execution without triggering site issues.

## What to check before using Boost Mode

Before switching a task to Boost Mode, check:

* The target website can handle faster requests or higher activity
* Pagination and detail page workflows remain stable
* Anti-bot or rate-limit issues do not increase
* Output quality remains consistent
* Your plan supports the required cloud resources

<Warning>
  Faster extraction is not always better. Some websites are more likely to fail, block requests, or return incomplete data when a task runs too aggressively.
</Warning>

## Recommended workflow

<Steps>
  <Step title="Run locally first">
    Confirm the task captures the correct fields and page flow.
  </Step>

  <Step title="Run in Standard Mode">
    Validate that the task works in the cloud environment.
  </Step>

  <Step title="Try Boost Mode when needed">
    Use Boost Mode only after the task is stable and speed is a real requirement.
  </Step>

  <Step title="Compare output">
    Check record count, missing fields, duplicates, and errors after switching modes.
  </Step>
</Steps>
