-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Pipelines product 'Service Quotas' page
- Loading branch information
Showing
2 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
# 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 | ||
|
||
Your Buildkite account has default quotas, scoped to your organization, builds, and jobs. These quotas are designed to ensure that Buildkite can provide a reliable service to all customers. | ||
|
||
## Organization scoped | ||
|
||
<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> | ||
|
||
## Builds scoped | ||
|
||
<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>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>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>Maximum number of pipeline uploads that can be created in a single build</i> | ||
</td> | ||
<td style="text-align: right;">500</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<strong>Maximum trigger build depth</strong><br/> | ||
<i>Maximum depth of a chain of trigger builds</i> | ||
</td> | ||
<td style="text-align: right;">10</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
## Job scoped | ||
|
||
<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>Maximum number of artifacts that can be uploaded per job</i> | ||
</td> | ||
<td style="text-align: right;">250,000</td> | ||
</tr> | ||
<tr> | ||
<td> | ||
<strong>Log size</strong><br/> | ||
<i>Maximum file size of all job log chunks uploaded by an agent in a single job</i> | ||
</td> | ||
<td style="text-align: right;">1,024 MiB</td> | ||
</tr> | ||
</tbody> | ||
</table> |