Ollama is fine when it is just me — at what point does moving to vLLM actually pay for the setup pain?
Single 4090, currently running a 14b through Ollama behind a small FastAPI wrapper for my own use. I now need to open it to about eight colleagues for an internal tool, and in testing with four simultaneous requests it visibly queues and the last person waits. I have read that vLLM is the answer but every guide assumes a datacentre. Is it worth it for eight users on one card, or am I about to spend a weekend for nothing?
@slowtrainjo · 2mo ago
Migrated a similar setup and the before-and-after that convinced my colleagues was not tokens per second, it was the p95 wait. Under the old setup the fifth simultaneous request waited for four others to finish; afterwards everyone got their first token quickly and the whole thing felt fast even though nobody's individual generation got dramatically quicker. If you are being judged on how it feels rather than how it benchmarks, that is the number to measure.
Reply
Report