Papers for

virtualization platform engineers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Memory compression cuts high-fanout agent workloads dramatically

Memory Compression for High-Fanout Agent Sandboxes

Abstract: High-fanout agent workloads create a growing memory bottleneck because a single task may spawn many concurrent sandbox sessions. Yet these sandboxes are far from independent: they originate from a shared template and execute related trajectories, exposing substantial template-relative and cross-sandbox memory redundancy. Conventional memory compression is poorly matched to this setting in three fundamental dimensions: how to compress, because they fail to exploit similarity across non-identical sandbox pages; what to compress, because they control page-fault overhead through conservative page selection; and when to compress, because compression is either triggered by memory pressure or performed without awareness of agent execution phases. We present AgentZip, the first memory compression system designed specifically for AI-agent sandboxes. AgentZip introduces compression mechanisms that exploit both the template-relative and cross-sandbox redundancy. It broadens the compression scope to any page with a profitable representation and shifts overhead control from compression-time page selection to restore-time prefetching. It further aligns expensive compression with LLM waiting periods to avoid interfering with foreground tool execution. Across LLM training and inference workloads, AgentZip reduces sandbox-owned memory by up to 8.7x, compared with 2.1x for the Linux configuration. Restore prefetching and agent-execution-aware scheduling reduce the slowdown of aggressive compression from as high as 3.1x to 1.40x while retaining nearly all of its memory-saving benefit.

Thu 10 SeptArtificial IntelligenceOperating Systems
The gist
Agent workloads that create many sandboxed sessions at once use a lot of memory, slowing down computers. The authors show that memory used by these sandboxes has much overlap and can be compressed better by considering their similarities. Their system, AgentZip, compresses this memory more effectively by timing compression during natural pauses and cleverly choosing which memory to compress. This reduces memory use by up to 8.7 times and limits slowdowns to acceptable levels compared with existing methods.
Open 2609.11294v1