Is Weights & Biases (wandb) Down? How to Check wandb Status in 2026

Complete guide to verifying wandb outages, keeping your ML training running in offline mode, and syncing data after the platform recovers.

8 min read
Staff Pick

📡 Monitor your APIs — know when they go down before your users do

Better Stack checks uptime every 30 seconds with instant Slack, email & SMS alerts. Free tier available.

Start Free →

Affiliate link — we may earn a commission at no extra cost to you

Weights & Biases (wandb) is the experiment tracking platform trusted by ML teams at OpenAI, NVIDIA, Toyota Research, and thousands of other organizations. It's often the first tool researchers reach for when a training run starts — which means when wandb goes down, it can stall entire ML pipelines.

Whether you're seeing wandb: ERROR Failed to sync messages, a hanging wandb.init() call, or an empty dashboard that should have new runs, this guide will help you determine: is wandb down, or is there something wrong on your end?

How to Check if wandb is Down (Fastest Methods)

1. Check the Official wandb Status Page

Weights & Biases maintains a live status page at status.wandb.ai. It shows real-time uptime for the API, artifact storage, dashboard, and any ongoing incidents. If there's a confirmed outage, it will be posted here with timeline updates.

2. Test wandb Connectivity from Your Terminal

Run a quick connectivity check to see if the wandb client can reach the API:

# Check wandb status
wandb status

# Test API reachability
python -c "import wandb; wandb.login()"

# Quick API health check
curl -I https://api.wandb.ai/healthz

A ConnectionError or timeout confirms the wandb API is unreachable. A 401 response means an auth issue with your API key, not an outage.

3. Check Your Training Script for Hanging wandb.init()

If wandb.init() hangs indefinitely when starting a new run, wandb is likely unreachable. You'll see this in training scripts as a silent hang rather than an explicit error. Check your process and kill it — then switch to offline mode (see below).

4. Search X (Twitter) for ML Community Reports

Search "wandb down" or "Weights Biases outage" on X filtered by Latest. The ML community reports tool outages on X very quickly — often within the first few minutes of an incident starting.

5. Use API Status Check for Automated Monitoring

API Status Check monitors wandb's API endpoints continuously and sends instant alerts via Slack, email, or PagerDuty — so you can switch to offline mode before a long training run gets stuck mid-epoch.

📡
Recommended

Monitor Your ML Infrastructure

Don't let wandb outages interrupt your training runs. Get instant alerts and professional uptime monitoring across your full ML stack.

Try Better Stack Free →

How to Keep ML Training Running When wandb is Down

Unlike most SaaS tools, wandb has an excellent offline mode that lets your training continue uninterrupted even during a full platform outage. Here's how to use it:

Switch to Offline Mode Before Starting Training

# Set offline mode via environment variable
export WANDB_MODE=offline

# Or set it in your Python script
import wandb
import os
os.environ["WANDB_MODE"] = "offline"
wandb.init(project="my-project", name="experiment-1")

# Or pass it to init directly
wandb.init(project="my-project", mode="offline")

In offline mode, wandb writes all metrics, logs, and artifacts to a local directory (./wandb/). Your training script runs exactly as normal — you just won't see live updates in the cloud dashboard.

Sync Offline Data After wandb Recovers

# Sync all offline runs in the current directory
wandb sync ./wandb

# Sync a specific run
wandb sync ./wandb/offline-run-20260630_072900-abc123

# List all pending offline runs
wandb sync --list

Once the wandb platform is back up, run wandb sync to upload all locally buffered run data. Your experiment history will appear in the dashboard as if there was no outage.

Why Does wandb Go Down?

Weights & Biases handles massive amounts of data — metrics from thousands of simultaneous training runs, large model artifacts, dataset versions, and rich media logs. This creates specific failure patterns:

  • Artifact Storage Overload: wandb stores model checkpoints and datasets in cloud storage (GCS/S3). A surge in large artifact uploads — common after a major model release or research deadline — can overwhelm the storage pipeline, causing artifact sync failures and API timeouts.
  • Metrics Ingestion Backpressure: When thousands of runs submit metrics simultaneously (end-of-quarter research sprints, competition deadlines), the time-series ingestion pipeline can back up, causing dashboard lag and API slowdowns.
  • Dashboard Frontend Failures: wandb's rich charting and visualization layer occasionally has separate outages from the API backend. You may be able to log data while the dashboard is unavailable, or vice versa.
  • Authentication Service Issues: wandb's auth layer handles API key validation for millions of runs. An auth service hiccup causes widespread 401 Unauthorized errors even with valid keys.
  • Planned Maintenance: Weights & Biases schedules maintenance windows for infrastructure upgrades. Check their status page and changelog for advance notices.
  • GCP/AWS Regional Issues: wandb's infrastructure runs on GCP and AWS. Regional cloud provider incidents can cause localized wandb failures for users in affected geographies.

Common wandb Errors and What They Mean

wandb: ERROR Failed to sync

wandb can't reach the API to upload metrics or artifacts. Usually indicates a network issue or platform outage. The run data is still being saved locally — switch to offline mode to continue.

ConnectionError: Failed to connect to wandb API

The wandb client can't reach api.wandb.ai. Check your internet connection first, then verify the wandb status page. If the platform is up but you still see this, check your firewall or VPN settings.

wandb: WARNING Wandb is configured to run offline

You're already in offline mode — either by environment variable or by wandb automatically switching when the API is unreachable. Data is being saved locally.

401 Unauthorized

Your wandb API key is invalid or expired. Run wandb login and enter your current API key from wandb.ai/settings. Not an outage.

wandb.init() hangs / no output

wandb is trying to reach the API but can't. If it hangs for more than 30 seconds, kill the process and restart with WANDB_MODE=offline.

What to Do When wandb Is Down

  1. Switch to offline mode immediately: Set WANDB_MODE=offline in your environment. Restart any training scripts that were hanging waiting for the API. Your runs will continue and buffer locally.
  2. Check status.wandb.ai: Confirm it's a platform-wide outage, not a local issue. Subscribe to incident updates for real-time recovery notifications.
  3. Verify your API key is still valid: Run wandb login --relogin to refresh your credentials. Sometimes key expiration coincides with apparent outages.
  4. Continue training without interruption: Offline mode is fully functional — all metrics, logs, system stats, and artifact references will be tracked locally and uploaded on sync.
  5. Sync when recovered: Run wandb sync ./wandb after the platform is back up. Your full experiment history will appear in the dashboard.
  6. Set up automated monitoring: Use API Status Check to monitor the wandb API endpoint. Get an alert the moment wandb goes down — and again when it recovers.

Alert Pro

14-day free trial

Stop checking — get alerted instantly

Next time Weights & Biases goes down, you'll know in under 60 seconds — not when your users start complaining.

  • Email alerts for Weights & Biases + 9 more APIs
  • $0 due today for trial
  • Cancel anytime — $9/mo after trial

wandb Alternatives for ML Experiment Tracking

If you need experiment tracking while wandb is down or want to diversify your ML observability stack:

  • MLflow: Open-source experiment tracking with self-hosted or managed options. Works without any external connectivity — runs a local server you control.
  • Comet ML: Cloud-based experiment tracking with similar feature set to wandb, including artifact versioning and team collaboration.
  • TensorBoard: Google's built-in visualization toolkit for TensorFlow and PyTorch. Fully local, no API dependency, and zero latency.
  • Neptune.ai: Hosted experiment tracking platform with strong metadata management and large artifact support.
  • Aim: Open-source experiment tracker with a local-first architecture. All data stays on your machine until you choose to share it.

Frequently Asked Questions

How do I know if wandb is down?

Check status.wandb.ai, test wandb status in your terminal, or curl https://api.wandb.ai/healthz. A connection error or explicit incident on the status page confirms an outage.

Will a wandb outage stop my training run?

Not if you switch to offline mode. Set WANDB_MODE=offline to buffer all data locally. Your training script runs normally — you just won't see live dashboard updates until wandb recovers.

How do I recover wandb data after an outage?

Run wandb sync ./wandb from your project directory. All locally buffered run data will upload to the cloud and appear in your dashboard.

How long do wandb outages last?

Minor API disruptions resolve in 15–60 minutes. Cloud storage incidents affecting artifact uploads can last 1–3 hours. The Weights & Biases team posts live updates at status.wandb.ai.

Can I monitor wandb uptime automatically?

Yes. API Status Check monitors the wandb API endpoint continuously, sending instant alerts via Slack, email, or PagerDuty the moment downtime is detected — so you can switch to offline mode before your training scripts hang.

🛠 Tools We Use & Recommend

Tested across our own infrastructure monitoring 200+ APIs daily

Better StackBest for API Teams

Uptime Monitoring & Incident Management

Used by 100,000+ websites

Monitors your APIs every 30 seconds. Instant alerts via Slack, email, SMS, and phone calls when something goes down.

We use Better Stack to monitor every API on this site. It caught 23 outages last month before users reported them.

Free tier · Paid from $24/moStart Free Monitoring
1PasswordBest for Credential Security

Secrets Management & Developer Security

Trusted by 150,000+ businesses

Manage API keys, database passwords, and service tokens with CLI integration and automatic rotation.

After covering dozens of outages caused by leaked credentials, we recommend every team use a secrets manager.

ElevenLabsBest for AI Voice

AI Voice & Audio Generation

Used by 1M+ developers

Text-to-speech, voice cloning, and audio AI for developers. Build voice features into your apps with a simple API.

The best AI voice API we've tested — natural-sounding speech with low latency. Essential for any app adding voice features.

Free tier · Paid from $5/moTry ElevenLabs Free
SEMrushBest for SEO

SEO & Site Performance Monitoring

Used by 10M+ marketers

Track your site health, uptime, search rankings, and competitor movements from one dashboard.

We use SEMrush to track how our API status pages rank and catch site health issues early.

From $129.95/moTry SEMrush Free
View full comparison & more tools →Affiliate links — we earn a commission at no extra cost to you