Skip to main content

drop_collection_function()

Addedv2.6.x

This operation drops an existing function from the collection.

📘Notes

This does not apply to external collections.

Request syntax

client.drop_collection_function(
collection_name: str,
function_name: str,
timeout: float = None,
**kwargs
)

PARAMETERS:

  • collection_name (str) -

    [REQUIRED]

    The name of the collection.

  • function_name (str) -

    [REQUIRED]

    The name of the function to drop.

  • timeout (float | None) -

    The timeout duration for this operation. Setting this to None indicates that this operation timeouts when any response arrives or any error occurs.

  • kwargs (dict) -

    Optional additional parameters.

RETURN TYPE:

NoneType

EXCEPTIONS:

  • MilvusException

    This exception will be raised when any error occurs during this operation.

Example

from pymilvus import MilvusClient

client = MilvusClient(
uri="YOUR_CLUSTER_ENDPOINT",
token="YOUR_CLUSTER_TOKEN"
)

client.drop_collection_function(
collection_name="my_collection",
function_name="bm25",
)