Skip to content
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

Speeding up build/run requests with a pool of idle docker containers #463

Closed
wants to merge 2 commits into from

Conversation

ffissore
Copy link

This is a possible solution to #457

I've sped up the compilation/execution of snippets by using previously started and idle docker containers, rather than starting a new one for each request.
On my dev box, this new version runs a "hello world" in ~600 ms, while the master version takes ~1.3 secs. Since rustc takes ~400 ms, the overhead of docker is reduced to ~200 ms per request.

How it works
A pool of idle docker containers is started at playground start up. The default size is 10 containers per channel.
By sleeping for a long time in entrypoint.sh, containers stay idle.
When a request is handled, a container is removed from the pool. Cargo is called through cargo.sh, which cares of exporting env vars and killing the container once it's done. Thus, there's no need to drop a container that has been used.
However idle containers in the pool need to me manually terminated: DockerContainers Drop impl takes care of that, and kills them in parallel.
To ensure that drop is called when server shuts down, I've used crate ctrlc to install a shutdown hook

Known issues
Benchmarking the /execute api with siege, the new pool version is slightly slower than the master one: the former replies to ~4.5 req/sec, the latter to ~5.5 req/s
Also, because there's no way to gracefully shutdown iron (see hyperium/hyper#338), if the server is terminated while receiving lots of requests, there's a chance that some docker containers will survive the shutdown: they'll have to be manually terminated.

On a side note, I'm new to rust, so any feedback is welcome

@ffissore
Copy link
Author

Also, this fix is for Sandbox compile and execute methods only: the other methods (format, clippy...) are unchanged

@shepmaster
Copy link
Member

Thank you! As a fair warning, it will probably take me a little while to dig in here. If I haven't usefully commented in a few weeks, feel free to ping me again!

@ffissore
Copy link
Author

As requested, a kind ping to check this PR. I've just rebased it with the latest master

started and idle docker containers, rather than starting a new one for
each request.
By sleeping for a long time in entrypoint.sh, containers stay idle.
Cargo is called through cargo.sh, which cares of exporting env vars
and killing the container once it's done. Thus, there's no need to drop
a container that has been used.
However idle containers need to me manually terminated:
DockerContainers Drop impl takes care of that.
the playground
Also containers are now stopped in parallel
@ffissore
Copy link
Author

Hello there, another kind ping to check this PR. I've just rebased it with the latest master

@ffissore ffissore closed this Nov 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants