> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify-poc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# disable_vectorizer_schedule

> Deactivate or pause automatic scheduling for a vectorizer

Deactivate the scheduled job for a specific vectorizer.

* Temporarily stop the automatic processing of new or updated data
* Can be called with either a vectorizer name (recommended) or ID
* Disabling a schedule does not delete the vectorizer or its configuration

## Samples

### Using vectorizer name

```sql theme={"dark"}
SELECT ai.disable_vectorizer_schedule('public_blog_embeddings');
```

### Using vectorizer ID

```sql theme={"dark"}
SELECT ai.disable_vectorizer_schedule(1);
```

## Arguments

`ai.disable_vectorizer_schedule` can be called in two ways:

### With vectorizer name (recommended)

| Name | Type | Default | Required | Description                                                   |
| ---- | ---- | ------- | -------- | ------------------------------------------------------------- |
| name | text | -       | ✔        | The name of the vectorizer whose schedule you want to disable |

### With vectorizer ID

| Name           | Type | Default | Required | Description                                                         |
| -------------- | ---- | ------- | -------- | ------------------------------------------------------------------- |
| vectorizer\_id | int  | -       | ✔        | The identifier of the vectorizer whose schedule you want to disable |

## Returns

`ai.disable_vectorizer_schedule` does not return a value.
