24Coolant flow to a rack stops. What happens in the next sixty seconds, and what has to be automatic because a human cannot act in time?▼hardNewMicrosoftCoreWeave4 replies◆ premiumA cold plate holds a few tens of grams of water against seven hundred watts, so temperature rises about two degrees a second and the limit arrives in under twenty. What that timescale rules out, the protection layers that act inside it, and the choice that decides whether you lose a job or the hardware.Open full answer →
10Write a producer-consumer pipeline with a bounded queue. What are the three bugs that show up in every first attempt?▼mediumNewAnthropicOpenAI4 repliesunlockedThe queue is four lines and the shutdown is where it goes wrong. One sentinel per consumer rather than one for all of them, an exception path that cannot silently kill a worker, and a bound that must be small enough to actually apply backpressure.Open full answer →