Sdílet prostřednictvím


Spark Session - Get Spark Statement

Získá jeden příkaz v rámci relace sparku.

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

Parametry identifikátoru URI

Name V Vyžadováno Typ Description
endpoint
path True

string

Koncový bod pro vývoj pracovního prostoru, například https://myworkspace.dev.azuresynapse.net.

livyApiVersion
path True

string

Platná verze rozhraní API pro požadavek

sessionId
path True

integer

int32

Identifikátor relace.

sparkPoolName
path True

string

Název fondu Spark.

statementId
path True

integer

int32

Identifikátor příkazu.

Odpovědi

Name Typ Description
200 OK

SparkStatement

Success

Příklady

Gets a single statement within a spark session.

Ukázkový požadavek

GET myWorkspace.dev.azuresynapse.net/livyApi/versions/2020-12-01/sparkPools/mySparkPool/sessions/123/statements/123

Ukázková odpověď

{
  "id": 123,
  "code": "fill in here",
  "state": "fill in here",
  "output": null
}

Definice

Name Description
LivyStatementStates
SparkStatement
SparkStatementOutput

LivyStatementStates

Name Typ Description
available

string

cancelled

string

cancelling

string

error

string

running

string

waiting

string

SparkStatement

Name Typ Description
code

string

id

integer

output

SparkStatementOutput

state

LivyStatementStates

SparkStatementOutput

Name Typ Description
data

object

ename

string

evalue

string

execution_count

integer

status

string

traceback

string[]