Provider.delete_stream()#

relationalai
#Provider.delete_stream(stream_id: str, model:str) -> None

Delete a stream from a model. Requires the Snowflake user set in your configuration to have the cdc_admin application role.

Parameters#

NameTypeDescription
stream_idstrThe name of the stream to delete, e.g. "<db_name>.<schema_name>.<table_name>".
modelstrName of the model to delete the stream from.

Returns#

None

Example#

Use .delete_stream() to delete a stream from a model:

#import relationalai as rai

app = rai.Provider()
app.delete_stream("my_db.my_schema.my_table", model="MyModel")

See Stream Management for details.

See Also#