Google Cloud、GKE でエージェントあたりのコストを75%削減する手法を発表
本文の状態
日本語全文を表示中
詳細モードで約10分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
Google Cloud AI
Google Cloud AI は、AI エージェントのバースト特性に対応するオーケストレーション技術により、GKE 上で単一ノードあたりのエージェント密度を劇的に向上させ、コスト削減を実現できる可能性を示したと発表した。
AI深層分析を開く2026年8月4日 06:44
AI深層分析
キーポイント
AI エージェントのバースト特性によるリソース非効率
AI エージェントは処理実行時と待機時の間で活動に大きなムラがあり、静的な計算資源割り当てでは待機中も CPU やメモリを消費し続ける問題がある。
オーケストレーションによるリソース最適化
アーキテクチャの初期段階からオーケストレーションを組み込むことで、信頼性や拡張性を損なわずに固定された計算資源上に多くのエージェントを収容できる。
GKE における実証実験の結果
Google は n2-standard-48 の VM 上で OpenClaw プロファイルを用いた漸進的最適化を行い、パフォーマンス劣化や頻繁な失敗なしに最大数のエージェントを収容できることを示した。
マイクロ VM を活用したセキュリティ確保
信頼できないマルチエージェントワークロードを実行する際、各エージェントを専用のマイクロ VM(例:Kata Containers)内に実行することで強い分離性を維持するアプローチが採用される。
マイクロVMの拡張制限
各エージェントに専用マイクロVM(Kataコンテナ)を使用する従来のアプローチでは、ゲストOSのリソース消費により標準GKEノードで61エージェントまでしか実行できず、信頼性が低下する。
重要な引用
AI agents tend to operate in bursts; for a while they actively process requests or execute code, followed by long periods of inactivity while awaiting user input or external triggers.
The answer is to incorporate orchestration upfront as a holistic part of your architecture.
gVisor uses a user-space kernel (the Sentry) to intercept and filter system calls.
This reduced overhead improves the efficiency of the sandbox itself, resulting in being able to deploy 88 OpenClaw agents inside the same VM before failure — a 44% increase in the number of agents you can run on the same fixed capacity while maintaining a highly reliable security perimeter.
編集コメントを表示
編集コメント
AI エージェントの実用化において、リソース効率とセキュリティの両立は長年の課題であったが、GKE のオーケストレーション能力を活用した実証結果は具体的な指針となる。企業は導入初期からアーキテクチャにオーケストレーションを組み込むことで、将来的なコスト増を抑制できる可能性が高い。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
現代の「エージェント時代」において、クラウドアプリケーションは受動的なツールの集合体から、推論・計画・実行を自律的に行う一連のデジタルワーカーへと進化しています。
これらの環境を設計するプラットフォームエンジニアリングチームにとって、最もシンプルなアプローチは、OpenClaw や Hermes といったオープンソースフレームワークを仮想マシン(VM)上で稼働させ、エージェントをデプロイすることです。しかし、こうしたワークロードが本番環境に移行し、ユーザー数やユースケースの拡大に対応してスケールするにつれ、チームは重要な課題に直面します。AI エージェントはバースト状に動作するため、一定期間リクエスト処理やコード実行に集中した後、ユーザー入力や外部トリガーを待って長時間アイドル状態になるからです。計算資源を静的に割り当てる方式に頼っていると、アイドル中のエージェントも CPU やメモリを消費し続けてしまいます。
そこで問われるのは、信頼性、スケーラビリティ、効率性を損なうことなく、限られた計算リソースにいかにしてより多くのエージェントを安全に収容できるかです。
答えは、オーケストレーションをアーキテクチャの初期段階から包括的に組み込むことです。オーケストレーションを導入することで、初日から劇的な単位経済性の向上、スケーラビリティの確保、使いやすさ、そして信頼性を手に入れることができます。
Google Kubernetes Engine (GKE) は、高度なオーケストレーション機能を提供します。計算リソースを最大限に活用するため、固定された Google Compute Engine VM インスタンス(n2-standard-48)上で動作する単一の GKE ノードに、パフォーマンスの低下や繰り返し失敗を起こすことなく収容できる AI エージェントの最大数をテストしました。
OpenClaw プロファイルを用いて段階的な最適化を適用し、オーケストレーションがスケールしたエージェントワークロードを実行する上でどのような決定的な役割を果たすかを示しました。詳しくは以下をご覧ください。

ベースライン:マイクロ VM での OpenClaw実行
信頼できないマルチエージェントワークロードを安全に実行するには、強力な分離(アイソレーション)が必要です。一般的なアプローチは、Kubernetes デプロイメント上で各エージェントを専用のマイクロ VM(Kata containers など)内で動作させることです。これにより、ハードウェアレベルでの堅牢な分離が実現されます。
このようにセキュリティ境界を設けることは必要ですが、すぐにスケーリングの壁にぶつかります。各マイクロVMには個別のゲストOSが必要であり、これがメモリやCPUリソースを消費するため、エージェントが実際に利用可能なリソースが制限されてしまいます。
このベースラインシナリオでは、標準的なGKEノード上で61個のOpenClawエージェントを実行した時点でスケーリングの壁に達し、信頼性が低下してワークロードのヘルスチェックが頻繁に失敗するようになりました。
最適化 1: GKE Agent Sandbox で密度を高める
この課題に対処するため、マイクロVMから GKE Agent Sandbox へエージェントワークロードを移行しました。これは、エージェントの実行に必要なセキュリティとパフォーマンス要件に特化して設計されたKubernetesのプリミティブです。
重いゲストOSに依存するのではなく、GKE Agent Sandbox はオープンソースの安全なコンテナサンドボックスである gVisor を活用しています。gVisor はユーザー空間カーネル(Sentry)を用いてシステムコールをインターセプト・フィルタリングします。これにより、信頼性の低いコードの実行に対して生産環境レベルの分離を保ちつつ、標準的なKubernetesコンテナと同じ軽量なフットプリントを実現しています。
このオーバーヘッドの削減によりサンドボックス自体の効率が向上し、同じVM内で 88 個の OpenClaw エージェントを失敗なく展開できるようになりました。これは、高いセキュリティ境界を維持したまま、固定されたキャパシティ上で実行可能なエージェント数を 44% 増やしたことになります。
GKE Agent Sandbox が 5 月に一般提供された際、その利用数がわずか 4 週間で 7 倍以上に急増したのは驚くべきことではありません。
重要なポイント: 私たちのテストでは、OpenClaw タイプのエージェントを GKE Agent Sandbox に移行したことで、vCPU あたりで実行可能なエージェント数を 40% 以上増加させつつ、パフォーマンスプロファイルはほぼ維持したまま、1 エージェントあたりのコストを 30% 以上削減できました。
最適化 2: オーケストレーションの価値
GKE Agent Sandbox がアクティブなワークロードの最適化を実現する一方で、アイドル状態にある AI エージェントの問題を解決するには、ワークロードのオーケストレーションをエージェントアーキテクチャの中核に据える必要があります。
アイドルのエージェントを背景で常時実行し続けるのではなく、GKE Pod スナップショット を活用してチェックポイント(一時停止)し、永続ストレージへ保存することで、物理的な CPU やメモリリソースをクラスターに返却できます。新しいタスクのトリガーが到着すると、軽量な Kubernetes コントローラーやイベントゲートウェイがリクエストを捕捉し、GKE にスナップショットからエージェントを再開するよう指示します。この処理はミリ秒単位で完了します。
このパターンを使えば、ワークロードの挙動に基づいて物理計算リソースを確実にオーバサブスクライブでき、同じノードにさらに多くのエージェントを収容できます。ただし、オーバサブスクライブは万能な解決策ではなく、いくつかのトレードオフを伴います。AI エージェントそれぞれには異なるレイテンシ要件や実行モデルが存在します。すべてのエージェントを一律に扱うと、レイテンシによってユーザー体験が損なわれるか、過剰な VM 割り当てによってプロジェクトが破綻するかのどちらかになります。
GKE を使えば、さまざまなタイプのエージェントやユースケースに対応したカスタマイズされたデプロイメントをサポートするエージェントプラットフォームを構築できます。各環境は、独自の性能とコスト要件に合わせて微調整されています。

以下に、性能要件が大きく異なるエージェントワークロードの例を示します。
- リアルタイムコーディングアシスタント(レイテンシ重視): 開発者向けに直接動作するエージェントには、サブ秒単位の起動時間が求められます。
- 自律型チームメンバー(バランス型): バックグラウンドで動作するインタラクティブなエージェントは、数秒程度の平均起動時間であれば許容可能です。GKE のサスペンドとリsume 機能を使えば、必要な時にこれらのエージェントを即座に復元できるため、アイドル状態でも計算リソースを消費しません。
「ヘッドレスなバックグラウンドエージェント」は、レイテンシに寛容です。毎日実行される調査や分析の cron ジョブであれば、キューイングによる遅延を許容できます。クラスターの容量が利用可能になるまで 1 時間待ってジョブを実行しても、ビジネス成果に悪影響が出ることはありません。こうしたタイプのエージェントのコストを抑えるには、リソースのオーバーサブスクリプション(過剰割り当て)を最大限活用するのがおすすめです。
つまり、GKE は単一のクラスター全体に共通する戦略を強制するのではなく、ノードプールやワークロード設定ごとに異なる振る舞いを同時にサポートします。
「サンダーリング・ハーデス(群れ問題)」と呼ばれる現象、すなわち多数のエージェントが同時に起動して計算リソースを一斉に要求するケースも考慮しましょう。GKE では、Agent Sandbox warm pools や suspend and resume といった機能を通じて、要件に応じてコスト削減とパフォーマンス保証のバランスを調整できるダイヤル(設定項目)を提供しています。用途に合わせて「パフォーマンス最適化」または「コスト最適化」を選べます。
- パフォーマンス最適化: 大規模な急激なトラフィックスパイク時に、確約されたサブ秒単位の性能が必要なユースケースでは、Agent Sandbox warm pools を用いてバッファを確保できます。この構成では、同じノード上で 133 の OpenClaw エージェントを実行することができました。
コスト最適化:レイテンシに許容性があるワークロードや、段階的に実行可能なケースでは、高いオーバーサブスクリプション比によってノード密度を大幅に向上させることができます。この構成では、起動時間を 5 秒以内に保ちながら、同じノード上で 274 個のエージェントを実行しました(ベースラインの 3 倍以上)。
ポイント:GKE Agent Sandbox と GKE のサスペンド・レジューム機能を組み合わせることで、アイドル状態のエージェントを凍結し、固定された計算リソースをオーバーサブスクライブできます。断続的な活動を行うエージェントの場合、これによりエージェント密度が最大 3.5 倍になり、1 エージェントあたりのコストを最大 75% 削減することが可能です。
予算ではなく、エージェントの規模拡大を
エージェントのスケーリングは、インフラストラクチャの予算に比例して増やす必要はありません。前述の事例が示す通り、適切なプラットフォーム機能を採用し、最初からオーケストレーションを考慮するだけで、計算リソースからの価値を劇的に変えることができます。GKE を使えば、コスト削減を最優先するか、パフォーマンス最適化を目指すかというビジネス目標に合わせて、インフラストラクチャを簡単に調整できます。
これはまだ始まりに過ぎません。Google Cloud では、エージェント時代の需要に対応するための新しい方法を継続的に革新しています。計算リソースからより多くの価値を引き出したい方は、GKE Agent Sandbox のドキュメント をチェックし、チームが GKE によってどのようにして低コストでイノベーションを加速しているかをご覧ください。
原文を表示
In today’s agentic era, modern cloud applications are evolving from a set of passive tools to fleets of autonomous digital workers that reason, plan, and take action across a wide range of tasks.
For platform engineering teams designing these environments, the simplest approach is often to deploy an agent on to an open-source framework like OpenClaw and Hermes running on a virtual machine (VM). But as those workloads move into production and scale to support additional users or use cases, teams quickly hit a critical challenge: AI agents tend to operate in bursts; for a while they actively process requests or execute code, followed by long periods of inactivity while awaiting user input or external triggers. If you rely on static compute allocations, idle agents are still consuming valuable CPU and memory.
The question becomes: how do you safely pack more agents onto a fixed compute footprint without sacrificing reliability, scalability, or efficiency?
The answer is to incorporate orchestration upfront as a holistic part of your architecture. Orchestration helps you unlock dramatically improved unit economics and scalability, ease of use, and reliability from day one. Google Kubernetes Engine (GKE) offers sophisticated orchestration capabilities. To help you make the most of your compute capacity, we tested the maximum number of AI agents that can be packed onto a single GKE node running on a fixed Google Compute Engine VM instance (n2-standard-48) — without performance degradation, or repeated failures. Using an OpenClaw profile, we applied progressive optimizations to demonstrate the meaningful role that orchestration can play in running agentic workloads at scale — read on to learn more.

Baseline: Running OpenClaw on microVMs
Running untrusted, multi-agent workloads securely requires strong isolation. A common approach is to run each agent inside a dedicated microVM (such as Kata containers) on a Kubernetes deployment, which provides strong hardware-level isolation.
While this provides the necessary security boundary, it hits a scaling wall almost immediately. Every microVM requires its own guest operating system that consumes memory and CPU resources, limiting the actual resources available for your actual agents. In this baseline scenario, we hit a scaling wall at 61 OpenClaw agents on a standard GKE node before reliability dropped and workload health checks began to fail regularly.
Optimization 1: Pushing density with GKE Agent Sandbox
To address this, we migrated the same agent workload from microVMs to GKE Agent Sandbox, a Kubernetes primitive that’s designed specifically for the security and performance requirements of running agents.
Instead of relying on heavy guest operating systems, GKE Agent Sandbox leverages the open-source secure container sandbox, gVisor. gVisor uses a user-space kernel (the Sentry) to intercept and filter system calls. This provides secure, production-grade isolation for untrusted code execution while maintaining the lightweight footprint of standard Kubernetes containers.
This reduced overhead improves the efficiency of the sandbox itself, resulting in being able to deploy 88 OpenClaw agents inside the same VM before failure — a 44% increase in the number of agents you can run on the same fixed capacity while maintaining a highly reliable security perimeter.
It’s no surprise then, that when GKE Agent Sandbox reached General Availability in May, its usage grew more than 7x in under four weeks.
Key takeaway: In our tests, migrating OpenClaw-type agents to GKE Agent Sandbox enabled us to run more than 40% more agents per vCPU, and reduced the cost per agent by more than 30%, all while maintaining a similar performance profile.
Optimization 2: The value of orchestration
While the GKE Agent Sandbox optimizes active workloads, solving the problem of idle AI agents requires making workload orchestration a central part of your agent architecture.
Rather than keeping idle agents running in the background, you can use GKE Pod snapshots to checkpoint (freeze) them to persistent storage, which releases their physical CPU and memory resources back to the cluster. When a new task trigger arrives, a lightweight Kubernetes controller or event gateway intercepts the request and signals GKE to resume the agent from the snapshot. This happens in milliseconds.
This pattern lets you reliably oversubscribe physical compute resources based on workload behavior, so you can fit more agents on the same node. However, oversubscription isn’t a one-size-fits-all approach and comes with a set of tradeoffs: Different AI agents have different latency requirements and execution models. If you treat all agents the same, you will either degrade your user experience with latency, or bankrupt your project with over-provisioned VMs.
With GKE, you can run an agent platform that supports tailored deployments for different types of agents and use cases, each fine-tuned to their unique performance and cost requirements.

Here are some examples of agentic workloads with very different performance requirements:
- Real-time coding assistant (latency-sensitive): Direct developer-facing agents need sub-second startup times (
- Autonomous teammate (balanced): Interactive background agents can tolerate average startup times (a few seconds). GKE suspend and resume functionality restores these agents on demand, so they don’t consume compute resources while they are idle.
- Headless background agent (latency-tolerant): Scheduled daily research or analysis cron jobs can tolerate queueing delays; you’re not going to compromise business outcomes by waiting to execute these jobs for an hour while cluster capacity becomes available. To save on costs for these kinds of agents, go ahead and use maximum resource oversubscription.
In other words, rather than forcing you into a single cluster-wide strategy, GKE supports different behaviors simultaneously across node pools and workload configurations.
Consider the "thundering herd" problem, where a surge of agents all wake and demand compute simultaneously. GKE offers a tunable dial with features like Agent Sandbox warm pools and suspend and resume to balance potential cost savings against guaranteed performance based on your specific requirements — performance- or cost-optimized:
- Performance-optimized: If your use case requires guaranteed, sub-second performance during massive, sudden traffic spikes, you can provision buffers using Agent Sandbox warm pools. In this configuration, we were able to run 133 OpenClaw agents on the same node.
- Cost-optimized: For workloads that are latency-tolerant or that can be staggered, higher oversubscription ratios significantly increase node density. In this configuration, we ran 274 agents on the same node (>3x more agents than the baseline) while keeping startup times under five seconds.
Key takeaway: By combining GKE Agent Sandbox with GKE’s suspend and resume capabilities, you can freeze idle agents to oversubscribe fixed compute capacity. For agents with intermittent activity, this can enable up to 3.5x greater agent density and cost reductions of up to 75% per agent.
Scale your agents, not your budget
Scaling your agents shouldn’t mean linearly scaling your infrastructure budget. As our examples show, adopting the right platform features and considering orchestration from the get-go can dramatically alter the value you get from your compute capacity. GKE allows you to easily align your infrastructure with your business goals — whether that means prioritizing aggressive cost savings or optimizing for performance.
And this is just the beginning. At Google Cloud, we’re continuously innovating new ways to help you manage the demands of the agentic era. Ready to get more out of your compute capacity? Check out the GKE Agent Sandbox documentation and learn how GKE is helping teams innovate faster for less.
AI算出
技術分析ainew評価標準
AI エージェント運用におけるオーケストレーション最適化という具体的な技術的課題に対し、ベンダーが独自の実験データ(61 個のエージェントでのスケーリング壁の突破など)とアーキテクチャ変更(gVisor 活用)を提示しており、実装に有用な分析が含まれる。ただし、これは Google Cloud の公式発表であり、他社による独立した検証や業界全体の新事実ではないため novelty は中程度となる。
6つの評価軸を見る
- AI関連度
- 75
- 情報源の信頼性
- 25
- 新規性
- 50
- 調べる価値
- 75
- 重複の少なさ
- 100
- 日本での有用性
- 25
News to Guide
ニュースの次に確認する
発表内容を、現在の料金や仕様と照らし合わせられる関連ガイドです。
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み