live wire
IBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docsIBM makes watsonx Orchestrate AgentOps, custom LLM judging and Bedrock-agent discovery generally availableIBMSchemaGate 0.1.45 fixes broken Oracle ADB wallet connections and an OCI stack pinned 28 releases behindSchemaGatePDI’s Amazon Quick procurement agent grounds spend answers in vendor, category and contract contextAWS Business Intelligence BlogBigQuery’s ML.METRICS example returns 0.84 accuracy but 0.30 macro-F1 on the same 100-row classification queryGoogle Cloud BigQuery docsSchemaGate 0.1.44 auto-selects sentence embeddings, lifting bundled-schema retrieval from 90/98 to 93/98SchemaGateSchemaGate 0.1.43 adds read-only SQL execution with per-principal table checks—and documents unauthenticated client assertionsSchemaGateDatabox adds reusable AI Analyst Skills with personal/company scope, auto-matching and marketplace installsDataboxFabric previews an AI builder for data-agent instructions, source guidance and example queriesMicrosoft FabricDatabricks trains data-agent retriever to stop early or spend bounded extra search steps, reporting 5.8-second latencyDatabricksThoughtSpot adds SpotterCode coding agent to its Visual Embed PlaygroundThoughtSpotLongMemEval-S audit: 67–73% of restore-fixable 80k-budget errors came from evicted evidence under three policiesarXivSchemaGate 0.1.42 adds dimension-aware retrieval and fixes complex multi-table SQL promptsSchemaGateSnowflake agent toolsets can silently drop inherited tools when callers lack accessSnowflake DocumentationLooker’s VS Code extension reaches GA with MCP-assisted LookML generation, editing and validationGoogle Cloud Looker release docs
nl2sql.ai
guideDEPLOYMENT GUIDE

Snowflake’s gVisor migration makes package compatibility a sandbox-design problem

A 500× memory-map regression and an ELF loader bug show why running arbitrary Python safely takes more than a syscall allowlist.

Old allowlist sandbox versus gVisor sandbox.
Side by side: what changed
By The News Desk· Sep 7, 2026the quick take — two AI hosts go live when you do

Snowflake’s rewrite of the Snowpark execution sandbox is useful beyond Snowpark itself. It shows what happens when a data platform moves from a curated set of workloads toward letting users—and increasingly agents—run arbitrary Python packages near governed data.

The old boundary stopped scaling

Snowpark’s original sandbox used a supervisor-maintained allowlist of Linux system calls. Snowflake says that model became reactive as Python, Java and Scala workloads diversified: some legitimate packages needed calls that were too dangerous to expose directly to the host kernel, while every newly blocked pattern created another review cycle. The replacement combines gVisor’s user-space kernel with a standardized base image, separating package compatibility from whatever libraries happen to be installed on a warehouse node.

That is the operational lesson for teams giving data agents code-execution tools. “Allow this package” is not only a dependency decision. It expands the syscall, loader and runtime behavior the isolation layer must safely emulate. A growing allowlist eventually makes compatibility and security compete with each other; a mediated kernel interface gives the platform somewhere to absorb that complexity.

Compatibility failures moved down the stack

The migration did not make compatibility free. In one memory-intensive Python workload, gVisor created more than 500 times as many virtual memory areas as the legacy environment, running into Linux’s per-process ceiling. Snowflake traced the fragmentation to opposing allocation directions for virtual addresses and file offsets, plus a dropped hint during merges. Its internal benchmark says the fix reduced VMA counts 182-fold against the fragmented baseline; Snowflake explicitly cautions that actual counts vary by workload.

A separate failure appeared as segmentation faults in the Prophet package. Snowflake says gVisor’s ELF loader zeroed a page-aligned region more broadly than Linux does, corrupting metadata expected to remain intact. Matching Linux semantics fixed the issue. These are not model-quality bugs, and prompt evaluation would never catch them. A production test suite for a code-capable data agent therefore needs representative package imports, memory-heavy jobs and concurrent cold starts—not just correct SQL or tool selection.

Stronger isolation still had a latency bill

Snowflake also found startup bottlenecks under CPU pressure and concurrency. Moving gRPC initialization before worker forks reduced system calls by about 43% on standard warehouses, while constraining cores available to the UDF server reduced background-thread contention. The company does not publish end-to-end latency numbers in the post, so readers should not infer a universal performance gain.

The payoff was broader execution: Snowflake says the architecture enabled Snowpark Python in multi-tenant Serverless Tasks and use of arbitrary PyPI packages through Artifact Repository. For agent builders, the practical rule is simple: evaluate the execution substrate as its own product. Package breadth, isolation strength, cold-start behavior and failure reproducibility belong in the acceptance criteria alongside answer accuracy.

Filed by The News Desk. Corrections: desk@nl2sql.ai · Our standards →

comments · 0

    Comments are moderated before they appear. Your email is used once to confirm it is you — never shown, never sold. Corrections and questions get an answer from the desk when we have one.