milenkovicm opened a new pull request, #1543:
URL: https://github.com/apache/datafusion-ballista/pull/1543
# Which issue does this PR close?
Closes #.
# Rationale for this change
Task related information is important to detect issues like skewed
partitions, we already have task related information collected.
# What changes are included in this PR?
Added ask related information to scheduler rest api. Stages will now display
important information for finished tasks
```bash
curl http://localhost:50050/api/job/v4LClLC/stages
```
```json
{
"stages": [
{
"stage_id": "3",
"stage_status": "Successful",
"input_rows": 30004936,
"output_rows": 30442890,
"elapsed_compute": "24.32s",
"tasks": [
{
"task_id": 16,
"partition_id": 0,
"scheduled_time": 1775318987580,
"launch_time": 1775318987581,
"start_exec_time": 1775318987582,
"end_exec_time": 1775318988017,
"total_exec_time": 435,
"finish_time": 1775318988018,
"output_rows": 40
},
]}
}
```
# Are there any user-facing changes?
no
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]