You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All Jupyter Scheduler API calls (create_job, list_jobs, etc.) are synchronous, blocking the event loop during file I/O and database operations. This affects responsiveness.
Proposed solution
Convert all Jupyter Scheduler methods to be async.
Problem
All Jupyter Scheduler API calls (
create_job,list_jobs, etc.) are synchronous, blocking the event loop during file I/O and database operations. This affects responsiveness.Proposed solution
Convert all Jupyter Scheduler methods to be async.