엘라스틱 컴퓨팅 (Elastic Computing)

실제 워크로드 수요에 따라 클라우드 인프라가 자동으로 컴퓨팅 리소스(서버, 컨테이너, 함수)를 프로비저닝하고 해제하는 능력 — 사용한 만큼만 지불.

블록체인 인프라에서 엘라스틱 컴퓨팅은 NFT 민팅이나 토큰 출시 중 급격한 트래픽 급증을 흡수해야 하는 인덱서 노드와 RPC 제공자에게 필수적입니다.

        graph LR
  Center["엘라스틱 컴퓨팅 (Elastic Computing)"]:::main
  Rel_scalability["scalability"]:::related -.-> Center
  click Rel_scalability "/terms/scalability"
  Rel_data_modeling["data-modeling"]:::related -.-> Center
  click Rel_data_modeling "/terms/data-modeling"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧠 지식 테스트

1 / 1

🧒 5살도 이해할 수 있게 설명

손님 수에 따라 주방이 마법처럼 커지거나 작아지는 식당을 상상해 보세요. 한가한 화요일엔 요리사 2명, 바쁜 토요일 저녁엔 순식간에 20명. 실제로 요리한 시간만큼만 비용을 냅니다. 엘라스틱 컴퓨팅은 소프트웨어를 위한 이 마법 주방입니다 — 앱이 바쁠 때 클라우드가 자동으로 '컴퓨터-요리사'를 추가하고, 트래픽이 줄면 제거합니다.

🤓 Expert Deep Dive

Auto Scaling Group(ASG): Target Tracking Scaling은 목표 메트릭 값 유지(예: 평균 CPU 60%). 쿨다운 기간(기본 300초)으로 스래싱 방지. Kubernetes HPA v2: 15초마다 Metrics Server 조회. 공식: desiredReplicas = ceil[currentReplicas × (currentMetricValue / desiredMetricValue)]. Lambda 콜드 스타트: Lambda는 따뜻한 실행 환경 풀을 유지합니다. ~15분 비활성 후 동결. 다음 호출 시 패키지 로드 및 런타임 시작 — 100–1000ms 지연. Provisioned Concurrency는 N개 환경을 사전 웜업(지속 청구).

❓ 자주 묻는 질문

What is the difference between elastic computing and auto-scaling?

Auto-scaling is the specific mechanism (adding/removing servers based on metrics). Elastic computing is the broader principle — the cloud infrastructure's ability to match capacity to demand dynamically. Auto-scaling is one implementation of elasticity.

What is a 'cold start' in serverless computing?

A cold start occurs when a serverless function (like AWS Lambda) is invoked after its execution environment has been idle and deallocated. The cloud must provision a new environment, load the runtime, and run initialization code before the function logic executes, adding 100ms–1s of latency.

Is elastic computing always cheaper than fixed infrastructure?

No. Elasticity saves money for workloads with high variability (e.g., e-commerce sites with day/night cycles). For flat, predictable workloads, reserved instances with 1-3 year commitments are typically 40–60% cheaper than on-demand elastic pricing.

📚 출처