Bablu Kumar, Anshul Verma, Rajkumar Buyya
Competent but incremental combination of off-the-shelf DDQN and a smoothing heuristic, evaluated only in a toy simulation with weak statistical rigor and marginal gains.
Dynamic workloads and latency-sensitive applications require efficient autoscaling in cloud computing environments. However, most existing approaches rely on reactive mechanisms based on static thresholds, resulting in delayed responses and scaling oscillations under workload uncertainty. To address these limitations, we propose a double deep Q-Network-based proactive autoscaling approach (DDQN-Proactive) along with Resource Removal Strategy (RRS). The proposed (DDQN+RRS) enhances decision-making by decoupling action selection from value evaluation, enabling more stable and adaptive scaling. Experimental results demonstrate that the proposed method outperforms both reactive and existing proactive approaches. Specifically, DDQN+RRS achieves a lower Service Level Agreement (SLA) violation rate (11.81%), higher CPU utilization (52.23%), improved scaling stability, fewer scaling events (2,488), and reduced pod restarts (1,246). Furthermore, the approach ensures smoother autoscaling behavior by significantly reducing oscillations over time (0-60 s). While reactive methods exhibit substantial fluctuations in pod allocation, Reactive reduces these variations, and DDQN+RRS achieves the most stable and smooth scaling, particularly during the 15-30 s, 40-45 s, and 55-60 s intervals.
The paper proposes DDQN+RRS, a proactive autoscaling framework for containerized cloud applications that combines a Double Deep Q-Network (DDQN) for scaling decisions with a "Resource Removal Strategy" (RRS) — an execution-level smoothing mechanism that regulates the magnitude of pod adjustments over a 60-second control window. The central claim is that decision-level intelligence (DDQN reduces Q-value overestimation vs. DQN) plus execution-level smoothing (RRS gradually applies changes via `N_{t+1} = N_t + β(N_req − N_t)`) jointly reduce scaling oscillations, SLA violations, and pod restarts while improving CPU utilization.
The problem — oscillation and instability in reactive/threshold-based autoscalers (e.g., Kubernetes HPA) — is real and well-known. However, the core technical ingredients are entirely off-the-shelf: DDQN is a 2016 algorithm, RL-based autoscaling is a crowded field (the authors cite numerous prior works including their own advisor Buyya's deep recurrent RL work), and the RRS "smoothing" is essentially exponential-smoothing / a stabilization window, a well-established idea reframed with new terminology. The novelty is thus a specific combination rather than a conceptual advance.
This is the weakest aspect. Several serious concerns:
Low. The field of RL-based cloud autoscaling is mature and competitive, and this paper does not advance the state of the art in a demonstrable way — it uses an older algorithm (DDQN rather than PPO/SAC/actor-critic methods now standard), evaluates in a toy simulation, and reports marginal improvements on a non-standard trace. Practitioners deploying Kubernetes autoscalers would find nothing directly usable, since the framework was never run on a real cluster. The RRS smoothing idea is intuitively sensible and could inform a heuristic, but it is not a novel primitive. It is unlikely to be widely cited beyond incremental follow-ups.
The topic is relevant — proactive, stability-aware autoscaling for microservices/edge is an active area, and the co-authorship of Rajkumar Buyya (a prominent cloud-computing figure) lends visibility. But the execution lags the field's methodological frontier. The arXiv metadata lists a 2026 date; by that point DDQN is dated relative to current DRL practice, and stability-aware autoscaling has been addressed by more sophisticated methods.
This is a competently written but incremental engineering paper that combines a known DRL algorithm with a known smoothing idea, evaluated in a simplified simulation with weak statistical rigor and a non-standard workload. It addresses a real problem but does not convincingly advance the state of the art, and its impact is likely to be modest — a citation in related-work surveys and perhaps a base for the authors' own future (promised) real-cluster follow-up.
Generated Sep 15, 2026
Competent but incremental combination of off-the-shelf DDQN and a smoothing heuristic, evaluated only in a toy simulation with weak statistical rigor and marginal gains.