Description
Currently, getTasksStatus returns all the tasks that match a query. For very large jobs this causes issues since the downloaded data can be on the order of several MB, thus slowing down the page loads.
Update getTasksStatus to be more pagination friendly. Doing this will involve the following changes: Update the ScheduleStatusResult struct to return a sub-set of a list instead of the whole list. To accomplish this we can add a startIndex, endIndex, size fields to the ScheduleStatusResult. Further, we can add optional start and limit fields to getTasksStatus, to facilitate incremental loading by the client.
Attachments
Issue Links
- duplicates
-
AURORA-521 Add pagination to getTasksStatus
- Resolved