是否可以通过 REST 运行 databricks 笔记本的单元格 API?
Is it possible to run a cell of a databricks notebook via REST API?
我想通过 REST API 自动 运行 笔记本单元,以提高 dev tool we created 的可用性。这在数据块中可能吗?
是的,可以使用较旧的 API 1.2 版。您需要使用 /api/1.2/contexts/create API (it requires cluster ID and what language is used), and then you can submit code using the /api/1.2/commands/execute API, and get command execution status using /api/1.2/commands/status API 创建执行上下文。请注意,您需要保持上下文以相互依赖地执行多个命令...
您可以在 Databricks Terraform 提供程序的源代码中使用 Go 语言找到 an example 此类执行
我想通过 REST API 自动 运行 笔记本单元,以提高 dev tool we created 的可用性。这在数据块中可能吗?
是的,可以使用较旧的 API 1.2 版。您需要使用 /api/1.2/contexts/create API (it requires cluster ID and what language is used), and then you can submit code using the /api/1.2/commands/execute API, and get command execution status using /api/1.2/commands/status API 创建执行上下文。请注意,您需要保持上下文以相互依赖地执行多个命令...
您可以在 Databricks Terraform 提供程序的源代码中使用 Go 语言找到 an example 此类执行