Learning Objectives
- Explain what Ray does and why distributed AI work needs a scheduler
- Distinguish the open-source Ray project from the commercial Anyscale platform
- Evaluate when a managed Ray platform beats running Ray yourself
What Is Anyscale?
Ray is an open-source engine for spreading Python and AI workloads across many machines. Instead of writing cluster code, you annotate functions and classes, and Ray handles scheduling, fault tolerance, and moving data between workers.
Anyscale is the commercial platform built by Ray's creators. It runs managed Ray clusters and adds the operational layer teams otherwise build themselves: a development environment, autoscaling, zero-downtime service upgrades, and high availability.
The library set is what makes Ray more than a job runner — the same cluster handles data processing, distributed training, hyperparameter tuning, batch inference, and online model serving. That matters because those stages usually run on separate systems, and every boundary between systems is a place where GPUs sit idle waiting for a handoff.
💡Key Concept
Why a shared resource pool is the point. Training and inference have opposite demand curves — training is bursty and schedulable, serving is steady and latency-sensitive. Running both on one pool lets capacity shift between them as demand moves, instead of stranding a reserved training cluster overnight while the serving fleet is saturated.
The Nscale Acquisition
On July 30, 2026, the British AI cloud Nscale announced a definitive agreement to acquire Anyscale. Neither company disclosed terms; Bloomberg reported the price at $1.65 billion. The deal is expected to close in the second half of 2026, subject to regulatory approval.
The logic is vertical integration. Nscale already owns power generation, data centers and GPUs; Anyscale supplies the layer engineers actually schedule work on. Nscale's stated aim is to co-design the software and the infrastructure beneath it.
⚠️Warning
What this means for Ray users. Ray was donated to the PyTorch Foundation in 2025 and remains open-source and community-governed, and Nscale has said it will join the foundation. So the open-source project is not Nscale's to close. The reasonable thing to watch is the commercial platform — whether Anyscale stays genuinely cloud-neutral, or gradually optimizes for Nscale's own infrastructure. Nothing has changed yet; the deal has not closed.
Who Uses Ray
Ray is infrastructure rather than a product most people touch directly, which makes its footprint easy to underrate. It is a standard scaling layer for large-model training and serving, and Anyscale's own positioning as the platform for production-scale AI reflects where the paying demand sits — teams past the single-GPU stage that do not want to maintain a distributed scheduler.
The clearest signal of the project's standing is the donation itself: a company gave its core technology to a neutral foundation and kept building the commercial layer on top, which only works when the open-source project is already an ecosystem standard.
Pricing
- Starter projects run roughly $3 to $5 each
- Managed workspaces
- No fixed monthly fee
- CPU-only from about 1.4 cents per hour
- NVIDIA T4 about 57 cents per hour
- NVIDIA A100 about five dollars per hour
- Bring existing GPU reservations
- Scales with usage
- Contact sales
- Any cloud or region
- Virtual machines or Kubernetes
- 24-by-7 enterprise support
Two deployment shapes matter more than the tier names. Hosted runs in Anyscale's own regions on virtual machines with business-hours support. Bring your own cloud runs in your account, on any cloud or region, on virtual machines or Kubernetes, with round-the-clock enterprise support — this is the one most large teams end up on, because it keeps compute spend on an existing cloud commitment.
Getting Started
- Prototype with open-source Ray locally — nothing about the programming model requires the platform, and you should know whether Ray fits before paying for managed Ray.
- Claim the $100 credit and run a starter template on Anyscale to see the managed workspace and autoscaling behavior.
- Move a real batch-inference or training job across, which is where the shared-pool economics either show up or do not.
- Evaluate bring-your-own-cloud if you already hold committed GPU capacity — the platform fee is easier to justify when it sits on compute you have already bought.
Strengths
- One engine across the whole pipeline — data processing, training, tuning, batch inference and serving share a cluster
- Genuinely open core — Ray is community-governed under the PyTorch Foundation, so the programming model is not a lock-in
- Shared resource pool — capacity shifts between training and serving instead of stranding reserved clusters
- Bring-your-own-cloud deployment — runs in your account on any cloud, on virtual machines or Kubernetes
- Production serving features — zero-downtime upgrades and high availability on top of Ray Serve
Limitations
- Acquisition pending — Nscale's purchase has not closed, and long-run cloud-neutrality of the commercial platform is an open question
- Distributed systems are still distributed systems — Ray removes cluster boilerplate, not the need to reason about data movement and failure
- Compute pricing is the real cost — the per-hour GPU rates dominate, so model total spend rather than the platform layer alone
- Frontier GPU pricing is quote-only — H-, B- and GB-family rates require contacting sales
- Overkill below a certain scale — a single-node training job does not need a distributed scheduler
Key Takeaways
- Ray is the open-source engine for distributing AI workloads; Anyscale is the managed platform built by its creators
- Running data processing, training, batch inference and serving on one shared pool is the core economic argument — it stops GPUs idling between pipeline stages
- Nscale agreed to acquire Anyscale in July 2026 at a reported $1.65 billion, pending regulatory approval and expected to close in the second half of the year
- Ray itself sits under the PyTorch Foundation and stays community-governed, so the open-source project is insulated from the deal in a way the commercial platform is not