Snowflake / Cloud Data Platform

Snowflake Status: How to Check If Snowflake Is Down Right Now (2026)

Updated June 2026 · 8 min read · API Status Check

Quick Answer

Check Snowflake status at status.snowflake.com (official) for real-time status per cloud provider and region. Make sure to check your specific cloud (AWS, Azure, GCP) and region — outages are often isolated to one deployment.

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

The Official Snowflake Status Page

Snowflake maintains an official status page at status.snowflake.com. It shows real-time status for every Snowflake deployment across three cloud providers and dozens of regions:

Query Execution: The core SQL query engine — SELECT, INSERT, MERGE, CREATE, and all DML/DDL operations. Degraded query execution means warehouse queries run slowly or time out.
Data Loading (Snowpipe): Continuous data ingestion via Snowpipe, Snowflake Kafka Connector, and COPY INTO commands. Issues here delay your real-time data pipelines.
Authentication & Login: SSO, OAuth, key pair authentication, and standard credential login. An outage here blocks all user and service account access to Snowflake.
Virtual Warehouses: Compute cluster provisioning and scaling. If warehouses fail to start or scale, queries queue indefinitely until compute is available.
Snowflake Marketplace & Data Sharing: Cross-account data sharing and the Snowflake Data Marketplace. Degradation here affects inbound and outbound data share access.
REST & JDBC/ODBC Connectivity: API and driver connectivity used by dbt, Fivetran, Airbyte, Tableau, Power BI, and other integrations. Issues here break all tool integrations.

What Each Snowflake Status Means

Operational: All Snowflake systems are functioning normally. Queries execute, warehouses scale, and data loads proceed. If you are experiencing performance issues when the status is green, the cause is almost certainly your own warehouse sizing, query design, or data volume — not a Snowflake platform issue.
Degraded Performance: Snowflake is accessible but experiencing elevated latency. Common symptoms: queries that normally complete in seconds now take minutes, warehouse provisioning takes longer than usual, or Snowpipe ingestion is delayed. This often affects large queries and warehouse scaling more than small interactive queries.
Partial Outage: A specific service component or region is affected. For example, Snowpipe may be degraded while queries run normally, or a single AWS region (e.g., us-east-1) has issues while all other regions operate normally. Check the specific component and region matching your Snowflake account.
Major Outage: Snowflake is broadly unavailable in your region. Queries fail to execute, connections are refused, or the Snowflake UI is inaccessible. Your ETL pipelines, BI dashboards, and data applications will fail. Activate your data pipeline incident runbook and notify stakeholders.
Under Maintenance: Planned maintenance window. Snowflake typically schedules maintenance during off-peak hours for each region. Maintenance may cause brief connectivity interruptions. Check status.snowflake.com for the expected maintenance window duration.
📡
Recommended

Monitor your Snowflake data pipelines independently

Better Stack monitors your Snowflake connection and sends alerts before your status page catches the issue. Free tier included.

Try Better Stack Free →

How to Find Your Snowflake Account Region

Snowflake status is per-region. Before checking the status page, identify your exact deployment:

From Your Account URL

Your Snowflake account URL format is: <orgname>-<accountname>.snowflakecomputing.com. For older accounts it may be <accountname>.<region>.<cloud>.snowflakecomputing.com (e.g., xy12345.us-east-1.aws.snowflakecomputing.com). The region and cloud appear directly in this URL.

Using SQL

Run SELECT CURRENT_REGION() in a Snowflake worksheet. This returns your account's cloud region (e.g., "AWS_US_EAST_1"). Match this against the status.snowflake.com region list.

SELECT CURRENT_REGION(), CURRENT_ACCOUNT(), CURRENT_ORGANIZATION_NAME();

From Snowsight

Log into Snowsight (app.snowflake.com), click your account name in the lower left, and hover over your account. The account details show your cloud provider and region.

For Multi-Region Deployments (Business Critical)

Business Critical and VPS (Virtual Private Snowflake) accounts may have replication across multiple regions. Check all regions your account replicates to — a regional outage affects the replica in that region but failover may be available.

5 Ways to Check Snowflake Status Right Now

1.

Official Snowflake Status Page

Visit status.snowflake.com and filter to your cloud provider and region. Subscribe to email notifications for your specific region.

status.snowflake.com →
2.

Run a Test Query

Log in to Snowsight and run SELECT 1 against your account. If this basic query fails with a connection error or times out, Snowflake itself is likely down in your region.

-- Quick connectivity test SELECT 1; -- Check warehouse status SHOW WAREHOUSES; -- Confirm region SELECT CURRENT_REGION();
3.

Test via SnowSQL CLI

Use the SnowSQL CLI to test connectivity outside of the browser UI, confirming whether the issue is browser-specific or a full platform outage.

snowsql -a <orgname>-<accountname> -u <username> # Or with connection string: snowsql -c my_connection --query "SELECT 1"
4.

X/Twitter Search

Search 'Snowflake down' or 'Snowflake outage' on X. Data engineers and analytics teams report Snowflake issues quickly, especially when ETL jobs fail en masse.

Search X for 'snowflake down' →
5.

Snowflake Community & Support

Check the Snowflake Community forum or open a support case. For Enterprise or Business Critical customers, Snowflake offers 24/7 support with faster response SLAs.

Snowflake Community →

Common Snowflake Errors During Outages

These are the errors you'll see when Snowflake is experiencing issues:

"000403: Your free trial has ended / 002003: User does not exist"Authentication errors — confirm this is not a credentials issue. If other users are also locked out, it may be an auth service outage. Check status.snowflake.com Authentication component.
"JDBC/ODBC: Connection refused / network timeout"The Snowflake endpoint is unreachable. This is a strong indicator of a regional outage or a network issue between your host and Snowflake. Check status.snowflake.com for your region first, then verify your network can reach snowflakecomputing.com.
"SQL execution error: warehouse is not running"Not an outage — your virtual warehouse is SUSPENDED due to auto-suspend or was manually stopped. Run ALTER WAREHOUSE my_wh RESUME; to restart it. If resume fails repeatedly, check for warehouse provisioning issues on the status page.
"dbt: Database Error: 250001: Failed to connect to DB"dbt cannot connect to Snowflake. Check your dbt profiles.yml connection settings first (account, user, password, role). If settings are correct, Snowflake may be down. Run snowsql or try Snowsight login to isolate whether it's dbt config or a platform issue.
"Fivetran/Airbyte sync failed: QUERY_TIMEOUT or EXECUTION_CANCELED"ETL connector queries are timing out. During degraded performance, long-running MERGE or COPY operations exceed timeout thresholds. Check if the issue is platform-wide (status page) or query-specific (warehouse size too small for the data volume).
"Snowpipe: files not loading / ingest queue backlog"During Snowpipe outages, files stage in S3/Azure Blob/GCS but are not loaded. The files are not lost — they will load when Snowflake recovers. Check Snowpipe status at status.snowflake.com and use SYSTEM$PIPE_STATUS('my_pipe') to check queue depth.

What to Do When Snowflake Is Down

Immediate Response

  • Check status.snowflake.com for your specific cloud and region
  • Pause or reschedule ETL jobs to avoid failed run logging and retry storms
  • Notify BI and analytics team — dashboards will show stale data
  • Check Snowpipe queue depth — files are not lost, they queue in cloud storage
  • Open a P1 support ticket for Enterprise+ customers to get SLA credit
  • Communicate expected impact and recovery ETA to data consumers

Long-Term Resilience

  • Enable cross-region replication for Business Critical accounts
  • Design ETL pipelines with idempotent MERGE operations for safe retry
  • Use Snowflake Failover Groups for automatic redirect during regional outages
  • Build retry logic with exponential backoff into all Snowflake connections
  • Cache critical dashboard queries in your BI layer for degraded-mode display

Frequently Asked Questions

Where is the official Snowflake status page?

Snowflake's official status page is at status.snowflake.com. It tracks status per cloud provider (AWS, Azure, GCP) and region. Subscribe to email notifications for your specific region. Note that Snowflake's status page may lag actual incidents by 5–15 minutes — an independent monitor that tests a real query provides faster detection.

Will my Snowpipe data be lost if Snowflake goes down?

No — Snowpipe data is not lost during a Snowflake outage. Files staged in your external stage (S3, Azure Blob, GCS) remain there. Snowpipe will resume loading files after recovery. You can check the queue backlog using SYSTEM$PIPE_STATUS('pipe_name'). The only risk is if your cloud storage has its own retention policy that deletes files before Snowflake recovers.

My Snowflake queries are slow but the status page is green. What should I check?

Slow queries when status is green are almost always a query/warehouse issue, not a platform outage. In Snowsight, open the query profile for the slow query — look for partition scanning (full table scans instead of partition pruning), spilling to local disk (warehouse too small), or large join operations. Check SHOW WAREHOUSES to confirm your warehouse is RUNNING and sized appropriately for the workload.

Does Snowflake have an SLA for uptime?

Yes. Snowflake Business Critical and Enterprise editions include an SLA (typically 99.9% monthly uptime). For outage credits, you must open a support case within a specified window (usually 30 days) of the incident. Snowflake's standard edition has a best-effort SLA. Virtual Private Snowflake (VPS) deployments have separate SLA terms.

How does Snowflake status compare to Databricks or BigQuery for reliability?

All three platforms (Snowflake, Databricks, BigQuery) target 99.9%+ uptime and maintain public status pages. BigQuery is hosted on Google Cloud's infrastructure and benefits from GCP's global footprint. Databricks on AWS/Azure/GCP leverages its host cloud's reliability. Snowflake runs its own multi-cloud abstraction layer. In practice, major outages on all three platforms are rare but do occur — independent query-level monitoring provides faster detection than relying solely on official status pages.

Alert Pro

14-day free trial

Stop checking — get alerted instantly

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

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

Never Miss a Snowflake Outage Again

Monitor your Snowflake data warehouse with independent real-time connection testing. Know before your pipelines fail.

Try Better Stack Free — No Credit Card Required

Or use APIStatusCheck Alert Pro — API monitoring from $9/mo

🌐 Can't Access Snowflake?

If Snowflake is working for others but not for you, it might be an ISP or regional issue. A VPN can help bypass network-level blocks and routing problems.

🔒

Troubleshoot with a VPN

Connect from a different region to test if the issue is local to your network. Also protects your connection on public Wi-Fi.

Try NordVPN — 30-Day Money-Back Guarantee
🔑

Secure Your Snowflake Account

Service outages are a common time for phishing attacks. Use a password manager to keep unique, strong passwords for every account.

Try NordPass — Free Password Manager
Quick ISP test: Try accessing Snowflake on mobile data (Wi-Fi off). If it works, the issue is with your ISP or local network.

⏳ While You Wait — Try These Alternatives

🛠 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.

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