Skip to content

Commit

Permalink
Add Pipelines product 'Service Quotas' page
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchbne committed May 6, 2024
1 parent f0a6d92 commit 016dbc3
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 0 deletions.
2 changes: 2 additions & 0 deletions data/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@
- name: "Cluster queue metrics"
path: "pipelines/cluster-queue-metrics"
pill: "beta"
- name: "Service Quotas"
path: "pipelines/service-quotas"
- name: "Test Analytics"
path: "test-analytics"
children:
Expand Down
131 changes: 131 additions & 0 deletions pages/pipelines/service_quotas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
# Service quotas

> 📘 Need a limit increased?
> You can request a limit increase by [contacting support](mailto:[email protected]), and providing details about your use case.
## Overview

Service quotas are put in place to ensure that Buildkite can provide a reliable service to all customers. These quotas are all scoped to your organization, but calculated depending on the quota type.
There are three types of quotas: per organization, per build, and per job.

## Per organization quotas

<table>
<thead>
<tr>
<th>Name</th>
<th style="text-align: right; white-space: nowrap;">Default value</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<strong>Number of invitations</strong><br/>
<i>Maximum open invitations an organization can have</i>
</td>
<td style="text-align: right;">20</td>
</tr>
<tr>
<td>
<strong>REST API rate limit</strong><br/>
<i>Number of requests an organization can make to Organization endpoints on the REST API, per minute</i>
</td>
<td style="text-align: right;">200</td>
</tr>
<tr>
<td>
<strong>Number of Slack services</strong><br/>
<i>Maximum number of Slack services that can be added to an organization</i>
</td>
<td style="text-align: right;">50</td>
</tr>
<tr>
<td>
<strong>Number of teams</strong><br/>
<i>Maximum number of teams that an organization can have</i>
</td>
<td style="text-align: right;">250</td>
</tr>
<tr>
<td>
<strong>Number of Webhook services</strong><br/>
<i>Maximum number of Webhook services that can be added to an organization</i>
</td>
<td style="text-align: right;">15</td>
</tr>
<tr>
<td>
<strong>Artifact retention</strong><br/>
<i>Maximum time we'll store artifacts for, in days, before assuming it has been deleted by an S3 Lifecycle rule, which must be configured separately</i>
</td>
<td style="text-align: right;">180</td>
</tr>
</tbody>
</table>

## Per build quotas

<table>
<thead>
<tr>
<th>Name</th>
<th style="text-align: right; white-space: nowrap;">Default value</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<strong>Number of jobs</strong><br/>
<i>The maximum number of jobs that can be created in a single pipeline build (including job retries)</i>
</td>
<td style="text-align: right;">4,000</td>
</tr>
<tr>
<td>
<strong>Jobs created per pipeline upload</strong><br/>
<i>The maximum number of jobs that can be created in a single pipeline upload</i>
</td>
<td style="text-align: right;">500</td>
</tr>
<tr>
<td>
<strong>Number of pipeline uploads</strong><br/>
<i>The maximum number of pipeline uploads that can be performed in a single build</i>
</td>
<td style="text-align: right;">500</td>
</tr>
<tr>
<td>
<strong>Maximum trigger build depth</strong><br/>
<i>The maximum depth of a chain of trigger builds</i>
</td>
<td style="text-align: right;">10</td>
</tr>
</tbody>
</table>

## Per job quotas

<table>
<thead>
<tr>
<th>Name</th>
<th style="text-align: right; white-space: nowrap;">Default value</th>
</tr>
</thead>
<tr>
<td>
<strong>Number of artifacts</strong><br/>
<i>The maximum number of artifacts that can be uploaded to Buildkite per job</i>
</td>
<td style="text-align: right;">250,000</td>
</tr>
<tr>
<td>
<strong>Log size</strong><br/>
<i>The maximum file-size of a job's log (uploaded by an agent to Buildkite in chunks)</i>
</td>
<td style="text-align: right;">1,024 MiB</td>
</tr>
</tbody>
</table>

0 comments on commit 016dbc3

Please sign in to comment.