Which cloud provider is going to give me the best performance and cost balance for self-hosting the DeepSeek-V3 API for a production app?
Im currently torn between AWS and RunPod, leaning towards RunPod because of the raw price difference for GPU rental, but I am really worried about uptime since this is going to be a customer-facing tool.
Here is the setup. I am building a customer support routing tool for a client, and we need to launch in about six weeks. Because of their data privacy policies we cannot use the public DeepSeek API, so we have to host the weights ourselves. Our budget is pretty tight, ideally under 800 dollars a month for the hosting side.
Right now I am looking at these options:
Is the cost saving on RunPod actually worth the potential stability headaches, or should we just suck it up and pay the AWS premium for peace of mind?
Late to the party here but had to jump in because we just went through this exact headache last month! Running a quantized DeepSeek on AWS almost gave our CFO a heart attack. Renting a couple of NVIDIA RTX 6000 Ada 48GB GPUs on a dedicated provider ended up being the sweet spot and it has been absolutely fantastic! My quick tip for that budget: you absolutely must use vLLM with a 4-bit AWQ quant to fit your memory requirements without going broke. Also, look into dedicated bare-metal GPU hosts like Hostkey instead of marketplaces. They offer real SLAs, which completely solves the RunPod reliability anxiety!
Regarding what #1 said about "Is the cost saving on RunPod actually worth the stability headaches" - honestly, absolutely not for a client-facing launch. I had issues with their network storage mounts just disappearing mid-query, which is a total dealbreaker. Here is my take on the options right now:
> Is the cost saving on RunPod actually worth the potential stability headaches, or should we just suck it up and pay the AWS premium for peace of mind? Honestly, RunPod is amazing for dev, but for a production client launch in six weeks, those random node drops will give you nightmares! Ive been using them for a year and love the savings, but you definitely get what you pay for. Since your budget is tight at 800 bucks, AWS is going to kill you on costs. You wont even get a single decent GPU for that. My advice? Go with RunPod but spin up two smaller instances behind a basic load balancer to handle the stability issues. You can rent a couple of NVIDIA RTX 6000 Ada 48GB GPUs for around 75 cents an hour each. That easily fits your budget and gives you redundancy if one node randomly dies. Just make sure to script the auto-recovery! It works like a charm and saves you thousands compared to AWS.