你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Spark Session - Get Spark Statement
获取 Spark 会话中的单个语句。
GET {endpoint}/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements/{statementId}
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
endpoint
|
path | True |
string |
工作区开发终结点,例如 |
livy
|
path | True |
string |
请求的有效 api-version。 |
session
|
path | True |
integer int32 |
会话的标识符。 |
spark
|
path | True |
string |
Spark 池的名称。 |
statement
|
path | True |
integer int32 |
语句的标识符。 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
成功 |
示例
Gets a single statement within a spark session.
示例请求
GET myWorkspace.dev.azuresynapse.net/livyApi/versions/2020-12-01/sparkPools/mySparkPool/sessions/123/statements/123
示例响应
{
"id": 123,
"code": "fill in here",
"state": "fill in here",
"output": null
}
定义
名称 | 说明 |
---|---|
Livy |
|
Spark |
|
Spark |
LivyStatementStates
名称 | 类型 | 说明 |
---|---|---|
available |
string |
|
cancelled |
string |
|
cancelling |
string |
|
error |
string |
|
running |
string |
|
waiting |
string |
SparkStatement
名称 | 类型 | 说明 |
---|---|---|
code |
string |
|
id |
integer |
|
output | ||
state |
SparkStatementOutput
名称 | 类型 | 说明 |
---|---|---|
data |
object |
|
ename |
string |
|
evalue |
string |
|
execution_count |
integer |
|
status |
string |
|
traceback |
string[] |