Skip to main content
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

SELECT ai.disable_vectorizer_schedule('public_blog_embeddings');

Using vectorizer ID

SELECT ai.disable_vectorizer_schedule(1);

Arguments

ai.disable_vectorizer_schedule can be called in two ways:
NameTypeDefaultRequiredDescription
nametext-The name of the vectorizer whose schedule you want to disable

With vectorizer ID

NameTypeDefaultRequiredDescription
vectorizer_idint-The identifier of the vectorizer whose schedule you want to disable

Returns

ai.disable_vectorizer_schedule does not return a value.