如何从 python 脚本中 delete/clear 来自 Kusto table 的数据?

How to delete/clear data from a Kusto table from a python script?

我们能否使用 Azure 数据资源管理器 Python SDK 在 python 脚本中使用清除或清除从 Kusto table 中删除数据?

我无法使用 azure-kusto-data 或 azure-kusto-ingest 包实现数据删除。有办法实现吗?

您必须使用 KQL 运行 purge queryazure-kusto-data

kusto_client.execute(DB_NAME, purge_query)