次の方法で共有


Spark Session - Get Spark Statement

Spark セッション内の 1 つのステートメントを取得します。

GET {endpoint}/livyApi/versions/{livyApiVersion}/sparkPools/{sparkPoolName}/sessions/{sessionId}/statements/{statementId}

URI パラメーター

名前 / 必須 説明
endpoint
path True

string

ワークスペース開発エンドポイント (例: https://myworkspace.dev.azuresynapse.net )。

livyApiVersion
path True

string

要求の有効な api-version。

sessionId
path True

integer

int32

セッションの識別子。

sparkPoolName
path True

string

Spark プールの名前。

statementId
path True

integer

int32

ステートメントの識別子。

応答

名前 説明
200 OK

SparkStatement

Success

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
}

定義

名前 説明
LivyStatementStates
SparkStatement
SparkStatementOutput

LivyStatementStates

名前 説明
available

string

cancelled

string

cancelling

string

error

string

running

string

waiting

string

SparkStatement

名前 説明
code

string

id

integer

output

SparkStatementOutput

state

LivyStatementStates

SparkStatementOutput

名前 説明
data

object

ename

string

evalue

string

execution_count

integer

status

string

traceback

string[]