Class: HotCell::Slot
- Inherits:
-
Struct
- Object
- Struct
- HotCell::Slot
- Defined in:
- lib/hot_cell/slot.rb
Overview
Slots are a consequence of the concurrency limit rather than something to configure. At most
concurrency workers run, so number them and hand each worker its number at fork. There is no
leasing: a slot is always free when a worker starts, because the thing that bounds workers is the same
thing that counts slots. A request never waits for a slot, it waits in the cell's queue.
A slot has one directory per request and it is that request's $HOME. It is created when the
request starts and removed when the request ends, so nothing a tool writes under $HOME reaches the
next request on this slot. The name is stable and the directory behind it is not, which is why a
reused worker reports the same path twice.
This directory used to survive, to give a tool with an expensive per-user profile a warm one. That is
withdrawn. What a tool reads from $HOME is configuration, and for the toolchains a cell carries
configuration is executable: ImageMagick runs the command lines in delegates.xml and applies the
rights in policy.xml, both read from $HOME/.config/ImageMagick. A surviving home therefore let an
input that achieved code execution reconfigure every later request on the slot, which is the bound
max_requests_per_worker: 1 is supposed to hold. adr/0003 records the reversal and adr/0002 the
reasoning it supersedes.
There is one directory and not two. A request's staged inputs and outputs are named inside $HOME
rather than in a scratch directory of their own, because the two had the same lifetime and the same
owner once the home stopped surviving. Staging used to create its directory on demand, which is what
kept a descriptor-only operation from paying for one; $HOME has to exist for every request either
way, so that laziness bought nothing and is gone with it.
The filesystem behaviour belongs here rather than in the two processes that call it. The directory is removed from both — the worker before it answers, the supervisor at finish and at reap — so the guard and the swallowed SystemCallError are a rule that has to hold on both sides of a fork, and it had a copy on each.
Instance Attribute Summary collapse
-
#home ⇒ Object
Returns the value of attribute home.
-
#number ⇒ Object
Returns the value of attribute number.
Class Method Summary collapse
Instance Method Summary collapse
-
#discard_home ⇒ Object
The supervisor renames rather than deletes, and that is a scheduling decision..
- #make_home ⇒ Object
-
#prepare ⇒ Object
Nothing here is created at boot, because nothing survives a request.
-
#remove_home ⇒ Object
Returns whether the directory is gone, and every caller logs when it is not..
-
#sweep ⇒ Object
Unlinks whatever discard_home renamed out of the way.
Instance Attribute Details
#home ⇒ Object
Returns the value of attribute home
35 36 37 |
# File 'lib/hot_cell/slot.rb', line 35 def home @home end |
#number ⇒ Object
Returns the value of attribute number
35 36 37 |
# File 'lib/hot_cell/slot.rb', line 35 def number @number end |
Class Method Details
.build(workspace, number) ⇒ Object
36 37 38 |
# File 'lib/hot_cell/slot.rb', line 36 def self.build(workspace, number) new number, File.join(workspace, number.to_s, "home") end |
Instance Method Details
#discard_home ⇒ Object
The supervisor renames rather than deletes, and that is a scheduling decision.
How long a recursive delete takes is chosen by the operation that filled the directory. Nothing bounds the number of entries — RLIMIT_FSIZE caps one file, not a million tiny ones — so an input that makes a tool write an enormous tree and then hang buys a deletion the supervisor performs synchronously, after the kill, inside the loop enforcing every other request's deadline.
A rename within one filesystem is O(1) and takes the tree out of the way. A worker sweeps it later, after it has answered and before it reports itself idle — see Worker#serve, which is the one window where the unlinking costs nobody's latency.
The destination carries a random suffix rather than a counter, because the tool that filled the directory runs as this user and can write to the slot's workspace. A predictable name lets it pre-create a colliding entry, fail the rename, and send the supervisor into the recursive delete the rename exists to avoid. On any rename failure the tree is left where it is, for a later worker's own cleanup to remove off the hot path. The supervisor never deletes a tree inline, whatever goes wrong.
80 81 82 83 84 85 86 87 |
# File 'lib/hot_cell/slot.rb', line 80 def discard_home return true unless Dir.exist?(home) File.rename home, "#{home}.discarded-#{Process.pid}-#{SecureRandom.hex(8)}" true rescue SystemCallError false end |
#make_home ⇒ Object
40 41 42 43 |
# File 'lib/hot_cell/slot.rb', line 40 def make_home FileUtils.mkdir_p home, mode: 0o700 home end |
#prepare ⇒ Object
Nothing here is created at boot, because nothing survives a request. This only clears what an earlier boot left behind.
91 92 93 94 95 |
# File 'lib/hot_cell/slot.rb', line 91 def prepare # Both, rather than short-circuiting: a home that could not be removed must not stop the sweep. cleared = remove_home sweep && cleared end |
#remove_home ⇒ Object
Returns whether the directory is gone, and every caller logs when it is not.
A home that was already removed, or that another process removed between the check and the unlink, is the outcome this wants either way, so that answers true. Failing to remove one is a different fact and it used to arrive as the same swallowed nil. This is the call that deletes a request's staged input and output before the caller is told anything, so a failure leaves those bytes on the tmpfs for the life of the container — and a sibling worker can cause one, by creating entries under the tree while remove_entry walks it. Same uid, no defence, and it was silent.
It still cannot raise. Worker#serve calls this from an ensure, where a raise would replace the caller's response with a crash, and the supervisor calls discard_home from finish and reap, where nothing above rescues anything and a raise stops the cell with every request it holds.
57 58 59 60 61 62 |
# File 'lib/hot_cell/slot.rb', line 57 def remove_home FileUtils.remove_entry home if Dir.exist?(home) true rescue SystemCallError false end |
#sweep ⇒ Object
Unlinks whatever discard_home renamed out of the way. Partial progress is fine: a sweep killed part-way leaves fewer entries for the next one, so this converges rather than repeating.
99 100 101 102 103 104 |
# File 'lib/hot_cell/slot.rb', line 99 def sweep Dir.glob("#{home}.discarded-*").each { |path| FileUtils.remove_entry path } true rescue SystemCallError false end |