ITIvan Tymoshenkoinblog.platformatic.dev·Aug 25 · 12 min readIntroducing the ICC Planner Plan Ahead, Scale with ConfidenceProduction traffic usually isn’t random or completely steady. For instance, an app might be quiet at night, see steady use during the day, and then get busier in the evening. On Fridays, that evening 50
ITIvan Tymoshenkoinblog.platformatic.dev·Jun 4 · 25 min readAWS ECS auto-scaler is broken (don’t worry, we’ve fixed it) If you run Node.js services on AWS ECS, you don’t have many built-in ways to handle changing loads. Your only two options respond within minutes: Target Tracking Scaling and Step Scaling. Both monitor11V
ITIvan Tymoshenkoinblog.platformatic.dev·Apr 30 · 26 min readAhead of Time Scaling: How Platformatic ICC Predicts and ProvisionsMost Kubernetes autoscalers work the same way: they check a metric, compare it to a threshold, and then add pods. The issue is that by the time the metric crosses the threshold, the application is alr00