<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Infrastructure and operations on AI Tools</title>
    <link>https://ait.bsc.es/handbook/infrastructure-and-operations/</link>
    <description>Recent content in Infrastructure and operations on AI Tools</description>
    <generator>Hugo</generator>
    <language>en</language>
    <atom:link href="https://ait.bsc.es/handbook/infrastructure-and-operations/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>What is LLM inference infrastructure?</title>
      <link>https://ait.bsc.es/handbook/infrastructure-and-operations/what-is-llm-inference-infrastructure/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://ait.bsc.es/handbook/infrastructure-and-operations/what-is-llm-inference-infrastructure/</guid>
      <description>&lt;p&gt;A model server on its own is not a service. Between a client and a set of accelerators&#xA;sit gateways, routers, model storage, autoscaling, observability and the control plane&#xA;that manages them.&lt;/p&gt;&#xA;&lt;p&gt;This page maps those components and their responsibilities.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-you-will-learn&#34;&gt;What you will learn&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Which components make up an inference platform.&lt;/li&gt;&#xA;&lt;li&gt;How a request travels through the stack.&lt;/li&gt;&#xA;&lt;li&gt;Where model artifacts are stored and how they reach a replica.&lt;/li&gt;&#xA;&lt;li&gt;Which responsibilities belong to the control plane versus the data plane.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;recommended-outline&#34;&gt;Recommended outline&lt;/h2&gt;&#xA;&lt;p&gt;This page is an outline. The subsections below are the planned structure;&#xA;they are filled in as the handbook is written.&lt;/p&gt;</description>
    </item>
    <item>
      <title>What is distributed inference?</title>
      <link>https://ait.bsc.es/handbook/infrastructure-and-operations/what-is-distributed-inference/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://ait.bsc.es/handbook/infrastructure-and-operations/what-is-distributed-inference/</guid>
      <description>&lt;p&gt;Once a model no longer fits on one accelerator, a single forward pass becomes a&#xA;distributed computation with collective communication on its critical path. Interconnect&#xA;performance and failure handling become first-order concerns.&lt;/p&gt;&#xA;&lt;p&gt;This page covers what distribution adds beyond the parallelism schemes themselves.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-you-will-learn&#34;&gt;What you will learn&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;When distributing a single request becomes necessary.&lt;/li&gt;&#xA;&lt;li&gt;Why interconnect bandwidth and latency bound distributed inference.&lt;/li&gt;&#xA;&lt;li&gt;How a replica spanning several nodes is coordinated.&lt;/li&gt;&#xA;&lt;li&gt;What happens when one participant in a distributed replica fails.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;recommended-outline&#34;&gt;Recommended outline&lt;/h2&gt;&#xA;&lt;p&gt;This page is an outline. The subsections below are the planned structure;&#xA;they are filled in as the handbook is written.&lt;/p&gt;</description>
    </item>
    <item>
      <title>LLM observability</title>
      <link>https://ait.bsc.es/handbook/infrastructure-and-operations/llm-observability/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://ait.bsc.es/handbook/infrastructure-and-operations/llm-observability/</guid>
      <description>&lt;p&gt;Generic service metrics do not explain inference behaviour. Request rate and error rate&#xA;say nothing about queue depth, batch composition, cache hit rate or accelerator&#xA;utilization, which are where inference problems actually appear.&lt;/p&gt;&#xA;&lt;p&gt;This page covers what to instrument and how to make it actionable.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-you-will-learn&#34;&gt;What you will learn&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Which inference-specific signals to collect beyond standard service metrics.&lt;/li&gt;&#xA;&lt;li&gt;How to instrument the phases of a request separately.&lt;/li&gt;&#xA;&lt;li&gt;Which signals belong on a dashboard and which should page someone.&lt;/li&gt;&#xA;&lt;li&gt;How to handle prompt and completion data given privacy constraints.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;recommended-outline&#34;&gt;Recommended outline&lt;/h2&gt;&#xA;&lt;p&gt;This page is an outline. The subsections below are the planned structure;&#xA;they are filled in as the handbook is written.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Fast scaling</title>
      <link>https://ait.bsc.es/handbook/infrastructure-and-operations/fast-scaling/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://ait.bsc.es/handbook/infrastructure-and-operations/fast-scaling/</guid>
      <description>&lt;p&gt;Inference replicas scale slowly compared with stateless services, because a replica&#xA;cannot serve until many gigabytes of weights have been fetched and loaded. Autoscaling&#xA;that ignores this reacts long after the traffic has changed.&lt;/p&gt;&#xA;&lt;p&gt;This page covers where that time goes and how to reduce it.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-you-will-learn&#34;&gt;What you will learn&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Which stages make up replica startup time.&lt;/li&gt;&#xA;&lt;li&gt;How model loading and image pull dominate that time.&lt;/li&gt;&#xA;&lt;li&gt;Which techniques shorten each stage.&lt;/li&gt;&#xA;&lt;li&gt;How to set autoscaling policy around the remaining latency.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;recommended-outline&#34;&gt;Recommended outline&lt;/h2&gt;&#xA;&lt;p&gt;This page is an outline. The subsections below are the planned structure;&#xA;they are filled in as the handbook is written.&lt;/p&gt;</description>
    </item>
    <item>
      <title>InferenceOps and management</title>
      <link>https://ait.bsc.es/handbook/infrastructure-and-operations/inferenceops/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://ait.bsc.es/handbook/infrastructure-and-operations/inferenceops/</guid>
      <description>&lt;p&gt;Beyond the initial deployment, an inference service needs release procedures, capacity&#xA;management, cost attribution and incident response — the ordinary operational&#xA;disciplines, adapted to workloads where a single replica may cost more per hour than an&#xA;entire conventional service.&lt;/p&gt;&#xA;&lt;p&gt;This page collects those practices.&lt;/p&gt;&#xA;&lt;h2 id=&#34;what-you-will-learn&#34;&gt;What you will learn&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;How to release model and configuration changes safely.&lt;/li&gt;&#xA;&lt;li&gt;How to manage capacity and quota across tenants.&lt;/li&gt;&#xA;&lt;li&gt;How to attribute and control cost.&lt;/li&gt;&#xA;&lt;li&gt;What inference-specific incident response looks like.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;recommended-outline&#34;&gt;Recommended outline&lt;/h2&gt;&#xA;&lt;p&gt;This page is an outline. The subsections below are the planned structure;&#xA;they are filled in as the handbook is written.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
