Managed Spark API, gRPC: JobService.ListLog
Returns a log for Spark job.
gRPC request
rpc ListLog (ListJobLogRequest) returns (ListJobLogResponse)
ListJobLogRequest
{
"cluster_id": "string",
"job_id": "string",
"page_size": "int64",
"page_token": "string"
}
|
Field |
Description |
|
cluster_id |
string Required field. ID of the Spark cluster. |
|
job_id |
string Required field. ID of the Spark job to return. |
|
page_size |
int64 The maximum length of job output per papge that should be returned. |
|
page_token |
string Page token. Set |
ListJobLogResponse
{
"content": "string",
"next_page_token": "string"
}
|
Field |
Description |
|
content |
string Requested part of Spark Job log. |
|
next_page_token |
string This token allows you to get the next page of results for ListLog requests, |