Open
Description
Currently, when experimental multiple workers are enabled for Playground CLI, we:
- Initialize and run the Blueprint on the first worker
- Copy the first worker's
/internal
dir to the rest of the workers
This works in many cases, but it is technically possible that /internal/shared
can change later. And if that happens, those changes would not be shared with all workers but rather isolated to a single worker.
Let's fix this.
One possibility is to mount a real temp dir as /internal/shared
, but if we do that, it might be worth mounting such a temp dir as /
because it would make our entire VFS shareable between workers. That way we could use multiple workers regardless of whether the user manually mounts a real dir as /wordpress
.
cc @adamziel who brought up this issue.
Metadata
Metadata
Assignees
Type
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
brandonpayton commentedon Jun 30, 2025
I'm assigning this to myself so I don't forget about it. Please feel free to take it if you want to work on it in the meantime.