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
{{ message }}
This repository was archived by the owner on Jul 3, 2023. It is now read-only.
I noticed the create_demo_projects.sh script was stuck without any feedback on stdout during some Docker builds. Digging deeper, I noticed this in the manager logs (can happen due to a lot of docker builds):
[2023-04-17T19:26:46Z ERROR dbsp_pipeline_manager::compiler] compiler task failed; error: 'error returned from database: (code: 13) database or disk is full'
This error however doesn't cause the client to exit from the looks of it (demo-name/run.py seemed to be stuck in project.compile()).
It looks the default timeout is to wait practically forever for the compilation to finish (sys.maxsize):
class DBSPProject:
...
def compile(self, *, timeout: float = sys.maxsize):