惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
J
Java Code Geeks
S
SegmentFault 最新的问题
L
LangChain Blog
M
MIT News - Artificial intelligence
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
Jina AI
Jina AI
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 叶小钗
美团技术团队
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Running Slurm on AWS/Azure: Architecture & Pitfalls
Muhammad Zub · 2026-04-25 · via DEV Community

Running Slurm in the cloud sounds simple at first: spin up some VMs, install Slurm, and start submitting jobs.

In reality, cloud-based HPC introduces a different set of design decisions and trade-offs compared to on-prem clusters. If the architecture is not planned properly, costs increase quickly and performance can drop.

This guide walks through a typical Slurm architecture on AWS/Azure and highlights the most common pitfalls.


Why Run Slurm in the Cloud?

Common reasons include:

  • On-demand scaling for peak workloads
  • No upfront hardware investment
  • Access to GPU instances when needed
  • Flexibility for short-term projects

However, cloud HPC is not always cheaper or faster — it depends heavily on how it is configured.


Typical Slurm Architecture in Cloud

A standard setup usually includes:

1. Head Node (Controller)

  • Runs slurmctld
  • Manages scheduling and job queues
  • Typically a small-to-medium VM

Key Point:
This node should be stable and always available.


2. Compute Nodes

  • Dynamically provisioned instances
  • Can be CPU or GPU-based
  • Often scaled up/down based on demand

Common Approach:

  • Auto-scaling groups (AWS)
  • Virtual Machine Scale Sets (Azure)

3. Login Node

  • User access via SSH
  • Job submission and monitoring

This is often combined with the head node in smaller setups, but separated in production environments.


4. Shared Storage

Required for:

  • Input/output data
  • Job scripts
  • Application binaries

Options:

  • AWS: EFS, FSx (Lustre)
  • Azure: Azure NetApp Files, Azure Files, Lustre

5. Networking

  • Virtual Private Cloud (AWS) / Virtual Network (Azure)
  • Security groups / NSGs
  • High-speed networking (placement groups, accelerated networking)

Basic Workflow

  1. User connects to login node
  2. Submits job using sbatch
  3. Slurm provisions compute nodes (if not already running)
  4. Job runs on allocated instances
  5. Nodes are terminated after job completion (optional)

Recommended Architecture Pattern

For most use cases:

  • Persistent head/login node
  • Auto-scaling compute nodes
  • Shared parallel storage
  • Private network with restricted access

This balances cost, performance, and manageability.


Common Pitfalls (and How to Avoid Them)


1. Ignoring Network Performance

Problem

Using standard cloud networking for MPI workloads.

Impact

  • High latency
  • Poor scaling across nodes

Fix

  • Use placement groups (AWS) or proximity placement groups (Azure)
  • Enable enhanced/accelerated networking
  • Choose HPC-optimized instance types

2. Storage Becomes the Bottleneck

Problem

Using basic network storage for high I/O workloads.

Impact

  • Slow reads/writes
  • Idle compute nodes

Fix

  • Use parallel file systems (FSx for Lustre, Azure Lustre)
  • Match storage throughput with compute scale

3. Poor Auto-Scaling Configuration

Problem

Nodes take too long to start or are over-provisioned.

Impact

  • Increased wait times
  • Higher costs

Fix

  • Tune scaling policies
  • Keep a small number of warm nodes
  • Use instance pools where possible

4. Using the Wrong Instance Types

Problem

Choosing general-purpose VMs for HPC workloads.

Impact

  • Lower performance
  • Inefficient scaling

Fix

  • Use compute-optimized or HPC-specific instances
  • For GPUs, select instances with proper interconnect support

5. Ignoring Cost Management

Problem

Leaving nodes running after jobs finish.

Impact

  • Unexpected cloud bills

Fix

  • Enable auto-termination of idle nodes
  • Use spot/preemptible instances where suitable

6. Not Handling Preemption (Spot Instances)

Problem

Using spot instances without fault tolerance.

Impact

  • Job failures
  • Lost progress

Fix

  • Use checkpointing
  • Combine on-demand + spot nodes

7. Single Point of Failure (Head Node)

Problem

Head node goes down → entire cluster stops.

Fix

  • Use backups or snapshots
  • Consider failover strategies

8. Security Misconfiguration

Problem

Open SSH access or weak network rules.

Impact

  • Security risks

Fix

  • Restrict access via VPN or IP whitelisting
  • Use IAM roles and proper authentication

9. Slow Job Startup Times

Problem

VM provisioning delays job execution.

Impact

  • Poor user experience

Fix

  • Pre-scale nodes
  • Use lightweight images
  • Optimize bootstrapping scripts

10. Treating Cloud Like On-Prem

Problem

Applying static cluster design to a dynamic environment.

Impact

  • Inefficiency
  • Higher costs

Fix

  • Design for elasticity
  • Scale based on workload demand

Real-World Example

Initial Setup:

  • Static compute nodes
  • Standard storage
  • No placement group

Issues:

  • Poor MPI scaling
  • High costs

Improved Setup:

  • Auto-scaling compute nodes
  • FSx for Lustre storage
  • Placement group enabled

Result:

  • Better performance
  • Reduced costs
  • Faster job turnaround

Final Thoughts

Running Slurm on AWS or Azure can be powerful, but it is not just about lifting and shifting your on-prem setup.

Success depends on:

  • Choosing the right architecture
  • Understanding cloud limitations
  • Avoiding common pitfalls

With the right design, cloud-based Slurm clusters can deliver both flexibility and performance — without unnecessary cost.