Hi everyone,
I'm experiencing a sudden and critical issue with Bitbucket Pipelines that started about 3 hours ago (December 9, 2025).
The Problem:
All my pipeline steps are getting stuck in "Queued" state for extremely long periods (15-30+ minutes each) before they start running. Some steps never start at all and eventually fail with:
"Step exceeded processing limits and has timed out"
One step also shows System error status.
Important context:
- My pipeline configuration has NOT changed in 5 months
- This started happening suddenly today
- I'm using Bitbucket Cloud's default runners (NOT self-hosted)
- When steps DO eventually run, execution time is normal (1-2 minutes)
- The problem is 100% with the queue/scheduling, not the build itself
What I've observed:
- Staging branch: Took ~1 hour total (steps waited forever in queue, but ran quickly once started)
- Main branch: Completely failed - Pipeline #69 timed out while waiting in queue
- Affects parallel steps AND sequential steps
My pipeline structure:
```yaml
- parallel:
fail-fast: true
steps:
- step: *security-scan
- step: *golangci-lint # This one shows "System error"
- step: *run-tests
- step: *build-production
- step: *docker-build-and-push
- step: *deploy-cloud-run
```
What I've tried:
- Re-running pipelines multiple times
- Checked status.atlassian.com (no incidents shown)
- Verified no config changes
Questions for the community:
1. Is anyone else experiencing this issue today?
2. Is there a known outage that isn't showing on the status page?
3. Any workarounds?
This is completely blocking my deployments. Any help appreciated!
Thanks!