> ## 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.

# scheduling_default

> Use platform-specific default scheduling configuration for vectorizers

export const CLOUD_LONG = 'Tiger Cloud';

Use the platform-specific default scheduling configuration.

On {CLOUD_LONG}, the default is `ai.scheduling_timescaledb()`. On self-hosted, the default is `ai.scheduling_none()`. A TimescaleDB background job is used to periodically trigger a cloud vectorizer on {CLOUD_LONG}. This is not available in a self-hosted environment.

## Samples

```sql theme={"dark"}
SELECT ai.create_vectorizer(
    'my_table'::regclass,
    scheduling => ai.scheduling_default(),
    -- other parameters...
);
```

## Arguments

This function takes no arguments.

## Returns

A JSON configuration object that you can use in `ai.create_vectorizer`.
