> For the complete documentation index, see [llms.txt](https://docs.hedge.video/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hedge.video/postlab-classic/drive/throttling.md).

# Throttling

Drive uses all available local bandwidth to upload and download your files by default. For some, this behavior's a bit much as it gets in the way of other usage on your local network (e.g. for co-workers or backups).

If this is true in your case, you can easily throttle Drive's connection from the command line (`Terminal.app`).

First, connect Drive. Then use one, or both, of the following commands in Terminal. You can specify the data rate as `(N)KB` | `MB` | `GB` | `TB`.

In these examples, we'll throttle:&#x20;

* The upload speed to `2MB` (2MB/s = 16 Mbps).
* The download speed to `12MB` (12MB/s = 96 Mbps).

{% tabs %}
{% tab title="Uploading" %}
`/Applications/Postlab.app/Contents/Resources/postlab-drive --instance 1 config --set --local --ObjectScheduler.MaxUploadRate 2MB`
{% endtab %}

{% tab title="Downloading" %}
`/Applications/Postlab.app/Contents/Resources/postlab-drive --instance 1 config --set --local --ObjectScheduler.MaxDownloadRate 16MB`
{% endtab %}
{% endtabs %}

{% hint style="info" %}
You can use something like [DuckDuckGo's Data Transfer Rate calculator](https://duckduckgo.com/?q=mbps+to+mb+s+converter) to convert between megabits per second and megabytes per second.
{% endhint %}

Throttling Drive's connection will persist for you on your local Mac, but you can use this command to confirm your Drive upload or download configuration:

`/Applications/Postlab.app/Contents/Resources/postlab-drive --instance 1 config --list --local`

### Removing Throttling

To remove any throttling from your local Mac on Drive, use one of these commands, setting the data rate to `unlimited`.

{% tabs %}
{% tab title="Uploading" %}
`/Applications/Postlab.app/Contents/Resources/postlab-drive --instance 1 config --set --local --ObjectScheduler.MaxUploadRate unlimited`
{% endtab %}

{% tab title="Downloading" %}
`/Applications/Postlab.app/Contents/Resources/postlab-drive --instance 1 config --set --local --ObjectScheduler.MaxDownloadRate unlimited`
{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.hedge.video/postlab-classic/drive/throttling.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
