Join us

ContentUpdates and recent posts about Slurm..
Story
@laura_garcia shared a post, 1 year, 8 months ago
Software Developer, RELIANOID

AI Tech Summit 2024

From Amsterdam to Skopje! The RELIANOID team is on the move! After an insightful experience at theCyber Security & Cloud Expo Europe 2024in Amsterdam, where we explored the latest trends in cybersecurity and cloud innovation, we are now excited to participate in theAI Tech Summit 2024in Skopje, Nort..

AI Tech Summit Macedonia RELIANOID
Story
@laura_garcia shared a post, 1 year, 8 months ago
Software Developer, RELIANOID

RELIANOID quarterly Newsletter - Subscribe!

Stay Ahead with Our FREE Quarterly Newsletter! At RELIANOID, we’re excited to offer afree quarterly newsletterpacked with valuable insights, both technical and informative, designed to keep you up to date with the latest industry trends, innovations, and product updates. Whether you're looking for e..

RELIANOID Newsletter 2024
Story
@adammetis shared a post, 1 year, 8 months ago
DevRel, Metis

VACUUM In Postgres Demystified

Let’s see what is VACUUM in PostgreSQL, how it’s useful, and how to improve your database performance.

Vacuum.webp
Story
@laura_garcia shared a post, 1 year, 8 months ago
Software Developer, RELIANOID

World Telemedia Marbella starting!

Starting today, RELIANOID is attending theWorld Telemediaevent in Marbella, Spain! We’re excited to join industry leaders to explore mobile consumer engagement and value-added services. Let’s connect and discuss future opportunities! #WorldTelemedia #RELIANOID #Telecom #Telecommunications #MobileCom..

World Telemedia Marbella RELIANOID
Link
@faun shared a link, 1 year, 8 months ago
FAUN.dev()

Cloudflare blocks largest recorded DDoS attack peaking at 3.8Tbps

In a monumental escalation of attack magnitude, Cloudflare autonomously mitigated arecord-smashing 3.8 terabits per secondhyper-volumetric DDoS attack lasting 65 seconds, surpassing Microsoft's previous record, with threat actors exploiting global infected devices, particularly Asus routers and Mikr.. read more  

Cloudflare blocks largest recorded DDoS attack peaking at 3.8Tbps
Link
@faun shared a link, 1 year, 8 months ago
FAUN.dev()

GitHub Actions: A Comparison between Composite Actions and Reusable Workflow

Github Actions offer Composite Actions for publishing and external use and Reusable Workflows for internal flexibility, both aiming to enforce the DRY principle by minimizing duplicated CI/CD script configuration in software delivery... read more  

GitHub Actions: A Comparison between Composite Actions and Reusable Workflow
Link
@faun shared a link, 1 year, 8 months ago
FAUN.dev()

It's Critical To Resolve the DevOps Tax on Central Teams

DevOps culture accelerates production but burdens developers and central teams with managing diverse cloud services, pushing companies toward solutions like Terraform modules to mitigate complexity, yet Netflix's innovations like ConsoleME, Repokid, Spinnaker, and an S3 Slackbot demonstrate how auto.. read more  

It's Critical To Resolve the DevOps Tax on Central Teams
Link
@faun shared a link, 1 year, 8 months ago
FAUN.dev()

How do HTTP servers figure out Content-Length?

HTTP servers, such as Go's, handle Content-Length via chunked transfer encoding when responses exceed buffer size, using hexadecimal to indicate chunks, enabling efficient data transfer without storing entire responses in memory—a clever mechanism prevalent since HTTP 1.1 and replaced by streaming i.. read more  

How do HTTP servers figure out Content-Length?
Link
@faun shared a link, 1 year, 8 months ago
FAUN.dev()

Some Go web dev notes

The author discovered that Go 1.22 improves routing directly in the standard library, avoiding manual setup, and showcased how sqlc simplifies SQL integration without learning an ORM; highlights include solutions for SQLite optimizations, addressing GC limits in Go 1.19 to prevent OOM, and Go's simp.. read more  

Link
@faun shared a link, 1 year, 8 months ago
FAUN.dev()

Microsoft Brings More AI-Optimized VMs to Azure

Microsoft unveils Azure ND H200 v5 VMs with a76% surge in High Bandwidth Memoryand eight Nvidia H200 GPUs for AI supercomputing flexibility, alongside the FXv2-series VMs in public preview, boasting doubled vCPUs and enhanced IOPS for complex simulations and SQL workloads... read more  

Microsoft Brings More AI-Optimized VMs to Azure
Slurm Workload Manager is an open-source, fault-tolerant, and highly scalable cluster management and scheduling system widely used in high-performance computing (HPC). Designed to operate without kernel modifications, Slurm coordinates thousands of compute nodes by allocating resources, launching and monitoring jobs, and managing contention through its flexible scheduling queue.

At its core, Slurm uses a centralized controller (slurmctld) to track cluster state and assign work, while lightweight daemons (slurmd) on each node execute tasks and communicate hierarchically for fault tolerance. Optional components like slurmdbd and slurmrestd extend Slurm with accounting and REST APIs. A rich set of commands—such as srun, squeue, scancel, and sinfo—gives users and administrators full visibility and control.

Slurm’s modular plugin architecture supports nearly every aspect of cluster operation, including authentication, MPI integration, container runtimes, resource limits, energy accounting, topology-aware scheduling, preemption, and GPU management via Generic Resources (GRES). Nodes are organized into partitions, enabling sophisticated policies for job size, priority, fairness, oversubscription, reservation, and resource exclusivity.

Widely adopted across academia, research labs, and enterprise HPC environments, Slurm serves as the backbone for many of the world’s top supercomputers, offering a battle-tested, flexible, and highly configurable framework for large-scale distributed computing.