Spaces:
Running
Running
File size: 9,259 Bytes
332826f 30c6ca2 332826f 30c6ca2 332826f 30c6ca2 332826f 30c6ca2 332826f 30c6ca2 332826f 30c6ca2 332826f 27c1c3c 332826f 30c6ca2 332826f 27c1c3c 332826f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 | #include "model_manager.h"
#include <boost/asio.hpp>
#include <boost/beast/core.hpp>
#include <boost/beast/http.hpp>
#include "http_helpers.h"
#include <cerrno>
#include <csignal>
#include <thread>
#include <unistd.h>
#include <sys/wait.h>
namespace asio = boost::asio;
namespace beast = boost::beast;
namespace http = beast::http;
bool is_alive(pid_t pid) {
if (pid <= 0) return false;
// A worker that exited on its own is a zombie until reaped, and a zombie
// still passes kill(pid, 0). Reap it here so crashes are detected instead
// of reporting a dead worker as ready.
int status = 0;
const pid_t r = waitpid(pid, &status, WNOHANG);
if (r == pid) return false; // exited; now reaped
if (r == 0) return true; // still running
// r < 0: not our child or already reaped — fall back to a liveness probe.
return kill(pid, 0) == 0;
}
void shutdown_worker(pid_t pid, int wait_seconds) {
if (pid <= 0) return;
if (kill(pid, SIGTERM) != 0 && errno == ESRCH) {
waitpid(pid, nullptr, WNOHANG); // reap in case it is a zombie
return;
}
const auto deadline = std::chrono::steady_clock::now() + std::chrono::seconds(wait_seconds);
while (std::chrono::steady_clock::now() < deadline) {
int status = 0;
pid_t r = waitpid(pid, &status, WNOHANG);
if (r == pid) return;
if (r < 0 && errno == ECHILD) return; // already reaped elsewhere
std::this_thread::sleep_for(std::chrono::milliseconds(200));
}
kill(pid, SIGKILL);
int status = 0;
waitpid(pid, &status, 0);
}
ModelManager::ModelManager(const ManagerConfig &config)
: default_model_(config.worker.default_model),
llama_server_bin_(config.worker.llama_server_bin),
worker_host_(config.worker.host),
worker_bind_host_(config.worker.bind_host),
base_port_(config.worker.base_port),
switch_timeout_sec_(config.worker.switch_timeout_sec),
n_ctx_(config.llama.n_ctx),
n_threads_(config.llama.threads),
n_gpu_layers_(config.llama.ngl),
n_batch_(config.llama.batch),
n_ubatch_(config.llama.ubatch),
next_port_(base_port_) {}
bool ModelManager::initialize_default(std::string &error) {
return switch_model(default_model_, error);
}
bool ModelManager::switch_model(const std::string &model, std::string &error) {
{
std::lock_guard<std::mutex> lock(mu_);
if (switch_in_progress_) {
error = "Switch already in progress";
return false;
}
if (active_ && active_->model == model && is_alive(active_->pid)) {
return true;
}
switch_in_progress_ = true;
}
std::optional<WorkerInfo> old_worker;
{
std::lock_guard<std::mutex> lock(mu_);
if (active_) old_worker = active_;
}
int port = allocate_port();
pid_t pid = spawn_worker(model, port);
if (pid <= 0) {
finish_switch(false);
error = "Failed to start worker process";
return false;
}
if (!wait_until_ready(pid, port, switch_timeout_sec_)) {
shutdown_worker(pid);
finish_switch(false);
error = "New model did not become ready in time";
return false;
}
WorkerInfo new_worker{model, port, pid, now_utc_iso()};
{
std::lock_guard<std::mutex> lock(mu_);
active_ = new_worker;
switch_in_progress_ = false;
}
if (old_worker && old_worker->pid != pid) {
shutdown_worker(old_worker->pid);
}
return true;
}
bool ModelManager::restart_active(std::string &error) {
std::optional<WorkerInfo> old_worker;
std::string model;
{
std::lock_guard<std::mutex> lock(mu_);
if (switch_in_progress_) {
error = "Switch already in progress";
return false;
}
if (!active_ || !is_alive(active_->pid)) {
error = "No active model";
return false;
}
switch_in_progress_ = true;
old_worker = active_;
model = active_->model;
}
shutdown_worker(old_worker->pid);
int port = allocate_port();
pid_t pid = spawn_worker(model, port);
if (pid <= 0) {
std::lock_guard<std::mutex> lock(mu_);
active_ = std::nullopt;
switch_in_progress_ = false;
error = "Failed to start worker process";
return false;
}
if (!wait_until_ready(pid, port, switch_timeout_sec_)) {
shutdown_worker(pid);
std::lock_guard<std::mutex> lock(mu_);
active_ = std::nullopt;
switch_in_progress_ = false;
error = "New model did not become ready in time";
return false;
}
WorkerInfo new_worker{model, port, pid, now_utc_iso()};
{
std::lock_guard<std::mutex> lock(mu_);
active_ = new_worker;
switch_in_progress_ = false;
}
return true;
}
std::optional<WorkerInfo> ModelManager::active_worker() {
std::lock_guard<std::mutex> lock(mu_);
if (active_ && is_alive(active_->pid)) return active_;
return std::nullopt;
}
json ModelManager::models_view() {
std::lock_guard<std::mutex> lock(mu_);
json out;
out["status"] = (active_ && is_alive(active_->pid)) ? "ready" : "no_active_model";
out["switch_in_progress"] = switch_in_progress_;
if (active_ && is_alive(active_->pid)) {
out["current_model"] = active_->model;
out["last_loaded"] = active_->last_loaded;
out["active_pid"] = active_->pid;
out["active_port"] = active_->port;
} else {
out["current_model"] = nullptr;
out["last_loaded"] = nullptr;
out["active_pid"] = nullptr;
out["active_port"] = nullptr;
}
return out;
}
int ModelManager::allocate_port() {
std::lock_guard<std::mutex> lock(mu_);
// Cycle within a small window above base_port so restarts/switches don't
// walk off into ports used by other services (or past 65535). Skip the
// active worker's port: during a switch both processes run briefly.
for (int i = 0; i < kPortWindow; ++i) {
if (next_port_ >= base_port_ + kPortWindow) next_port_ = base_port_;
const int port = next_port_++;
if (active_ && active_->port == port) continue;
return port;
}
return base_port_;
}
void ModelManager::finish_switch(bool ok) {
std::lock_guard<std::mutex> lock(mu_);
if (!ok) switch_in_progress_ = false;
}
pid_t ModelManager::spawn_worker(const std::string &model, int port) {
// Build argv before forking: other threads exist, so the child may only
// call async-signal-safe functions between fork() and exec() — no heap
// allocation (std::string/std::to_string malloc and can deadlock).
std::vector<std::string> args = {
llama_server_bin_,
"-hf", model,
"--host", worker_bind_host_,
"--port", std::to_string(port),
"-c", std::to_string(n_ctx_),
"-t", std::to_string(n_threads_),
"-ngl", std::to_string(n_gpu_layers_),
"--cont-batching",
"-b", std::to_string(n_batch_),
"--ubatch-size", std::to_string(n_ubatch_)
};
std::vector<char *> argv;
argv.reserve(args.size() + 1);
for (auto &s : args) argv.push_back(const_cast<char *>(s.c_str()));
argv.push_back(nullptr);
pid_t pid = fork();
if (pid < 0) return -1;
if (pid == 0) {
setsid();
execvp(argv[0], argv.data());
_exit(127);
}
return pid;
}
bool ModelManager::wait_until_ready(pid_t pid, int port, int timeout_sec) {
const auto deadline = std::chrono::steady_clock::now() + std::chrono::seconds(timeout_sec);
// Exponential backoff: fast detection when the worker comes up (or dies)
// quickly, without hammering it during a minutes-long model load.
auto poll_interval = std::chrono::milliseconds(100);
const auto max_interval = std::chrono::milliseconds(800);
while (std::chrono::steady_clock::now() < deadline) {
if (!is_alive(pid)) return false;
try {
// /health is load-state aware (503 while the model loads); the
// static index at / can answer 200 before the model is usable.
auto [status, _] = http_get(port, "/health");
if (status == 200) return true;
} catch (...) {
}
std::this_thread::sleep_for(poll_interval);
poll_interval = std::min(poll_interval * 2, max_interval);
}
return false;
}
std::pair<int, std::string> ModelManager::http_get(int port, const std::string &target) {
asio::io_context ioc;
asio::ip::tcp::resolver resolver(ioc);
beast::tcp_stream stream(ioc);
auto const results = resolver.resolve(worker_host_, std::to_string(port));
stream.connect(results);
http::request<http::string_body> req{http::verb::get, target, 11};
req.set(http::field::host, worker_host_);
req.set(http::field::user_agent, "llm-manager");
http::write(stream, req);
beast::flat_buffer buffer;
http::response<http::string_body> res;
http::read(stream, buffer, res);
beast::error_code ec;
stream.socket().shutdown(asio::ip::tcp::socket::shutdown_both, ec);
return {res.result_int(), res.body()};
}
|