-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display cell run history #2898
Comments
I've wanted to add another helper panel that just lists out a history of all the cell executions and their times and status (success/failure) in a list. That might help solve this as well? |
That absolutely works. LMK if there's an existing issue so I can merge it |
I haven't seen one, but this relates: #974. I am unsure if its a stack/history of runs or a flame graph (or both). |
@Light2Dark i agree the top one is better. i could imagine each run being closed by default (except maybe the top one) and you can expand to see the cell that were run, times, and result (just like you have designed). for the chart, I am not sure what libraries out there exist/would be good for this, but we do already use vega-lite internally. you could maybe create a chart using the vega spec. here is a sample chart in future, we could add zooming on the chart and panning to filter the list of cells. |
wow that looks great! i wonder if its would be better to stack them. it wouldn't be aligned then, but you would get:
You can also add higlight-on-hover synced when hovered over a bar or the cell summary |
hmm, do you have any sample / inspo on the stacked view? Is that a timeline view? another thing, I'm fixing the chart width and the library is smart enough to readjust each bar's width proportionally. We could put the chart underneath the trace rows to save horizontal space (and maybe make this option a config).
yeah that's ideal, that will require some deep integration with vega-lite that I'm not sure is possible. But I'll explore it. |
cool! I think it's similar to what I've done, since they clamp the total width. I'm exploring putting it below the trace rows. I found a very nice gantt chart that does a lot of what we want, Online Editor |
thats great! sounds good
Wow i can't believe this was all done with vega. thats pretty impressive. We should definitely use some of it if we can. We may end up hitting a roadblock when wanting to integrate it with some of our React components (tooltips, anchors, icons) |
Description
I'm working with a large dataset and occasionally running into OOM errors. When the process is killed, there no way on the frontend to determine the last run cell (or cell that was running before OOM)
Suggested solution
Alternative
No response
Additional context
Happy to put this in myself, just leaving a bookmark. Small QOL improvement
The text was updated successfully, but these errors were encountered: