http.rs 10.7 KB
Newer Older
1
2
3
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

4
5
use std::sync::Arc;

6
use crate::{
7
    discovery::{MODEL_ROOT_PATH, ModelManager, ModelUpdate, ModelWatcher},
8
    endpoint_type::EndpointType,
9
    engines::StreamingEngineAdapter,
10
    entrypoint::{self, EngineConfig, input::common},
11
    http::service::service_v2::{self, HttpService},
12
    kv_router::KvRouterConfig,
13
    namespace::is_global_namespace,
14
15
16
    types::openai::{
        chat_completions::{NvCreateChatCompletionRequest, NvCreateChatCompletionStreamResponse},
        completions::{NvCreateCompletionRequest, NvCreateCompletionResponse},
17
18
    },
};
19
use dynamo_runtime::transports::etcd;
20
use dynamo_runtime::{DistributedRuntime, Runtime};
21
use dynamo_runtime::{distributed::DistributedConfig, pipeline::RouterMode};
22
23

/// Build and run an HTTP service
24
pub async fn run(runtime: Runtime, engine_config: EngineConfig) -> anyhow::Result<()> {
Graham King's avatar
Graham King committed
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
    let local_model = engine_config.local_model();
    let mut http_service_builder = match (local_model.tls_cert_path(), local_model.tls_key_path()) {
        (Some(tls_cert_path), Some(tls_key_path)) => {
            if !tls_cert_path.exists() {
                anyhow::bail!("TLS certificate not found: {}", tls_cert_path.display());
            }
            if !tls_key_path.exists() {
                anyhow::bail!("TLS key not found: {}", tls_key_path.display());
            }
            service_v2::HttpService::builder()
                .enable_tls(true)
                .tls_cert_path(Some(tls_cert_path.to_path_buf()))
                .tls_key_path(Some(tls_key_path.to_path_buf()))
                .port(local_model.http_port())
        }
        (None, None) => service_v2::HttpService::builder().port(local_model.http_port()),
        (_, _) => {
            // CLI should prevent us ever getting here
            anyhow::bail!(
                "Both --tls-cert-path and --tls-key-path must be provided together to enable TLS"
            );
        }
    };
48
49
50
    if let Some(http_host) = local_model.http_host() {
        http_service_builder = http_service_builder.host(http_host);
    }
Graham King's avatar
Graham King committed
51
52
    http_service_builder =
        http_service_builder.with_request_template(engine_config.local_model().request_template());
53

54
    let http_service = match engine_config {
55
        EngineConfig::Dynamic(_) => {
56
57
58
59
60
            let distributed_runtime = DistributedRuntime::from_settings(runtime.clone()).await?;
            let etcd_client = distributed_runtime.etcd_client();
            // This allows the /health endpoint to query etcd for active instances
            http_service_builder = http_service_builder.with_etcd_client(etcd_client.clone());
            let http_service = http_service_builder.build()?;
61
62
            match etcd_client {
                Some(ref etcd_client) => {
63
                    let router_config = engine_config.local_model().router_config();
64
                    // Listen for models registering themselves in etcd, add them to HTTP service
65
66
67
68
69
70
71
72
                    // Check if we should filter by namespace (based on the local model's namespace)
                    // Get namespace from the model, fallback to endpoint_id namespace if not set
                    let namespace = engine_config.local_model().namespace().unwrap_or("");
                    let target_namespace = if is_global_namespace(namespace) {
                        None
                    } else {
                        Some(namespace.to_string())
                    };
73
                    run_watcher(
74
                        distributed_runtime,
75
                        http_service.state().manager_clone(),
76
                        etcd_client.clone(),
77
                        MODEL_ROOT_PATH,
78
                        router_config.router_mode,
79
                        Some(router_config.kv_router_config),
80
                        router_config.busy_threshold,
81
                        target_namespace,
82
                        Arc::new(http_service.clone()),
83
84
                    )
                    .await?;
85
86
87
88
89
                }
                None => {
                    // Static endpoints don't need discovery
                }
            }
90
            http_service
91
        }
92
93
94
95
        EngineConfig::StaticRemote(local_model) => {
            let card = local_model.card();
            let router_mode = local_model.router_config().router_mode;

96
            let dst_config = DistributedConfig::from_settings(true); // true means static
97
            let distributed_runtime = DistributedRuntime::new(runtime.clone(), dst_config).await?;
98
            let http_service = http_service_builder.build()?;
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
            let manager = http_service.model_manager();

            let endpoint_id = local_model.endpoint_id();
            let component = distributed_runtime
                .namespace(&endpoint_id.namespace)?
                .component(&endpoint_id.component)?;
            let client = component.endpoint(&endpoint_id.name).client().await?;

            let kv_chooser = if router_mode == RouterMode::KV {
                Some(
                    manager
                        .kv_chooser_for(
                            local_model.display_name(),
                            &component,
                            card.kv_cache_block_size,
                            Some(local_model.router_config().kv_router_config),
                        )
                        .await?,
                )
            } else {
                None
            };

            let chat_engine = entrypoint::build_routed_pipeline::<
                NvCreateChatCompletionRequest,
                NvCreateChatCompletionStreamResponse,
125
            >(card, &client, router_mode, None, kv_chooser.clone())
126
127
128
129
130
131
            .await?;
            manager.add_chat_completions_model(local_model.display_name(), chat_engine)?;

            let completions_engine = entrypoint::build_routed_pipeline::<
                NvCreateCompletionRequest,
                NvCreateCompletionResponse,
132
            >(card, &client, router_mode, None, kv_chooser)
133
134
            .await?;
            manager.add_completions_model(local_model.display_name(), completions_engine)?;
135

136
            for endpoint_type in EndpointType::all() {
137
                http_service.enable_model_endpoint(endpoint_type, true);
138
139
            }

140
            http_service
141
142
        }
        EngineConfig::StaticFull { engine, model, .. } => {
143
            let http_service = http_service_builder.build()?;
144
145
            let engine = Arc::new(StreamingEngineAdapter::new(engine));
            let manager = http_service.model_manager();
146
147
            manager.add_completions_model(model.service_name(), engine.clone())?;
            manager.add_chat_completions_model(model.service_name(), engine)?;
148
149
150

            // Enable all endpoints
            for endpoint_type in EndpointType::all() {
151
                http_service.enable_model_endpoint(endpoint_type, true);
152
            }
153
            http_service
154
        }
155
156
        EngineConfig::StaticCore {
            engine: inner_engine,
157
            model,
158
            ..
159
        } => {
160
            let http_service = http_service_builder.build()?;
161
162
163
164
165
            let manager = http_service.model_manager();

            let chat_pipeline = common::build_pipeline::<
                NvCreateChatCompletionRequest,
                NvCreateChatCompletionStreamResponse,
166
            >(model.card(), inner_engine.clone())
167
            .await?;
168
            manager.add_chat_completions_model(model.service_name(), chat_pipeline)?;
169

170
171
            let cmpl_pipeline = common::build_pipeline::<
                NvCreateCompletionRequest,
172
                NvCreateCompletionResponse,
173
            >(model.card(), inner_engine)
174
            .await?;
175
            manager.add_completions_model(model.service_name(), cmpl_pipeline)?;
176
177
            // Enable all endpoints
            for endpoint_type in EndpointType::all() {
178
                http_service.enable_model_endpoint(endpoint_type, true);
179
            }
180
            http_service
181
        }
182
    };
183
184
185
186
187
188
189
190
    tracing::debug!(
        "Supported routes: {:?}",
        http_service
            .route_docs()
            .iter()
            .map(|rd| rd.to_string())
            .collect::<Vec<String>>()
    );
191
192
193
    http_service.run(runtime.primary_token()).await?;
    runtime.shutdown(); // Cancel primary token
    Ok(())
194
}
195
196
197

/// Spawns a task that watches for new models in etcd at network_prefix,
/// and registers them with the ModelManager so that the HTTP service can use them.
198
#[allow(clippy::too_many_arguments)]
199
async fn run_watcher(
200
    runtime: DistributedRuntime,
201
    model_manager: Arc<ModelManager>,
202
203
    etcd_client: etcd::Client,
    network_prefix: &str,
204
    router_mode: RouterMode,
205
    kv_router_config: Option<KvRouterConfig>,
206
    busy_threshold: Option<f64>,
207
    target_namespace: Option<String>,
208
    http_service: Arc<HttpService>,
209
) -> anyhow::Result<()> {
210
211
212
213
214
215
216
    let mut watch_obj = ModelWatcher::new(
        runtime,
        model_manager,
        router_mode,
        kv_router_config,
        busy_threshold,
    );
217
218
219
    tracing::info!("Watching for remote model at {network_prefix}");
    let models_watcher = etcd_client.kv_get_and_watch_prefix(network_prefix).await?;
    let (_prefix, _watcher, receiver) = models_watcher.dissolve();
220
221
222
223
224
225
226
227
228
229

    // Create a channel to receive model type updates
    let (tx, mut rx) = tokio::sync::mpsc::channel(32);

    watch_obj.set_notify_on_model_update(tx);

    // Spawn a task to watch for model type changes and update HTTP service endpoints
    let _endpoint_enabler_task = tokio::spawn(async move {
        while let Some(model_type) = rx.recv().await {
            tracing::debug!("Received model type update: {:?}", model_type);
230
            update_http_endpoints(http_service.clone(), model_type);
231
232
233
234
        }
    });

    // Pass the sender to the watcher
235
    let _watcher_task = tokio::spawn(async move {
236
        watch_obj.watch(receiver, target_namespace.as_deref()).await;
237
    });
238

239
240
    Ok(())
}
241
242

/// Updates HTTP service endpoints based on available model types
243
fn update_http_endpoints(service: Arc<HttpService>, model_type: ModelUpdate) {
244
245
246
247
248
    tracing::debug!(
        "Updating HTTP service endpoints for model type: {:?}",
        model_type
    );
    match model_type {
249
250
251
252
        ModelUpdate::Added(model_type) => {
            // Handle all supported endpoint types, not just the first one
            for endpoint_type in model_type.as_endpoint_types() {
                service.enable_model_endpoint(endpoint_type, true);
253
            }
254
255
256
257
258
        }
        ModelUpdate::Removed(model_type) => {
            // Handle all supported endpoint types, not just the first one
            for endpoint_type in model_type.as_endpoint_types() {
                service.enable_model_endpoint(endpoint_type, false);
259
            }
260
        }
261
262
    }
}